[lld] r198829 - Write temporary files to Output directory.
Rui Ueyama
ruiu at google.com
Wed Jan 8 17:11:51 PST 2014
Author: ruiu
Date: Wed Jan 8 19:11:51 2014
New Revision: 198829
URL: http://llvm.org/viewvc/llvm-project?rev=198829&view=rev
Log:
Write temporary files to Output directory.
Modified:
lld/trunk/test/pecoff/export-warning.test
Modified: lld/trunk/test/pecoff/export-warning.test
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/pecoff/export-warning.test?rev=198829&r1=198828&r2=198829&view=diff
==============================================================================
--- lld/trunk/test/pecoff/export-warning.test (original)
+++ lld/trunk/test/pecoff/export-warning.test Wed Jan 8 19:11:51 2014
@@ -1,16 +1,16 @@
# RUN: yaml2obj %p/Inputs/export.obj.yaml > %t.obj
#
# RUN: lld -flavor link /out:%t1.dll /dll /entry:init \
-# RUN: /export:exportfn1 /export:exportfn1 -- %t.obj 2> t1.log
-# RUN: FileCheck -check-prefix=CHECK1 %s < t1.log
+# RUN: /export:exportfn1 /export:exportfn1 -- %t.obj 2> %t1.log
+# RUN: FileCheck -check-prefix=CHECK1 %s < %t1.log
CHECK1-NOT: Export symbol '_exportfn1' specified more than once.
# RUN: lld -flavor link /out:%t2.dll /dll /entry:init \
-# RUN: /export:exportfn1 /export:exportfn1, at 5 -- %t.obj 2> t2.log
-# RUN: FileCheck -check-prefix=CHECK2 %s < t2.log
+# RUN: /export:exportfn1 /export:exportfn1, at 5 -- %t.obj 2> %t2.log
+# RUN: FileCheck -check-prefix=CHECK2 %s < %t2.log
CHECK2-NOT: Export symbol '_exportfn1' specified more than once.
# RUN: lld -flavor link /out:%t3.dll /dll /entry:init \
-# RUN: /export:exportfn1, at 8 /export:exportfn1, at 5 -- %t.obj 2> t3.log
-# RUN: FileCheck -check-prefix=CHECK3 %s < t3.log
+# RUN: /export:exportfn1, at 8 /export:exportfn1, at 5 -- %t.obj 2> %t3.log
+# RUN: FileCheck -check-prefix=CHECK3 %s < %t3.log
CHECK3: Export symbol '_exportfn1' specified more than once.
More information about the llvm-commits
mailing list