Update test to pass .ll to llvm-link and use Inputs.
[oota-llvm.git] / test / Linker / ConstantGlobals3.ll
index 8b8e27ee9fa21a2cd4d7eb38f12cac120cab2216..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 = uninitialized constant [1x int]" | llvm-as > %t.2.bc
-; RUN: llvm-as < %s > %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]