[compiler-rt] r365257 - [TSan] Attempt to fix iOS on-device test
Julian Lettner via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 5 17:49:45 PDT 2019
Author: yln
Date: Fri Jul 5 17:49:44 2019
New Revision: 365257
URL: http://llvm.org/viewvc/llvm-project?rev=365257&view=rev
Log:
[TSan] Attempt to fix iOS on-device test
Modified:
compiler-rt/trunk/test/fuzzer/seed_inputs.test
Modified: compiler-rt/trunk/test/fuzzer/seed_inputs.test
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/seed_inputs.test?rev=365257&r1=365256&r2=365257&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/seed_inputs.test (original)
+++ compiler-rt/trunk/test/fuzzer/seed_inputs.test Fri Jul 5 17:49:44 2019
@@ -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
More information about the llvm-commits
mailing list