[lld] r301286 - Do not create temporary files in the main source tree.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 24 20:30:50 PDT 2017


Author: ruiu
Date: Mon Apr 24 22:30:50 2017
New Revision: 301286

URL: http://llvm.org/viewvc/llvm-project?rev=301286&view=rev
Log:
Do not create temporary files in the main source tree.

Modified:
    lld/trunk/test/ELF/progname.s

Modified: lld/trunk/test/ELF/progname.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/progname.s?rev=301286&r1=301285&r2=301286&view=diff
==============================================================================
--- lld/trunk/test/ELF/progname.s (original)
+++ lld/trunk/test/ELF/progname.s Mon Apr 24 22:30:50 2017
@@ -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
 




More information about the llvm-commits mailing list