Message ID | 20231012081547.852052-2-tvrtko.ursulin@linux.intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Client memory fdinfo test and intel_gpu_top support | expand |
Hi Tvrtko, On 2023-10-12 at 09:15:39 +0100, Tvrtko Ursulin wrote: > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > On top of checking that parsing works, check that there are some engines > present. This will be needed once the memory stats are added and so return > value from __igt_parse_drm_fdinfo() will then be possible to be greater > than zero even when engine stats are not supported. > > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/drm_fdinfo.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tests/intel/drm_fdinfo.c b/tests/intel/drm_fdinfo.c > index aca19db50680..344c44dce78b 100644 > --- a/tests/intel/drm_fdinfo.c > +++ b/tests/intel/drm_fdinfo.c > @@ -737,6 +737,7 @@ igt_main > > igt_require_gem(i915); > igt_require(igt_parse_drm_fdinfo(i915, &info, NULL, 0, NULL, 0)); > + igt_require(info.num_engines); > > ctx = intel_ctx_create_all_physical(i915); > > -- > 2.39.2 >
diff --git a/tests/intel/drm_fdinfo.c b/tests/intel/drm_fdinfo.c index aca19db50680..344c44dce78b 100644 --- a/tests/intel/drm_fdinfo.c +++ b/tests/intel/drm_fdinfo.c @@ -737,6 +737,7 @@ igt_main igt_require_gem(i915); igt_require(igt_parse_drm_fdinfo(i915, &info, NULL, 0, NULL, 0)); + igt_require(info.num_engines); ctx = intel_ctx_create_all_physical(i915);