From a8f0963af5c217210f333790385a3d753794f6ad Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 13 Jan 2016 15:06:41 +0000 Subject: [PATCH] igt/gem_storedw_loop: Add a few more iterations Whilst still keeping the runtime down, extend the pipeline slightly. Signed-off-by: Chris Wilson --- tests/gem_storedw_loop.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/gem_storedw_loop.c b/tests/gem_storedw_loop.c index 2f42a0bb..9727b977 100644 --- a/tests/gem_storedw_loop.c +++ b/tests/gem_storedw_loop.c @@ -150,6 +150,11 @@ store_test(int fd, int ring, int count) if (!igt_run_in_simulation()) { store_dword_loop(fd, ring, count, 3); store_dword_loop(fd, ring, count, 5); + store_dword_loop(fd, ring, count, 7); + store_dword_loop(fd, ring, count, 11); + store_dword_loop(fd, ring, count, 13); + store_dword_loop(fd, ring, count, 17); + store_dword_loop(fd, ring, count, 19); } }