mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
1e2851aabe
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
19 lines
733 B
LLVM
19 lines
733 B
LLVM
; If the binary looks up libraries using an rpath, we can't test this
|
|
; without copying the whole lib dir or polluting the build dir.
|
|
; REQUIRES: static-libs
|
|
; REQUIRES: aarch64-registered-target
|
|
|
|
; RUN: echo > %t.input
|
|
|
|
; RUN: cp llvm-isel-fuzzer %t.bin--aarch64
|
|
; RUN: %t.bin--aarch64 %t.input 2>&1 | FileCheck -check-prefix=AARCH64 %s
|
|
; 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
|
|
; 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
|
|
; OPT-BEFORE: Injected args: -O3 -mtriple=aarch64
|