summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2011-07-17 23:33:27 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2011-07-17 23:33:27 +0200
commit74670c7bb9968a99d75a97c3677b15110281c94d (patch)
tree84e4c2bf276300f6e9b615e958c36a062d2fad13
parent6cc92bcbc5301e79a9afa8f3dcbc73ec770be034 (diff)
gem_stress: ducttaping mandatory
In other news: We've been missing a unmapping_mapping_range somewhere in the kernel. But lazy me never came around to digging up the real cause. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--tests/gem_stress.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gem_stress.c b/tests/gem_stress.c
index e279365a..6ee0f988 100644
--- a/tests/gem_stress.c
+++ b/tests/gem_stress.c
@@ -692,7 +692,7 @@ static void parse_options(int argc, char **argv)
{"no-fail", 0, 0, 'f'},
{"tiles-per-buf", 0, 0, 'p'},
#define DUCTAPE 0xdead0001
- {"apply-duct-tape", 0, 0, DUCTAPE},
+ {"remove-duct-tape", 0, 0, DUCTAPE},
#define TILESZ 0xdead0002
{"tile-size", 1, 0, TILESZ},
#define CHCK_RENDER 0xdead0003
@@ -711,7 +711,7 @@ static void parse_options(int argc, char **argv)
options.use_cpu_maps = 0;
options.total_rounds = 512;
options.fail = 1;
- options.ducttape = 0;
+ options.ducttape = 1;
options.tile_size = 16;
options.tiles_per_buf = options.scratch_buf_size / TILE_BYTES(options.tile_size);
options.check_render_cpyfn = 0;
@@ -795,7 +795,7 @@ static void parse_options(int argc, char **argv)
printf("tiles per buffer %i\n", options.tiles_per_buf);
break;
case DUCTAPE:
- options.ducttape = 1;
+ options.ducttape = 0;
printf("applying duct-tape\n");
break;
case TILESZ: