diff options
| author | Tim Northover <tnorthover@apple.com> | 2018-03-05 15:49:00 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2018-03-05 15:49:00 +0000 |
| commit | 24c296de77864a6e58a91c63cdcd25bd1d28bd0d (patch) | |
| tree | 603c571bb228bb424b0550bdd37ee76a5f78a596 /llvm/test/tools/llvm-isel-fuzzer/execname-options.ll | |
| parent | cb2ad24c5c2dec2c2331b400b054a096eb65cdf8 (diff) | |
| download | bcm5719-llvm-24c296de77864a6e58a91c63cdcd25bd1d28bd0d.tar.gz bcm5719-llvm-24c296de77864a6e58a91c63cdcd25bd1d28bd0d.zip | |
Fuzzer: remove temporary files after we're done with them.
These were just copies of the relevant fuzzer binary with (presumably)
meaningful suffixes, but accounted for more than 10% of my build
directory (> 8GB). Hard drive space is cheap, but not that cheap.
llvm-svn: 326710
Diffstat (limited to 'llvm/test/tools/llvm-isel-fuzzer/execname-options.ll')
| -rw-r--r-- | llvm/test/tools/llvm-isel-fuzzer/execname-options.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll index a825cb450cc..fbfbc9aee99 100644 --- a/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll +++ b/llvm/test/tools/llvm-isel-fuzzer/execname-options.ll @@ -6,14 +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 ; 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 ; 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 ; NO-OPT: Unknown option: |

