summaryrefslogtreecommitdiff
path: root/tests/i915
diff options
context:
space:
mode:
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>2020-03-04 09:29:01 +0000
committerTvrtko Ursulin <tvrtko.ursulin@intel.com>2020-03-05 10:27:10 +0000
commitc58b44926f989ed6a9937a5eafd8b0b8a7c20e47 (patch)
treecd2abd16733449228f2423a5890b53533ea5d5a3 /tests/i915
parent2be153507cdd652843f6ab44cc2a52a7f30206d9 (diff)
tests/i915/query: Do not assert engine info rsvd being zero
These are not input fields and i915 currently leaves them untouched. In the spirit of trusting the query as the authoritative source of information, stop asserting these output only reserved fields are zero. This should prevent the test from auto-failing if we extend the data in the future. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Cc: Brian Welty <brian.welty@intel.com> Reviewed-by: Brian Welty <brian.welty@intel.com>
Diffstat (limited to 'tests/i915')
-rw-r--r--tests/i915/i915_query.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/i915/i915_query.c b/tests/i915/i915_query.c
index 71807425..e7c6fc91 100644
--- a/tests/i915/i915_query.c
+++ b/tests/i915/i915_query.c
@@ -690,11 +690,6 @@ static void engines(int fd)
engine->flags,
engine->capabilities);
- /* MBZ fields. */
- igt_assert_eq(engine->rsvd0, 0);
- igt_assert_eq(engine->rsvd1[0], 0);
- igt_assert_eq(engine->rsvd1[1], 0);
-
switch (engine->engine.engine_class) {
case I915_ENGINE_CLASS_RENDER:
/* Will be tested later. */