Do not create temporary files in the main source tree.

llvm-svn: 301286
This commit is contained in:
Rui Ueyama 2017-04-25 03:30:50 +00:00
parent e6c8c6d04c
commit 303a5cafbb
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@
// RUN: ld.lld -o %t %t.o %t2.so
// RUN: llvm-readobj -dyn-symbols %t | FileCheck %s
// RUN: echo "VER_1 { global: bar; };" > %s.script
// RUN: echo "VER_1 { global: bar; };" > %t.script
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux \
// RUN: %p/Inputs/progname-ver.s -o %t-ver.o
// RUN: ld.lld -shared -o %t.so -version-script %s.script %t-ver.o
// RUN: ld.lld -shared -o %t.so -version-script %t.script %t-ver.o
// RUN: ld.lld -o %t %t.o %t.so
// RUN: llvm-readobj -dyn-symbols %t | FileCheck %s