summaryrefslogtreecommitdiff
path: root/test/Linker/2002-08-20-ConstantExpr.ll
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-06 15:15:04 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-06 15:15:04 +0000
commite3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa (patch)
treed567df562caf514aaeb7d6009d001c9c2c0b8066 /test/Linker/2002-08-20-ConstantExpr.ll
parentee29d2aa20a45b2ac6991c7ba6125d6698f0ca98 (diff)
downloadllvm-e3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa.tar.gz
llvm-e3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa.tar.bz2
llvm-e3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa.tar.xz
Checkin of autoconf-style object root.
Updated TestRunner tests so that they work correctly in a separate object root directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker/2002-08-20-ConstantExpr.ll')
-rw-r--r--test/Linker/2002-08-20-ConstantExpr.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Linker/2002-08-20-ConstantExpr.ll b/test/Linker/2002-08-20-ConstantExpr.ll
index 3f1b4bf90a..da81af31f1 100644
--- a/test/Linker/2002-08-20-ConstantExpr.ll
+++ b/test/Linker/2002-08-20-ConstantExpr.ll
@@ -1,8 +1,8 @@
; This fails linking when it is linked with an empty file as the first object file
-; RUN: as > Output/%s.LinkTest.bc < /dev/null
-; RUN: as < %s > Output/%s.bc
-; RUN: link Output/%s.LinkTest.bc Output/%s.bc
+; RUN: as > %t.LinkTest.bc < /dev/null
+; RUN: as < %s > %t.bc
+; RUN: link %t.LinkTest.bc %t.bc
%work = global int 4
%test = global int* getelementptr( int* %work, long 1)