Updated these tests so that they use the new temporary directory as opposed
authorJohn Criswell <criswell@uiuc.edu>
Fri, 26 Sep 2003 20:20:44 +0000 (20:20 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Fri, 26 Sep 2003 20:20:44 +0000 (20:20 +0000)
to the old Output directory for temporary files.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8728 91177308-0d34-0410-b5e6-96231b3b80d8

test/Linker/2003-08-20-OpaqueTypeResolve.ll
test/Linker/2003-08-23-GlobalVarLinking.ll
test/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll
test/Linker/2003-08-24-InheritPtrSize.ll
test/Linker/2003-08-28-TypeResolvesGlobal.ll
test/Linker/2003-08-28-TypeResolvesGlobal2.ll
test/Linker/2003-08-28-TypeResolvesGlobal3.ll

index 95d3f09980709203f88feaad06cb0e3a8430f4fe..5b45cdfa53b4d75a98fde28e18229f00be0715fb 100644 (file)
@@ -1,7 +1,7 @@
 
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type { int, int* }" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[12].bc
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = type { int, int* }" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[12].bc
 
 %T = type opaque
 %S = type { int, %T* }
index 0666545dd820c8631c9daba243de4260e023b933..51ad19451a2f98a87ddf8a975a5d73a4090ce5c3 100644 (file)
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = external global { int, opaque* } declare void %F(opaque*)" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[12].bc | llvm-dis | not grep opaque
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = external global { int, opaque* } declare void %F(opaque*)" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[12].bc | llvm-dis | not grep opaque
 
 ; After linking this testcase, there should be no opaque types left.  The two
 ; S's should cause the opaque type to be resolved to 'int'.
index 90e93335d06ce6623fc8a377afa0e31073cbd599..e052d56bacd4a9e969b766d7931a8fb26427278a 100644 (file)
@@ -1,8 +1,8 @@
 ; It's a bad idea to go recursively traipsing through types without a safety 
 ; net.
 
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type { %S*, int* }" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[12].bc
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = type { %S*, int* }" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[12].bc
 
 %S = type { %S*, opaque* }
index 1053a4eede876e456cc83f626b85670f8e0ec199..dc446155ff74f5d65a26490e9ab2a74ab31e2dab 100644 (file)
@@ -1,9 +1,9 @@
 ; Linking these a module with a specified pointer size to one without a 
 ; specified pointer size should not cause a warning!
 
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[12].bc 2>&1 | not grep WARNING
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[12].bc 2>&1 | not grep WARNING
 
 target pointersize = 64
 
index 1baeae5ec79ccf28c1a00bfc23eb91ea8350e9fd..54d0a6fa2426997a9cf6f6362e15a45faa9bdb4e 100644 (file)
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[21].bc
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = type int" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[21].bc
 
 %S = type opaque
 
index a0526d4612c3b257eebe4d9b576ed801683480fc..e83d232017746af41ca1e5df9f24c13da5feed11 100644 (file)
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[21].bc
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = type int" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[21].bc
 
 %S = type opaque
 
index 504e8dd47791d019461cdfef75fb38afe24f47d2..31900998442827059dcd03cc512a5e7495088936 100644 (file)
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
-; RUN: llvm-link Output/%s.out[21].bc
+; RUN: llvm-as < %s > %t.out1.bc
+; RUN: echo "%S = type int" | llvm-as > %t.out2.bc
+; RUN: llvm-link %t.out[21].bc
 
 %S = type opaque