diff options
author | Julian Lettner <jlettner@apple.com> | 2019-07-06 00:49:44 +0000 |
---|---|---|
committer | Julian Lettner <jlettner@apple.com> | 2019-07-06 00:49:44 +0000 |
commit | a2ca358291a3a621bfae66eeb01f51eeb69d2dd4 (patch) | |
tree | 64f97b1e5a6979df36fd08e4d3deee424d7e6b10 | |
parent | 0ffe0db6fab479bd0d988d84a40ec8626cf6e426 (diff) | |
download | bcm5719-llvm-a2ca358291a3a621bfae66eeb01f51eeb69d2dd4.tar.gz bcm5719-llvm-a2ca358291a3a621bfae66eeb01f51eeb69d2dd4.zip |
[TSan] Attempt to fix iOS on-device test
llvm-svn: 365257
-rw-r--r-- | compiler-rt/test/fuzzer/seed_inputs.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler-rt/test/fuzzer/seed_inputs.test b/compiler-rt/test/fuzzer/seed_inputs.test index d61e6cf7a63..cef6a1ea4eb 100644 --- a/compiler-rt/test/fuzzer/seed_inputs.test +++ b/compiler-rt/test/fuzzer/seed_inputs.test @@ -1,24 +1,24 @@ RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest USE-1: INFO: seed corpus: files: 1 -RUN: echo -n "%t-SimpleTest" > %t.seed-inputs +RUN: %run echo -n "%t-SimpleTest" > %t.seed-inputs # Test both formats of -seed_inputs argument. RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE-1 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest 2>&1 | FileCheck %s --check-prefix=USE-1 USE-2: INFO: seed corpus: files: 2 -RUN: echo -n "%t-SimpleTest,%t-SimpleTest" > %t.seed-inputs +RUN: %run echo -n "%t-SimpleTest,%t-SimpleTest" > %t.seed-inputs RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE-2 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest 2>&1 | FileCheck %s --check-prefix=USE-2 # Test that missing files and trailing commas are tolerated. -RUN: echo -n "%t-SimpleTest,%t-SimpleTest,nonexistent-file," > %t.seed-inputs +RUN: %run echo -n "%t-SimpleTest,%t-SimpleTest,nonexistent-file," > %t.seed-inputs RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE-2 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest,nonexistent-file, 2>&1 | FileCheck %s --check-prefix=USE-2 # Test that using a non existent file or an empty seed list fails. EMPTY: seed_inputs is empty or @file does not exist. RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@nonexistent-file 2>&1 | FileCheck %s --check-prefix=EMPTY -RUN: echo -n "" > %t.seed-inputs +RUN: %run echo -n "" > %t.seed-inputs RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=EMPTY RUN: not %run %t-SimpleTest -runs=1 -seed_inputs= 2>&1 | FileCheck %s --check-prefix=EMPTY |