diff options
author | Hans Wennborg <hans@hanshq.net> | 2018-03-12 13:22:12 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2018-03-12 13:22:12 +0000 |
commit | 4b66c02a914c9571f37ecb2b4dfd406a26bafb14 (patch) | |
tree | 5af3469a7ab9f6d1aecde169fcf6684a4e029148 /llvm/test/tools/llvm-opt-fuzzer | |
parent | 1f0fe564605b2c5ff7da6e7b4cd4f9954bad2407 (diff) | |
download | bcm5719-llvm-4b66c02a914c9571f37ecb2b4dfd406a26bafb14.tar.gz bcm5719-llvm-4b66c02a914c9571f37ecb2b4dfd406a26bafb14.zip |
Revert r326710 "Fuzzer: remove temporary files after we're done with them."
This broke some Windows buildbots; see llvm-commits thread.
> 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.
(Also reverts follow-up r326710 which didn't help.)
llvm-svn: 327266
Diffstat (limited to 'llvm/test/tools/llvm-opt-fuzzer')
-rw-r--r-- | llvm/test/tools/llvm-opt-fuzzer/exec-options.ll | 4 |
1 files changed, 0 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 7ccf666df9a..56996535650 100644 --- a/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll +++ b/llvm/test/tools/llvm-opt-fuzzer/exec-options.ll @@ -14,21 +14,17 @@ ; RUN: cp llvm-opt-fuzzer %t.bin-- ; RUN: not %t.bin-- %t.input 2>&1 | FileCheck -check-prefix=EMPTY %s -; 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 -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 -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 -f %t.bin--x86_64-instcombine ; CORRECT: Injected args: -mtriple=x86_64 -passes=instcombine ; CORRECT: Running |