summaryrefslogtreecommitdiff
path: root/test/Archive/extract.ll
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-12-02 09:16:14 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-12-02 09:16:14 +0000
commit5d87255969560d47c08db9382ef3d3fa70fe3ec2 (patch)
tree10599a8de86201dfcdf1d6c3e45a19e5245f775f /test/Archive/extract.ll
parent76507f14edbfa7729775ee73173de735aa2f4781 (diff)
downloadllvm-5d87255969560d47c08db9382ef3d3fa70fe3ec2.tar.gz
llvm-5d87255969560d47c08db9382ef3d3fa70fe3ec2.tar.bz2
llvm-5d87255969560d47c08db9382ef3d3fa70fe3ec2.tar.xz
test/Archive/extract.ll: Use cmp instead of diff. Thanks to Danil Malyshev!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120698 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Archive/extract.ll')
-rw-r--r--test/Archive/extract.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Archive/extract.ll b/test/Archive/extract.ll
index 3649714259..714c5f1ed9 100644
--- a/test/Archive/extract.ll
+++ b/test/Archive/extract.ll
@@ -4,13 +4,13 @@
; from various style archives.
; RUN: llvm-ar x %p/GNU.a very_long_bytecode_file_name.bc
-; RUN: diff %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc >/dev/null 2>/dev/null
+; RUN: cmp -s %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc
; RUN: llvm-ar x %p/MacOSX.a very_long_bytecode_file_name.bc
-; RUN: diff %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc > /dev/null 2>/dev/null
+; RUN: cmp -s %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc
; RUN: llvm-ar x %p/SVR4.a very_long_bytecode_file_name.bc
-; RUN: diff %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc >/dev/null 2>/dev/null
+; RUN: cmp -s %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc
; RUN: llvm-ar x %p/xpg4.a very_long_bytecode_file_name.bc
-; RUN: diff %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc >/dev/null 2>/dev/null
+; RUN: cmp -s %p/very_long_bytecode_file_name.bc very_long_bytecode_file_name.bc