brintos

brintos / llvm-project-archived public Read only

0
0
Text · 307 B · b7b7391 Raw
10 lines · plain
1# Runs the Reject.cpp test,2# ensures that the input 'acc' is present in the corpus,3# and the input 'rej' is not.4 5RUN: rm -rf %t-corpus && mkdir %t-corpus6RUN: %cpp_compiler %S/Reject.cpp -o %t-Reject7RUN: %run %t-Reject -runs=1000000 %t-corpus8RUN: grep 'acc' %t-corpus/*9RUN: not grep 'rej' %t-corpus/*10