summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2011-09-28 10:05:56 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2011-09-28 10:05:56 +0200
commitaf6a25c187a0f1a340fad71bb1a019e087e2b1ae (patch)
treed442b29cf85118c9d27e0eee803c10248fada8b4
parenta2dfbbf3e70767bc4c67c18c9c14ab4f9646155e (diff)
tests: disable storedw tests on !render
According to docs, this should work with ppgtt and just convert to noops otherwise. In reality, it hangs the machine. So just disable these for the moment. Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--tests/gem_storedw_loop_blt.c3
-rw-r--r--tests/gem_storedw_loop_bsd.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/gem_storedw_loop_blt.c b/tests/gem_storedw_loop_blt.c
index d12e1fc..1ea83f0 100644
--- a/tests/gem_storedw_loop_blt.c
+++ b/tests/gem_storedw_loop_blt.c
@@ -110,6 +110,9 @@ int main(int argc, char **argv)
return 77;
}
+ /* This supposedly only works with ppgtt */
+ return 77;
+
bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
if (!bufmgr) {
fprintf(stderr, "failed to init libdrm\n");
diff --git a/tests/gem_storedw_loop_bsd.c b/tests/gem_storedw_loop_bsd.c
index 56c52da..a161b5e 100644
--- a/tests/gem_storedw_loop_bsd.c
+++ b/tests/gem_storedw_loop_bsd.c
@@ -110,6 +110,9 @@ int main(int argc, char **argv)
return 77;
}
+ /* This supposedly only works with ppgtt */
+ return 77;
+
bufmgr = drm_intel_bufmgr_gem_init(fd, 4096);
if (!bufmgr) {
fprintf(stderr, "failed to init libdrm\n");