summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/.gitignore2
-rw-r--r--tests/Makefile.sources2
-rw-r--r--tests/gem_flink_basic.c (renamed from tests/gem_flink.c)0
-rw-r--r--tests/prime_self_import.c12
4 files changed, 8 insertions, 8 deletions
diff --git a/tests/.gitignore b/tests/.gitignore
index 87d4607d..fe547dbd 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -52,7 +52,7 @@ gem_fd_exhaustion
gem_fence_thrash
gem_fence_upload
gem_fenced_exec_thrash
-gem_flink
+gem_flink_basic
gem_flink_race
gem_gpgpu_fill
gem_gtt_cpu_tlb
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 4fe7d4c8..3b15b86b 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -32,7 +32,7 @@ TESTS_progs_M = \
gem_fenced_exec_thrash \
gem_fence_thrash \
gem_fence_upload \
- gem_flink \
+ gem_flink_basic \
gem_flink_race \
gem_linear_blits \
gem_madvise \
diff --git a/tests/gem_flink.c b/tests/gem_flink_basic.c
index 91444e8d..91444e8d 100644
--- a/tests/gem_flink.c
+++ b/tests/gem_flink_basic.c
diff --git a/tests/prime_self_import.c b/tests/prime_self_import.c
index 4fd372d9..f114ad09 100644
--- a/tests/prime_self_import.c
+++ b/tests/prime_self_import.c
@@ -449,14 +449,14 @@ igt_main
const char *name;
void (*fn)(void);
} tests[] = {
- { "with_one_bo", test_with_one_bo },
- { "with_one_bo_two_files", test_with_one_bo_two_files },
- { "with_two_bos", test_with_two_bos },
- { "with_fd_dup", test_with_fd_dup },
+ { "basic-with_one_bo", test_with_one_bo },
+ { "basic-with_one_bo_two_files", test_with_one_bo_two_files },
+ { "basic-with_two_bos", test_with_two_bos },
+ { "basic-with_fd_dup", test_with_fd_dup },
{ "export-vs-gem_close-race", test_export_close_race },
{ "reimport-vs-gem_close-race", test_reimport_close_race },
- { "llseek-size", test_llseek_size },
- { "llseek-bad", test_llseek_bad },
+ { "basic-llseek-size", test_llseek_size },
+ { "basic-llseek-bad", test_llseek_bad },
};
int i;