summaryrefslogtreecommitdiff
path: root/tests/i915/gem_mmap_gtt.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2019-06-10 13:52:02 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2019-06-11 10:40:08 +0100
commit6cb3d4a9457cdfb993ebb2a086a4844b85c49ee2 (patch)
treed56d4b24152b96d5e992289fe8c0125543cb2c00 /tests/i915/gem_mmap_gtt.c
parent4c072238c784e6acb00634a80c3c55fb8358058b (diff)
i915/gem_mmap_gtt: Disregard forked subtests on ICL for reasons
Nothing to see here, please move along. The short story seems to be that a BIOS update made concurrent GTT access a few orders of magnitude slower, severely hampering CI. Where the fault actually lies is unknown, and how to circumvent it, unknown. References: https://bugs.freedesktop.org/show_bug.cgi?id=110882 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com> Cc: Martin Peres <martin.peres@linux.intel.com> Acked-by: Daniel Vetter <daniel@ffwll.ch>
Diffstat (limited to 'tests/i915/gem_mmap_gtt.c')
-rw-r--r--tests/i915/gem_mmap_gtt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
index 034658e6..6f3a9c36 100644
--- a/tests/i915/gem_mmap_gtt.c
+++ b/tests/i915/gem_mmap_gtt.c
@@ -656,6 +656,9 @@ test_huge_copy(int fd, int huge, int tiling_a, int tiling_b, int ncpus)
uint64_t huge_object_size, i;
unsigned mode = CHECK_RAM;
+ igt_fail_on_f(intel_gen(devid) >= 11 && ncpus > 1,
+ "Please adjust your expectations, https://bugs.freedesktop.org/show_bug.cgi?id=110882\n");
+
switch (huge) {
case -2:
huge_object_size = gem_mappable_aperture_size() / 4;