diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-22 02:46:31 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-22 02:46:31 +0000 |
commit | 80fd9b4e08a59eef3fbd1b756c094c551fc607e2 (patch) | |
tree | db8d38b0e62e328bcabf90496aef48cb65d53aeb /test/Archive | |
parent | 5fd738f0a6f0ff03632bc1dec992178b9994f157 (diff) |
Make sure output goes in the temporary/output directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Archive')
-rw-r--r-- | test/Archive/ranlib_GNU.ll | 6 | ||||
-rw-r--r-- | test/Archive/ranlib_MacOSX.ll | bin | 414 -> 408 bytes | |||
-rw-r--r-- | test/Archive/ranlib_SVR4.ll | 6 | ||||
-rw-r--r-- | test/Archive/ranlib_xpg4.ll | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/test/Archive/ranlib_GNU.ll b/test/Archive/ranlib_GNU.ll index 3def94465e..ac63989c79 100644 --- a/test/Archive/ranlib_GNU.ll +++ b/test/Archive/ranlib_GNU.ll @@ -1,9 +1,9 @@ ;This isn't really an assembly file, its just here to run the test. ;This test just makes sure that llvm-ar can generate a symbol table for ;GNU style archives -;RUN: cp %p/GNU.a GNU_copy.a -;RUN: llvm-ranlib GNU_copy.a -;RUN: llvm-ar t GNU_copy.a > %t1 +;RUN: cp %p/GNU.a %t.GNU.a +;RUN: llvm-ranlib %t.GNU.a +;RUN: llvm-ar t %t.GNU.a > %t1 ;RUN: sed -e '/^;.*/d' %s >%t2 ;RUN: diff %t2 %t1 evenlen diff --git a/test/Archive/ranlib_MacOSX.ll b/test/Archive/ranlib_MacOSX.ll Binary files differindex c6fa661f19..dda2f0b36e 100644 --- a/test/Archive/ranlib_MacOSX.ll +++ b/test/Archive/ranlib_MacOSX.ll diff --git a/test/Archive/ranlib_SVR4.ll b/test/Archive/ranlib_SVR4.ll index 137bad7fb6..a7da63d031 100644 --- a/test/Archive/ranlib_SVR4.ll +++ b/test/Archive/ranlib_SVR4.ll @@ -1,9 +1,9 @@ ;This isn't really an assembly file, its just here to run the test. ;This test just makes sure that llvm-ar can generate a symbol table for ;SVR4 style archives -;RUN: cp %p/SVR4.a SVR4_copy.a -;RUN: llvm-ranlib SVR4_copy.a -;RUN: llvm-ar t SVR4_copy.a > %t1 +;RUN: cp %p/SVR4.a %t.SVR4.a +;RUN: llvm-ranlib %t.SVR4.a +;RUN: llvm-ar t %t.SVR4.a > %t1 ;RUN: sed -e '/^;.*/d' %s >%t2 ;RUN: diff %t2 %t1 evenlen diff --git a/test/Archive/ranlib_xpg4.ll b/test/Archive/ranlib_xpg4.ll index 2d133e46ea..9f8aca0836 100644 --- a/test/Archive/ranlib_xpg4.ll +++ b/test/Archive/ranlib_xpg4.ll @@ -1,9 +1,9 @@ ;This isn't really an assembly file, its just here to run the test. ;This test just makes sure that llvm-ar can generate a symbol table for ;xpg4 style archives -;RUN: cp %p/xpg4.a xpg4_copy.a -;RUN: llvm-ranlib xpg4_copy.a -;RUN: llvm-ar t xpg4_copy.a > %t1 +;RUN: cp %p/xpg4.a %t.xpg4.a +;RUN: llvm-ranlib %t.xpg4.a +;RUN: llvm-ar t %t.xpg4.a > %t1 ;RUN: sed -e '/^;.*/d' %s >%t2 ;RUN: diff %t2 %t1 evenlen |