Skip to content
This repository was archived by the owner on Jan 1, 2023. It is now read-only.

Commit cd24f9e

Browse files
committed
Try to fix Windows bot by forcing "rm".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327139 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent bdf2ed5 commit cd24f9e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

test/tools/llvm-isel-fuzzer/aarch64-execname-options.ll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77

88
; RUN: cp llvm-isel-fuzzer %t.bin--aarch64
99
; RUN: %t.bin--aarch64 %t.input 2>&1 | FileCheck -check-prefix=AARCH64 %s
10-
; RUN: rm %t.bin--aarch64
10+
; RUN: rm -f %t.bin--aarch64
1111
; AARCH64: Injected args: -mtriple=aarch64
1212

1313
; RUN: cp llvm-isel-fuzzer %t.bin--aarch64-O1
1414
; RUN: %t.bin--aarch64-O1 %t.input 2>&1 | FileCheck -check-prefix=OPT-AFTER %s
15-
; RUN: rm %t.bin--aarch64-O1
15+
; RUN: rm -f %t.bin--aarch64-O1
1616
; OPT-AFTER: Injected args: -mtriple=aarch64 -O1
1717

1818
; RUN: cp llvm-isel-fuzzer %t.bin--O3-aarch64
1919
; RUN: %t.bin--O3-aarch64 %t.input 2>&1 | FileCheck -check-prefix=OPT-BEFORE %s
20-
; RUN: rm %t.bin--O3-aarch64
20+
; RUN: rm -f %t.bin--O3-aarch64
2121
; OPT-BEFORE: Injected args: -O3 -mtriple=aarch64

test/tools/llvm-isel-fuzzer/execname-options.ll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66

77
; RUN: cp llvm-isel-fuzzer %t.bin--gisel
88
; RUN: not %t.bin--gisel %t.input 2>&1 | FileCheck -check-prefix=GISEL %s
9-
; RUN: rm %t.bin--gisel
9+
; RUN: rm -f %t.bin--gisel
1010
; GISEL: Injected args: -global-isel -O0
1111
; GISEL: -mtriple must be specified
1212

1313
; RUN: cp llvm-isel-fuzzer %t.bin--gisel-O2
1414
; RUN: not %t.bin--gisel-O2 %t.input 2>&1 | FileCheck -check-prefix=GISEL-O2 %s
15-
; RUN: rm %t.bin--gisel-O2
15+
; RUN: rm -f %t.bin--gisel-O2
1616
; GISEL-O2: Injected args: -global-isel -O0 -O2
1717
; GISEL-O2: -mtriple must be specified
1818

1919
; RUN: cp llvm-isel-fuzzer %t.bin--unexist
2020
; RUN: not %t.bin--unexist %t.input 2>&1 | FileCheck -check-prefix=NO-OPT %s
21-
; RUN: rm %t.bin--unexist
21+
; RUN: rm -f %t.bin--unexist
2222
; NO-OPT: Unknown option:

test/tools/llvm-opt-fuzzer/exec-options.ll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414

1515
; RUN: cp llvm-opt-fuzzer %t.bin--
1616
; RUN: not %t.bin-- %t.input 2>&1 | FileCheck -check-prefix=EMPTY %s
17-
; RUN: rm %t.bin--
17+
; RUN: rm -f %t.bin--
1818
; EMPTY: -mtriple must be specified
1919

2020
; RUN: cp llvm-opt-fuzzer %t.bin--x86_64
2121
; RUN: not %t.bin--x86_64 %t.input 2>&1 | FileCheck -check-prefix=PASSES %s
22-
; RUN: rm %t.bin--x86_64
22+
; RUN: rm -f %t.bin--x86_64
2323
; PASSES: at least one pass should be specified
2424

2525
; RUN: cp llvm-opt-fuzzer %t.bin--x86_64-unknown
2626
; RUN: not %t.bin--x86_64-unknown %t.input 2>&1 | FileCheck -check-prefix=UNKNOWN %s
27-
; RUN: rm %t.bin--x86_64-unknown
27+
; RUN: rm -f %t.bin--x86_64-unknown
2828
; UNKNOWN: Unknown option: unknown
2929

3030
; RUN: cp llvm-opt-fuzzer %t.bin--x86_64-instcombine
3131
; RUN: %t.bin--x86_64-instcombine %t.input 2>&1 | FileCheck -check-prefix=CORRECT %s
32-
; RUN: rm %t.bin--x86_64-instcombine
32+
; RUN: rm -f %t.bin--x86_64-instcombine
3333
; CORRECT: Injected args: -mtriple=x86_64 -passes=instcombine
3434
; CORRECT: Running

0 commit comments

Comments
 (0)