mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
e659840bcd
The %T lit expansion expands to a common directory shared between all the tests in the same directory, which is unexpected and unintuitive, and more importantly, it's been a source of subtle race conditions and flaky tests. In https://reviews.llvm.org/D35396, it was agreed that it would be best to simply ban %T and only keep %t, which is unique to each test. When a test needs a temporary directory, it can just create one using mkdir %t. This patch removes %T in llvm. Differential Revision: https://reviews.llvm.org/D36495 llvm-svn: 310953
25 lines
1.1 KiB
LLVM
25 lines
1.1 KiB
LLVM
; RUN: rm -rf %t && mkdir -p %t
|
|
; RUN: llvm-as -o %t/bcsection.bc %s
|
|
|
|
; RUN: llvm-mc -I=%t -filetype=obj -triple=x86_64-pc-win32 -o %t/bcsection.coff.bco %p/Inputs/bcsection.s
|
|
; RUN: llvm-nm %t/bcsection.coff.bco | FileCheck %s
|
|
; RUN: llvm-lto -exported-symbol=main -exported-symbol=_main -o %t/bcsection.coff.o %t/bcsection.coff.bco
|
|
; RUN: llvm-nm %t/bcsection.coff.o | FileCheck %s
|
|
|
|
; RUN: llvm-mc -I=%t -filetype=obj -triple=x86_64-unknown-linux-gnu -o %t/bcsection.elf.bco %p/Inputs/bcsection.s
|
|
; RUN: llvm-nm %t/bcsection.elf.bco | FileCheck %s
|
|
; RUN: llvm-lto -exported-symbol=main -exported-symbol=_main -o %t/bcsection.elf.o %t/bcsection.elf.bco
|
|
; RUN: llvm-nm %t/bcsection.elf.o | FileCheck %s
|
|
|
|
; RUN: llvm-mc -I=%t -filetype=obj -triple=x86_64-apple-darwin11 -o %t/bcsection.macho.bco %p/Inputs/bcsection.macho.s
|
|
; RUN: llvm-nm %t/bcsection.macho.bco | FileCheck %s
|
|
; RUN: llvm-lto -exported-symbol=main -exported-symbol=_main -o %t/bcsection.macho.o %t/bcsection.macho.bco
|
|
; RUN: llvm-nm %t/bcsection.macho.o | FileCheck %s
|
|
|
|
; REQUIRES: default_triple
|
|
|
|
; CHECK: main
|
|
define i32 @main() {
|
|
ret i32 0
|
|
}
|