diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-19 04:45:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-19 04:45:19 +0000 |
commit | b7bd81963d9c272f04de5675bc1df9ec66078751 (patch) | |
tree | c1ed996fdd9d462cc20ec7e98e789208f76d72ae /test/Archive | |
parent | 30ce0f0c55ddd2a99c6c06bccf1a0821b2215f2e (diff) | |
download | external_llvm-b7bd81963d9c272f04de5675bc1df9ec66078751.zip external_llvm-b7bd81963d9c272f04de5675bc1df9ec66078751.tar.gz external_llvm-b7bd81963d9c272f04de5675bc1df9ec66078751.tar.bz2 |
Test reading of SVR4 style archives with llvm-ar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17983 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Archive')
-rw-r--r-- | test/Archive/SVR4.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Archive/SVR4.ll b/test/Archive/SVR4.ll index 1f82e5d..f06b6b3 100644 --- a/test/Archive/SVR4.ll +++ b/test/Archive/SVR4.ll @@ -2,6 +2,6 @@ ; run the following test which tests llvm-ar for compatibility ; reading SVR4 style archives. -; RUN: ar t SVR4.a > %t1 -; RUN: llvm-ar t SVR4.a > %t2 -; RUN: diff %t1 %t2 +; RUN: ar t SVR4.a > Output/svr1 +; RUN: llvm-ar t SVR4.a > Output/svr2 +; RUN: diff Output/svr1 Output/svr2 |