From 204df6679814d67d0d932f9e60382f660dca915c Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Thu, 18 Jul 2013 11:36:56 +0100 Subject: [PATCH] tests: Instrument gem_lut_handle for simulation Signed-off-by: Damien Lespiau --- tests/gem_lut_handle.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/gem_lut_handle.c b/tests/gem_lut_handle.c index fdd2ab87..f3e57341 100644 --- a/tests/gem_lut_handle.c +++ b/tests/gem_lut_handle.c @@ -183,8 +183,6 @@ int main(int argc, char **argv) uint32_t handle; int fd, i; - drmtest_skip_on_simulation(); - fd = drm_open_any(); handle = gem_create(fd, 4096); @@ -199,7 +197,7 @@ int main(int argc, char **argv) do_or_die(exec(fd, handle, USE_LUT)); fail(exec(fd, handle, USE_LUT | BROKEN)); - for (i = 2; i <= 65536; i *= 2) { + for (i = 2; i <= SLOW_QUICK(65536, 8); i *= 2) { if (many_exec(fd, handle, i+1, i+1, NORMAL) == -1 && errno == ENOSPC) break;