diff options
Diffstat (limited to 'llvm/test/tools/llvm-opt-fuzzer')
-rw-r--r-- | llvm/test/tools/llvm-opt-fuzzer/exec-options.ll | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll b/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll index 7ccf666df9a..56996535650 100644 --- a/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll +++ b/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll @@ -14,21 +14,17 @@ ; RUN: cp llvm-opt-fuzzer %t.bin-- ; RUN: not %t.bin-- %t.input 2>&1 | FileCheck -check-prefix=EMPTY %s -; RUN: rm -f %t.bin-- ; EMPTY: -mtriple must be specified ; RUN: cp llvm-opt-fuzzer %t.bin--x86_64 ; RUN: not %t.bin--x86_64 %t.input 2>&1 | FileCheck -check-prefix=PASSES %s -; RUN: rm -f %t.bin--x86_64 ; PASSES: at least one pass should be specified ; RUN: cp llvm-opt-fuzzer %t.bin--x86_64-unknown ; RUN: not %t.bin--x86_64-unknown %t.input 2>&1 | FileCheck -check-prefix=UNKNOWN %s -; RUN: rm -f %t.bin--x86_64-unknown ; UNKNOWN: Unknown option: unknown ; RUN: cp llvm-opt-fuzzer %t.bin--x86_64-instcombine ; RUN: %t.bin--x86_64-instcombine %t.input 2>&1 | FileCheck -check-prefix=CORRECT %s -; RUN: rm -f %t.bin--x86_64-instcombine ; CORRECT: Injected args: -mtriple=x86_64 -passes=instcombine ; CORRECT: Running |