summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarius Vlad <marius.c.vlad@intel.com>2016-07-25 14:09:04 +0300
committerMarius Vlad <marius.c.vlad@intel.com>2016-07-25 14:12:55 +0300
commit38f84e30e699451cac6c7b45cd603e67b1287f15 (patch)
treef35af409c07421f81c33eb59abdf926c3c2ae728 /tests
parent860b3c14f9e98face626e6ca025daf22844dd156 (diff)
tests/gem_sync: Skip basic-store-each sub-test on BDW.
Causes too much noise in CI, so skip it for now. Signed-off-by: Marius Vlad <marius.c.vlad@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/gem_sync.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/gem_sync.c b/tests/gem_sync.c
index 2a80efc4..036c4c1f 100644
--- a/tests/gem_sync.c
+++ b/tests/gem_sync.c
@@ -724,11 +724,13 @@ igt_main
const struct intel_execution_engine *e;
const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
int fd = -1;
+ uint32_t devid;
igt_skip_on_simulation();
igt_fixture {
fd = drm_open_driver(DRIVER_INTEL);
+ devid = intel_get_drm_devid(fd);
print_welcome(fd);
igt_fork_hang_detector(fd);
@@ -749,8 +751,12 @@ igt_main
igt_subtest("basic-each")
sync_ring(fd, ~0u, 1);
- igt_subtest("basic-store-each")
+
+ igt_subtest("basic-store-each") {
+ igt_skip_on(IS_BROADWELL(devid));
store_ring(fd, ~0u, 1);
+ }
+
igt_subtest("basic-many-each")
store_many(fd, ~0u, 10);
igt_subtest("forked-each")