[llvm-commits] CVS: llvm/test/Linker/basiclink.ll
Reid Spencer
reid at x10sys.com
Mon Apr 16 10:38:17 PDT 2007
Changes in directory llvm/test/Linker:
basiclink.ll updated: 1.3 -> 1.4
---
Log message:
For PR1319: http://llvm.org/PR1319 :
Remove && from the end of the lines to prevent tests from throwing run
lines into the background. Also, clean up places where the same command
is run multiple times by using a temporary file.
---
Diffs of the changes: (+2 -2)
basiclink.ll | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/test/Linker/basiclink.ll
diff -u llvm/test/Linker/basiclink.ll:1.3 llvm/test/Linker/basiclink.ll:1.4
--- llvm/test/Linker/basiclink.ll:1.3 Tue Jan 30 10:16:01 2007
+++ llvm/test/Linker/basiclink.ll Mon Apr 16 12:36:07 2007
@@ -1,8 +1,8 @@
; Test linking two functions with different prototypes and two globals
; in different modules. This is for PR411
; RUN: llvm-as %s -o %t.bar.bc -f
-; RUN: echo "define i32* @foo(i32 %x) { ret i32* @baz } @baz = external global i32" | \
-; RUN: llvm-as -o %t.foo.bc -f
+; RUN: echo {define i32* @foo(i32 %x) \{ ret i32* @baz \} \
+; RUN: @baz = external global i32 } | llvm-as -o %t.foo.bc -f
; RUN: llvm-link %t.bar.bc %t.foo.bc -o %t.bc -f
; RUN: llvm-link %t.foo.bc %t.bar.bc -o %t.bc -f
declare i32* @foo(...)
More information about the llvm-commits
mailing list