summaryrefslogtreecommitdiff
path: root/tests/gem_linear_blits.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_linear_blits.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_linear_blits.c')
-rw-r--r--tests/gem_linear_blits.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/gem_linear_blits.c b/tests/gem_linear_blits.c
index 8b2b4150..8fdbca5a 100644
--- a/tests/gem_linear_blits.c
+++ b/tests/gem_linear_blits.c
@@ -240,13 +240,13 @@ int main(int argc, char **argv)
{
int fd, count = 0;
- drmtest_skip_on_simulation();
+ igt_skip_on_simulation();
- drmtest_subtest_init(argc, argv);
+ igt_subtest_init(argc, argv);
fd = drm_open_any();
- if (!drmtest_only_list_subtests()) {
+ if (!igt_only_list_subtests()) {
if (argc > 1)
count = atoi(argv[1]);
if (count == 0)
@@ -264,13 +264,13 @@ int main(int argc, char **argv)
printf("Using %d 1MiB buffers\n", count);
}
- drmtest_subtest("normal")
+ igt_subtest("normal")
run_test(fd, count);
- drmtest_subtest("interruptible") {
- drmtest_fork_signal_helper();
+ igt_subtest("interruptible") {
+ igt_fork_signal_helper();
run_test(fd, count);
- drmtest_stop_signal_helper();
+ igt_stop_signal_helper();
}
return 0;