mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-20 21:02:59 +00:00
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:
+6
-6
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user