From 4f5efc5c844f6fe69209982463f9220f8f3951ed Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 10 Dec 2015 10:02:46 +0000 Subject: [PATCH] igt: s/basic/sanitycheck/ on prior smoketesting In times past, I added "basic" variants of tests just to ensure that the general principle of operation was sound before proceeding on to the main test (which typically looked at thrashing, i.e. were long and tedious and pointless if the test didn't even work in the normal situation). Since "basic" now collides with BAT, rename my trivial tests to "sanitycheck". Signed-off-by: Chris Wilson --- tests/gem_concurrent_all.c | 2 +- tests/gem_cpu_reloc.c | 2 +- tests/gem_linear_blits.c | 2 +- tests/gem_render_linear_blits.c | 2 +- tests/gem_render_tiled_blits.c | 2 +- tests/gem_tiled_blits.c | 2 +- tests/gem_tiled_fence_blits.c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/gem_concurrent_all.c b/tests/gem_concurrent_all.c index ec124286..47031801 100644 --- a/tests/gem_concurrent_all.c +++ b/tests/gem_concurrent_all.c @@ -1020,7 +1020,7 @@ run_basic_modes(const struct access_mode *mode, batch = buffers_init(&buffers, mode, fd); } - igt_subtest_f("%s-%s-basic%s%s", mode->name, p->prefix, suffix, h->suffix) { + igt_subtest_f("%s-%s-sanitycheck%s%s", mode->name, p->prefix, suffix, h->suffix) { h->require(); p->require(); buffers_create(&buffers, num_buffers); diff --git a/tests/gem_cpu_reloc.c b/tests/gem_cpu_reloc.c index 520030a4..3d5750bb 100644 --- a/tests/gem_cpu_reloc.c +++ b/tests/gem_cpu_reloc.c @@ -249,7 +249,7 @@ igt_main fd = drm_open_driver(DRIVER_INTEL); } - igt_subtest("basic") { + igt_subtest("sanitycheck") { run_test (fd, 10); } diff --git a/tests/gem_linear_blits.c b/tests/gem_linear_blits.c index 55b01c8a..516495f6 100644 --- a/tests/gem_linear_blits.c +++ b/tests/gem_linear_blits.c @@ -225,7 +225,7 @@ int main(int argc, char **argv) fd = drm_open_driver(DRIVER_INTEL); } - igt_subtest("basic") + igt_subtest("sanitytcheck") run_test(fd, 2); igt_subtest("normal") { diff --git a/tests/gem_render_linear_blits.c b/tests/gem_render_linear_blits.c index 13f76a56..6f1f7c49 100644 --- a/tests/gem_render_linear_blits.c +++ b/tests/gem_render_linear_blits.c @@ -190,7 +190,7 @@ igt_main fd = drm_open_driver(DRIVER_INTEL); } - igt_subtest("basic") { + igt_subtest("sanitycheck") { run_test(fd, 2); } diff --git a/tests/gem_render_tiled_blits.c b/tests/gem_render_tiled_blits.c index fb2f39d2..fcb20bfa 100644 --- a/tests/gem_render_tiled_blits.c +++ b/tests/gem_render_tiled_blits.c @@ -203,7 +203,7 @@ igt_main fd = drm_open_driver(DRIVER_INTEL); } - igt_subtest("basic") { + igt_subtest("sanitycheck") { run_test(fd, 2); } diff --git a/tests/gem_tiled_blits.c b/tests/gem_tiled_blits.c index 10e30dfb..48bc3bc7 100644 --- a/tests/gem_tiled_blits.c +++ b/tests/gem_tiled_blits.c @@ -207,7 +207,7 @@ int main(int argc, char **argv) batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd)); } - igt_subtest("basic") + igt_subtest("sanitycheck") run_test(2); igt_subtest("normal") { diff --git a/tests/gem_tiled_fence_blits.c b/tests/gem_tiled_fence_blits.c index d4bcf203..8979d8b5 100644 --- a/tests/gem_tiled_fence_blits.c +++ b/tests/gem_tiled_fence_blits.c @@ -168,7 +168,7 @@ igt_main fd = drm_open_driver(DRIVER_INTEL); } - igt_subtest("basic") { + igt_subtest("sanitycheck") { run_test (fd, 2); }