mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-21 21:32:56 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user