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
+6 -6
View File
@@ -99,10 +99,10 @@ int main(int argc, char **argv)
{ -1 },
}, *c;
drmtest_skip_on_simulation();
igt_skip_on_simulation();
drmtest_subtest_init(argc, argv);
drmtest_skip_on_simulation();
igt_subtest_init(argc, argv);
igt_skip_on_simulation();
if (argc > 1 && atoi(argv[1]))
object_size = atoi(argv[1]);
@@ -115,7 +115,7 @@ int main(int argc, char **argv)
dst = gem_create(fd, object_size);
src = malloc(object_size);
drmtest_subtest("normal") {
igt_subtest("normal") {
for (count = 1; count <= 1<<17; count <<= 1) {
struct timeval start, end;
@@ -131,7 +131,7 @@ int main(int argc, char **argv)
}
for (c = cache; c->level != -1; c++) {
drmtest_subtest(c->name) {
igt_subtest(c->name) {
gem_set_caching(fd, dst, c->level);
for (count = 1; count <= 1<<17; count <<= 1) {
@@ -154,5 +154,5 @@ int main(int argc, char **argv)
close(fd);
return drmtest_retval();
return igt_retval();
}