Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / cross_over.test
blob5fc3b060b308f82e3b2094711e6e2c365e78f1f1
1 # For IOS, we fail to permute the run lines properly (rdar://99889376)
2 XFAIL: ios && !iossim
3 # Tests CrossOverTest.
4 # We want to make sure that the test can find the input
5 # ABCDEFGHIJ when given two other inputs in the seed corpus:
6 # ABCDE00000 and
7 # ZZZZZFGHIJ
9 RUN: %cpp_compiler %S/CrossOverTest.cpp -o %t-CrossOverTest
11 RUN: rm -rf %t-corpus
12 RUN: mkdir %t-corpus
13 RUN: echo -n ABCDE00000 > %t-corpus/A
14 RUN: echo -n ZZZZZFGHIJ > %t-corpus/B
17 RUN: not %run %t-CrossOverTest -max_len=10 -reduce_inputs=0 -seed=1 -runs=10000000 %t-corpus
19 # Test the same thing but using -seed_inputs instead of passing the corpus dir.
20 RUN: not %run %t-CrossOverTest -max_len=10 -reduce_inputs=0 -seed=1 -runs=10000000 -seed_inputs=%t-corpus/A,%t-corpus/B