summaryrefslogtreecommitdiff
path: root/tests/gem_stress.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-08-12 12:17:35 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-08-12 12:20:22 +0200
commit1caaf0a6b6e00e3ab85a10d7e9e36907d4c1d577 (patch)
tree258ab2ef01b3461f1dc85f081a59ecd578874326 /tests/gem_stress.c
parent814b135541813a6ee623eda895119acdea7f7a2f (diff)
s/drmtest_/igt_/
Requested-by: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gem_stress.c')
-rw-r--r--tests/gem_stress.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/gem_stress.c b/tests/gem_stress.c
index 9b31a690..2f2d1ed8 100644
--- a/tests/gem_stress.c
+++ b/tests/gem_stress.c
@@ -498,7 +498,7 @@ static void init_set(unsigned set)
long int r;
int i;
- drmtest_permute_array(buffers[set], num_buffers, exchange_buf);
+ igt_permute_array(buffers[set], num_buffers, exchange_buf);
if (current_set == 1 && options.gpu_busy_load == 0) {
gpu_busy_load++;
@@ -871,7 +871,7 @@ int main(int argc, char **argv)
/* start our little helper early before too may allocations occur */
if (options.use_signal_helper)
- drmtest_fork_signal_helper();
+ igt_fork_signal_helper();
init();
@@ -898,7 +898,7 @@ int main(int argc, char **argv)
for (j = 0; j < num_total_tiles; j++)
current_permutation[j] = j;
- drmtest_permute_array(current_permutation, num_total_tiles, exchange_uint);
+ igt_permute_array(current_permutation, num_total_tiles, exchange_uint);
copy_tiles(current_permutation);
@@ -921,7 +921,7 @@ int main(int argc, char **argv)
close(drm_fd);
- drmtest_stop_signal_helper();
+ igt_stop_signal_helper();
return 0;
}