diff options
| author | Tim Northover <tnorthover@apple.com> | 2018-03-09 15:44:59 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2018-03-09 15:44:59 +0000 |
| commit | 2a7053128c3338e05c4b35b18e1dbfbf9bd078d2 (patch) | |
| tree | 477f8c3652e2c022d7ab482f8807386c28dd24e5 | |
| parent | 3aaf6a02eed397fd75df5acbc916e3351c01ee42 (diff) | |
| download | bcm5719-llvm-2a7053128c3338e05c4b35b18e1dbfbf9bd078d2.tar.gz bcm5719-llvm-2a7053128c3338e05c4b35b18e1dbfbf9bd078d2.zip | |
Try to fix Windows bot by forcing "rm".
llvm-svn: 327139
| -rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll | 6 | ||||
| -rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/execname-options.ll | 6 | ||||
| -rw-r--r-- | llvm/test/tools/llvm-opt-fuzzer/exec-options.ll | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll b/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll index 7ad0a03a16c..32b0e80bb05 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll @@ -7,15 +7,15 @@ ; RUN: cp llvm-isel-fuzzer %t.bin--aarch64 ; RUN: %t.bin--aarch64 %t.input 2>&1 | FileCheck -check-prefix=AARCH64 %s -; RUN: rm %t.bin--aarch64 +; RUN: rm -f %t.bin--aarch64 ; AARCH64: Injected args: -mtriple=aarch64 ; RUN: cp llvm-isel-fuzzer %t.bin--aarch64-O1 ; RUN: %t.bin--aarch64-O1 %t.input 2>&1 | FileCheck -check-prefix=OPT-AFTER %s -; RUN: rm %t.bin--aarch64-O1 +; RUN: rm -f %t.bin--aarch64-O1 ; OPT-AFTER: Injected args: -mtriple=aarch64 -O1 ; RUN: cp llvm-isel-fuzzer %t.bin--O3-aarch64 ; RUN: %t.bin--O3-aarch64 %t.input 2>&1 | FileCheck -check-prefix=OPT-BEFORE %s -; RUN: rm %t.bin--O3-aarch64 +; RUN: rm -f %t.bin--O3-aarch64 ; OPT-BEFORE: Injected args: -O3 -mtriple=aarch64 diff --git a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll index fbfbc9aee99..35324cfbfce 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll @@ -6,17 +6,17 @@ ; RUN: cp llvm-isel-fuzzer %t.bin--gisel ; RUN: not %t.bin--gisel %t.input 2>&1 | FileCheck -check-prefix=GISEL %s -; RUN: rm %t.bin--gisel +; RUN: rm -f %t.bin--gisel ; GISEL: Injected args: -global-isel -O0 ; GISEL: -mtriple must be specified ; RUN: cp llvm-isel-fuzzer %t.bin--gisel-O2 ; RUN: not %t.bin--gisel-O2 %t.input 2>&1 | FileCheck -check-prefix=GISEL-O2 %s -; RUN: rm %t.bin--gisel-O2 +; RUN: rm -f %t.bin--gisel-O2 ; GISEL-O2: Injected args: -global-isel -O0 -O2 ; GISEL-O2: -mtriple must be specified ; RUN: cp llvm-isel-fuzzer %t.bin--unexist ; RUN: not %t.bin--unexist %t.input 2>&1 | FileCheck -check-prefix=NO-OPT %s -; RUN: rm %t.bin--unexist +; RUN: rm -f %t.bin--unexist ; NO-OPT: Unknown option: 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 |

