]> granicus.if.org Git - llvm/commitdiff
[libFuzzer] split one test into several
authorKostya Serebryany <kcc@google.com>
Fri, 4 Aug 2017 20:01:04 +0000 (20:01 +0000)
committerKostya Serebryany <kcc@google.com>
Fri, 4 Aug 2017 20:01:04 +0000 (20:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310106 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Fuzzer/test/fuzzer-traces-hooks.test [deleted file]
lib/Fuzzer/test/memcmp.test [new file with mode: 0644]
lib/Fuzzer/test/memcmp64.test [new file with mode: 0644]
lib/Fuzzer/test/recommended-dictionary.test [new file with mode: 0644]
lib/Fuzzer/test/strcmp.test [new file with mode: 0644]
lib/Fuzzer/test/strncmp.test [new file with mode: 0644]
lib/Fuzzer/test/strstr.test [new file with mode: 0644]

diff --git a/lib/Fuzzer/test/fuzzer-traces-hooks.test b/lib/Fuzzer/test/fuzzer-traces-hooks.test
deleted file mode 100644 (file)
index 89b7c88..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// FIXME: Support for sanitizer hooks for memcmp and strcmp needs to
-// be implemented in the sanitizer runtime for this test
-UNSUPPORTED: windows
-RUN: %cpp_compiler %S/MemcmpTest.cpp -o %t-LLVMFuzzer-MemcmpTest
-RUN: %cpp_compiler %S/StrncmpTest.cpp -o %t-LLVMFuzzer-StrncmpTest
-RUN: %cpp_compiler %S/StrcmpTest.cpp -o %t-LLVMFuzzer-StrcmpTest
-RUN: %cpp_compiler %S/StrstrTest.cpp -o %t-LLVMFuzzer-StrstrTest
-RUN: %cpp_compiler %S/Memcmp64BytesTest.cpp -o %t-LLVMFuzzer-Memcmp64BytesTest
-RUN: %cpp_compiler %S/RepeatedMemcmp.cpp -o %t-LLVMFuzzer-RepeatedMemcmp
-
-CHECK: BINGO
-
-RUN: not %t-LLVMFuzzer-MemcmpTest               -seed=1 -runs=10000000   2>&1 | FileCheck %s
-RUN: not %t-LLVMFuzzer-StrncmpTest              -seed=2 -runs=2000000   2>&1 | FileCheck %s
-RUN: not %t-LLVMFuzzer-StrcmpTest               -seed=1 -runs=2000000   2>&1 | FileCheck %s
-RUN: not %t-LLVMFuzzer-StrstrTest               -seed=1 -runs=2000000   2>&1 | FileCheck %s
-
-RUN: not %t-LLVMFuzzer-Memcmp64BytesTest        -seed=1 -runs=1000000   2>&1 | FileCheck %s
-
-RUN: %t-LLVMFuzzer-RepeatedMemcmp -seed=11 -runs=100000 -max_len=20 2>&1 | FileCheck %s --check-prefix=RECOMMENDED_DICT
-RECOMMENDED_DICT:###### Recommended dictionary. ######
-RECOMMENDED_DICT-DAG: "foo"
-RECOMMENDED_DICT-DAG: "bar"
-RECOMMENDED_DICT:###### End of recommended dictionary. ######
diff --git a/lib/Fuzzer/test/memcmp.test b/lib/Fuzzer/test/memcmp.test
new file mode 100644 (file)
index 0000000..a8f2440
--- /dev/null
@@ -0,0 +1,3 @@
+RUN: %cpp_compiler %S/MemcmpTest.cpp -o %t-LLVMFuzzer-MemcmpTest
+RUN: not %t-LLVMFuzzer-MemcmpTest               -seed=1 -runs=10000000   2>&1 | FileCheck %s
+CHECK: BINGO
diff --git a/lib/Fuzzer/test/memcmp64.test b/lib/Fuzzer/test/memcmp64.test
new file mode 100644 (file)
index 0000000..50fcad0
--- /dev/null
@@ -0,0 +1,3 @@
+RUN: %cpp_compiler %S/Memcmp64BytesTest.cpp -o %t-LLVMFuzzer-Memcmp64BytesTest
+RUN: not %t-LLVMFuzzer-Memcmp64BytesTest        -seed=1 -runs=1000000   2>&1 | FileCheck %s
+CHECK: BINGO
diff --git a/lib/Fuzzer/test/recommended-dictionary.test b/lib/Fuzzer/test/recommended-dictionary.test
new file mode 100644 (file)
index 0000000..4380ea9
--- /dev/null
@@ -0,0 +1,6 @@
+RUN: %cpp_compiler %S/RepeatedMemcmp.cpp -o %t-LLVMFuzzer-RepeatedMemcmp
+RUN: %t-LLVMFuzzer-RepeatedMemcmp -seed=11 -runs=100000 -max_len=20 2>&1 | FileCheck %s --check-prefix=RECOMMENDED_DICT
+RECOMMENDED_DICT:###### Recommended dictionary. ######
+RECOMMENDED_DICT-DAG: "foo"
+RECOMMENDED_DICT-DAG: "bar"
+RECOMMENDED_DICT:###### End of recommended dictionary. ######
diff --git a/lib/Fuzzer/test/strcmp.test b/lib/Fuzzer/test/strcmp.test
new file mode 100644 (file)
index 0000000..a4997cb
--- /dev/null
@@ -0,0 +1,4 @@
+RUN: %cpp_compiler %S/StrcmpTest.cpp -o %t-LLVMFuzzer-StrcmpTest
+RUN: not %t-LLVMFuzzer-StrcmpTest               -seed=1 -runs=2000000   2>&1 | FileCheck %s
+CHECK: BINGO
+
diff --git a/lib/Fuzzer/test/strncmp.test b/lib/Fuzzer/test/strncmp.test
new file mode 100644 (file)
index 0000000..6d4ad6d
--- /dev/null
@@ -0,0 +1,4 @@
+RUN: %cpp_compiler %S/StrncmpTest.cpp -o %t-LLVMFuzzer-StrncmpTest
+RUN: not %t-LLVMFuzzer-StrncmpTest              -seed=2 -runs=2000000   2>&1 | FileCheck %s
+CHECK: BINGO
+
diff --git a/lib/Fuzzer/test/strstr.test b/lib/Fuzzer/test/strstr.test
new file mode 100644 (file)
index 0000000..7a98319
--- /dev/null
@@ -0,0 +1,4 @@
+RUN: %cpp_compiler %S/StrstrTest.cpp -o %t-LLVMFuzzer-StrstrTest
+RUN: not %t-LLVMFuzzer-StrstrTest               -seed=1 -runs=2000000   2>&1 | FileCheck %s
+CHECK: BINGO
+