summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2018-03-09 15:44:59 +0000
committerTim Northover <tnorthover@apple.com>2018-03-09 15:44:59 +0000
commit2a7053128c3338e05c4b35b18e1dbfbf9bd078d2 (patch)
tree477f8c3652e2c022d7ab482f8807386c28dd24e5 /llvm/test/tools/llvm-opt-fuzzer/exec-options.ll
parent3aaf6a02eed397fd75df5acbc916e3351c01ee42 (diff)
downloadbcm5719-llvm-2a7053128c3338e05c4b35b18e1dbfbf9bd078d2.tar.gz
bcm5719-llvm-2a7053128c3338e05c4b35b18e1dbfbf9bd078d2.zip
Try to fix Windows bot by forcing "rm".
llvm-svn: 327139
Diffstat (limited to 'llvm/test/tools/llvm-opt-fuzzer/exec-options.ll')
-rw-r--r--llvm/test/tools/llvm-opt-fuzzer/exec-options.ll8
1 files changed, 4 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 8d2bb26c165..7ccf666df9a 100644
--- a/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll
+++ b/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll
@@ -14,21 +14,21 @@
; RUN: cp llvm-opt-fuzzer %t.bin--
; RUN: not %t.bin-- %t.input 2>&1 | FileCheck -check-prefix=EMPTY %s
-; RUN: rm %t.bin--
+; 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 %t.bin--x86_64
+; 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 %t.bin--x86_64-unknown
+; 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 %t.bin--x86_64-instcombine
+; RUN: rm -f %t.bin--x86_64-instcombine
; CORRECT: Injected args: -mtriple=x86_64 -passes=instcombine
; CORRECT: Running
OpenPOWER on IntegriCloud