From af6a25c187a0f1a340fad71bb1a019e087e2b1ae Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Wed, 28 Sep 2011 10:05:56 +0200 Subject: [PATCH] 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 --- tests/gem_storedw_loop_blt.c | 3 +++ tests/gem_storedw_loop_bsd.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/gem_storedw_loop_blt.c b/tests/gem_storedw_loop_blt.c index d12e1fc8..1ea83f0f 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 56c52dab..a161b5e8 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");