From 9df7aea12ee1e74ed01a2dc04dc647b6e3d08e55 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 27 Nov 2004 06:00:36 +0000 Subject: [PATCH] Accommodate the braindead Solaris "diff" that doesn't understand the -q option. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18268 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Archive/extract_GNU.ll | 2 +- test/Archive/extract_MacOSX.ll | 2 +- test/Archive/extract_SVR4.ll | 2 +- test/Archive/extract_xpg4.ll | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Archive/extract_GNU.ll b/test/Archive/extract_GNU.ll index 486dd86478c..f19840a14e5 100644 --- a/test/Archive/extract_GNU.ll +++ b/test/Archive/extract_GNU.ll @@ -2,4 +2,4 @@ ;This test just makes sure that llvm-ar can extract bytecode members ;from GNU style archives ;RUN: llvm-ar x %p/GNU.a very_long_bytecode_file_name.bc -;RUN: diff -q %p/very_long_bytecode_file_name.bc 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 diff --git a/test/Archive/extract_MacOSX.ll b/test/Archive/extract_MacOSX.ll index e835f4037f6..c811a59b33a 100644 --- a/test/Archive/extract_MacOSX.ll +++ b/test/Archive/extract_MacOSX.ll @@ -3,4 +3,4 @@ ;from MacOSX style archives ;RUN: llvm-ar x %p/MacOSX.a very_long_bytecode_file_name.bc -;RUN: diff -q %p/very_long_bytecode_file_name.bc 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 diff --git a/test/Archive/extract_SVR4.ll b/test/Archive/extract_SVR4.ll index 9fa8ceda7cc..446d52c211c 100644 --- a/test/Archive/extract_SVR4.ll +++ b/test/Archive/extract_SVR4.ll @@ -3,4 +3,4 @@ ;from SVR4 style archives ;RUN: llvm-ar x %p/SVR4.a very_long_bytecode_file_name.bc -;RUN: diff -q %p/very_long_bytecode_file_name.bc 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 diff --git a/test/Archive/extract_xpg4.ll b/test/Archive/extract_xpg4.ll index 72a5b90ea2f..c816d914d29 100644 --- a/test/Archive/extract_xpg4.ll +++ b/test/Archive/extract_xpg4.ll @@ -3,4 +3,4 @@ ;from xpg4 style archives ;RUN: llvm-ar x %p/xpg4.a very_long_bytecode_file_name.bc -;RUN: diff -q %p/very_long_bytecode_file_name.bc 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 -- 2.34.1