public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
@ 2026-03-17 15:21 nishit.sharma
  2026-03-17 17:41 ` Kamil Konieczny
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: nishit.sharma @ 2026-03-17 15:21 UTC (permalink / raw)
  To: igt-dev, kamil.konieczny

From: Nishit Sharma <nishit.sharma@intel.com>

Add a check to skip "madvise-pat-idx-uc-comp-*" compression-related PAT
index subtests on Ponte Vecchio (PVC) platforms.
This prevents running unsupported or problematic compression tests for
the "uc-comp" variant on PVC hardware.

Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
---
 tests/intel/xe_exec_system_allocator.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/intel/xe_exec_system_allocator.c b/tests/intel/xe_exec_system_allocator.c
index c645f6491..e0217c9d5 100644
--- a/tests/intel/xe_exec_system_allocator.c
+++ b/tests/intel/xe_exec_system_allocator.c
@@ -2517,6 +2517,7 @@ int igt_main()
 	};
 
 	int fd, svm_compute_loops = getenv_int("IGT_SVM_COMPUTE_LOOPS", 1);
+	uint16_t dev_id;
 
 	igt_fixture() {
 		struct xe_device *xe;
@@ -2527,6 +2528,7 @@ int igt_main()
 		xe = xe_device_get(fd);
 		va_bits = xe->va_bits;
 		open_sync_file();
+		dev_id = intel_get_drm_devid(fd);
 	}
 
 	for (const struct section *s = sections; s->name; s++) {
@@ -2727,6 +2729,9 @@ int igt_main()
 			     !xe_has_vram(fd)) {
 				igt_skip("Skipping compression-related PAT index\n");
 			}
+			if (IS_PONTEVECCHIO(dev_id) &&
+			    strstr(s->name, "madvise-pat-idx-uc-comp-"))
+				igt_skip("Skipping compression test on PVC\n");
 			xe_for_each_engine(fd, hwe)
 				test_exec(fd, hwe, 1, 1, SZ_4M, 0, 0, NULL, NULL, s->flags, s->fn);
 		}
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-03-19 13:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-17 15:21 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC nishit.sharma
2026-03-17 17:41 ` Kamil Konieczny
2026-03-17 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-17 23:55 ` ✓ i915.CI.BAT: " Patchwork
2026-03-19 10:36 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-19 13:35   ` Sharma, Nishit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox