tests/gem_persistent_relocs: Tune down the test a bit

Takes too long.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter 2013-09-16 22:45:14 +02:00
parent 31139f6b8f
commit 195f04c300

View File

@ -122,7 +122,7 @@ static void emit_dummy_load(int pitch)
XY_SRC_COPY_BLT_DST_TILED; XY_SRC_COPY_BLT_DST_TILED;
} }
for (i = 0; i < 10; i++) { for (i = 0; i < 5; i++) {
BEGIN_BATCH(8); BEGIN_BATCH(8);
OUT_BATCH(XY_SRC_COPY_BLT_CMD | OUT_BATCH(XY_SRC_COPY_BLT_CMD |
XY_SRC_COPY_BLT_WRITE_ALPHA | XY_SRC_COPY_BLT_WRITE_ALPHA |
@ -234,7 +234,8 @@ static void do_test(int fd, bool faulting_reloc)
} }
for (repeat = 0; repeat < 4096/small_pitch; repeat++) { /* repeat must be smaller than 4096/small_pitch */
for (repeat = 0; repeat < 8; repeat++) {
for (i = 0; i < NUM_TARGET_BOS; i++) { for (i = 0; i < NUM_TARGET_BOS; i++) {
uint32_t data[2] = { uint32_t data[2] = {
(repeat << 16) | 0, (repeat << 16) | 0,
@ -252,7 +253,8 @@ static void do_test(int fd, bool faulting_reloc)
/* Only check at the end to avoid unnecessarily synchronous behaviour. */ /* Only check at the end to avoid unnecessarily synchronous behaviour. */
for (i = 0; i < NUM_TARGET_BOS; i++) { for (i = 0; i < NUM_TARGET_BOS; i++) {
for (repeat = 0; repeat < 4096/small_pitch; repeat++) { /* repeat must be smaller than 4096/small_pitch */
for (repeat = 0; repeat < 8; repeat++) {
drm_intel_bo_get_subdata(pc_target_bo[i], drm_intel_bo_get_subdata(pc_target_bo[i],
repeat*small_pitch, 4, &test); repeat*small_pitch, 4, &test);
if (test != 0xdeadbeef) { if (test != 0xdeadbeef) {