Update test to pass .ll to llvm-link and use Inputs.
[oota-llvm.git] / test / Linker / ConstantGlobals3.ll
index 9a84c3a350eaad2f003859e7d415c4fd9afef986..5867ea50088234e1ba41c4bd6d682f9476931c70 100644 (file)
@@ -1,7 +1,6 @@
-; Test that appending linkage works correctly when arrays are the same size.
+; RUN: llvm-link %s %S/Inputs/ConstantGlobals3.ll -S | FileCheck %s
+; RUN: llvm-link %S/Inputs/ConstantGlobals3.ll %s -S | FileCheck %s
 
-; RUN: echo "%X = external constant [1x int]" | llvm-upgrade | llvm-as > %t.2.bc
-; RUN: llvm-upgrade %s | llvm-as > %t.1.bc
-; RUN: llvm-link %t.[12].bc | llvm-dis | grep constant
+; CHECK: @X = external constant [1 x i32]
 
-%X = uninitialized global [1 x int] 
+@X = external global [1 x i32]