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>
This commit is contained in:
Daniel Vetter
2013-08-12 12:17:35 +02:00
parent 814b135541
commit 1caaf0a6b6
81 changed files with 395 additions and 395 deletions
+7 -7
View File
@@ -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;