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 | 866b586851e5d88b08d9ee920df547666894bb3d (patch) | |
tree | 4a2b64db2f7d07ed26df29a25884902df9066bff /llvm | |
parent | a8f3ed701a5ae04c0abe221f4a9dffe54986a7af (diff) | |
download | bcm5719-llvm-866b586851e5d88b08d9ee920df547666894bb3d.tar.gz bcm5719-llvm-866b586851e5d88b08d9ee920df547666894bb3d.zip |
Test reading of SVR4 style archives with llvm-ar
llvm-svn: 17983
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Regression/Archive/SVR4.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Regression/Archive/SVR4.ll b/llvm/test/Regression/Archive/SVR4.ll index 1f82e5d1004..f06b6b3311a 100644 --- a/llvm/test/Regression/Archive/SVR4.ll +++ b/llvm/test/Regression/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 |