summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2012-12-07 23:34:23 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2012-12-07 23:34:23 +0100
commit30842637820b15916198cca45065826115864473 (patch)
tree191585e1f26b2a31d9d57d730656e1bef5305bca /tests
parentc0dbf04b0536aeff95dd56aa7847b3483d95e61f (diff)
tests: disable gem_exec_bad_domains/conflicting-write-domain
Kernel checks have been eased in commit c1f093e09c4ceb583b04d11e767bb3201812e4d2 Author: Chris Wilson <chris@chris-wilson.co.uk> Date: Mon Dec 3 11:49:07 2012 +0000 drm/i915: Remove check for conflicting relocation write-domains
Diffstat (limited to 'tests')
-rw-r--r--tests/gem_exec_bad_domains.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/gem_exec_bad_domains.c b/tests/gem_exec_bad_domains.c
index a39012e1..d1743493 100644
--- a/tests/gem_exec_bad_domains.c
+++ b/tests/gem_exec_bad_domains.c
@@ -210,6 +210,8 @@ int main(int argc, char **argv)
}
}
+#if 0 /* kernel checks have been eased, doesn't reject conflicting write domains
+ any more */
if (drmtest_run_subtest("conflicting-write-domain")) {
BEGIN_BATCH(4);
OUT_BATCH(0);
@@ -225,6 +227,7 @@ int main(int argc, char **argv)
exit(1);
}
}
+#endif
if (drmtest_run_subtest("double-write-domain"))
multi_write_domain(fd);