This repository was archived by the owner on Jan 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 7
7
8
8
; RUN: cp llvm-isel-fuzzer %t.bin--aarch64
9
9
; 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
11
11
; AARCH64: Injected args: -mtriple=aarch64
12
12
13
13
; RUN: cp llvm-isel-fuzzer %t.bin--aarch64-O1
14
14
; 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
16
16
; OPT-AFTER: Injected args: -mtriple=aarch64 -O1
17
17
18
18
; RUN: cp llvm-isel-fuzzer %t.bin--O3-aarch64
19
19
; 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
21
21
; OPT-BEFORE: Injected args: -O3 -mtriple=aarch64
Original file line number Diff line number Diff line change 6
6
7
7
; RUN: cp llvm-isel-fuzzer %t.bin--gisel
8
8
; 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
10
10
; GISEL: Injected args: -global-isel -O0
11
11
; GISEL: -mtriple must be specified
12
12
13
13
; RUN: cp llvm-isel-fuzzer %t.bin--gisel-O2
14
14
; 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
16
16
; GISEL-O2: Injected args: -global-isel -O0 -O2
17
17
; GISEL-O2: -mtriple must be specified
18
18
19
19
; RUN: cp llvm-isel-fuzzer %t.bin--unexist
20
20
; 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
22
22
; NO-OPT: Unknown option:
Original file line number Diff line number Diff line change 14
14
15
15
; RUN: cp llvm-opt-fuzzer %t.bin--
16
16
; RUN: not %t.bin-- %t.input 2>&1 | FileCheck -check-prefix=EMPTY %s
17
- ; RUN: rm %t.bin--
17
+ ; RUN: rm -f %t.bin--
18
18
; EMPTY: -mtriple must be specified
19
19
20
20
; RUN: cp llvm-opt-fuzzer %t.bin--x86_64
21
21
; 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
23
23
; PASSES: at least one pass should be specified
24
24
25
25
; RUN: cp llvm-opt-fuzzer %t.bin--x86_64-unknown
26
26
; 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
28
28
; UNKNOWN: Unknown option: unknown
29
29
30
30
; RUN: cp llvm-opt-fuzzer %t.bin--x86_64-instcombine
31
31
; 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
33
33
; CORRECT: Injected args: -mtriple=x86_64 -passes=instcombine
34
34
; CORRECT: Running
You can’t perform that action at this time.
0 commit comments