[lld] r198839 - Add a blank line to FileCheck input.

Rui Ueyama ruiu at google.com
Wed Jan 8 18:47:52 PST 2014


Author: ruiu
Date: Wed Jan  8 20:47:52 2014
New Revision: 198839

URL: http://llvm.org/viewvc/llvm-project?rev=198839&view=rev
Log:
Add a blank line to FileCheck input.

FileCheck does not like the empty input file, so adding a blank line to workaround.

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=198839&r1=198838&r2=198839&view=diff
==============================================================================
--- lld/trunk/test/pecoff/export-warning.test (original)
+++ lld/trunk/test/pecoff/export-warning.test Wed Jan  8 20:47:52 2014
@@ -2,15 +2,18 @@
 #
 # RUN: lld -flavor link /out:%t1.dll /dll /entry:init \
 # RUN:   /export:exportfn1 /export:exportfn1 -- %t.obj 2> %t1.log
+# RUN: echo >> %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: echo >> %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: echo >> %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