diff options
author | John Criswell <criswell@uiuc.edu> | 2003-09-06 15:15:04 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-09-06 15:15:04 +0000 |
commit | e3e7c474f2d8b32fed4035d1b8e643a2b0ddc0aa (patch) | |
tree | d567df562caf514aaeb7d6009d001c9c2c0b8066 /test/Linker/AppendingLinkage.ll | |
parent | ee29d2aa20a45b2ac6991c7ba6125d6698f0ca98 (diff) |
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/AppendingLinkage.ll')
-rw-r--r-- | test/Linker/AppendingLinkage.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Linker/AppendingLinkage.ll b/test/Linker/AppendingLinkage.ll index de925a7d6c..0019e6cdea 100644 --- a/test/Linker/AppendingLinkage.ll +++ b/test/Linker/AppendingLinkage.ll @@ -1,8 +1,8 @@ ; Test that appending linkage works correctly. -; RUN: echo "%X = appending global [1x int] [int 8]" | as > Output/%s.2.bc -; RUN: as < %s > Output/%s.1.bc -; RUN: link Output/%s.[12].bc | dis | grep 7 | grep 4 | grep 8 +; RUN: echo "%X = appending global [1x int] [int 8]" | as > %t.2.bc +; RUN: as < %s > %t.1.bc +; RUN: link %t.[12].bc | dis | grep 7 | grep 4 | grep 8 %X = appending global [2 x int] [int 7, int 4] |