From 978d57f6a74503b36587b23293f4cbb349d9f6a8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 2 May 2002 21:51:55 +0000 Subject: [PATCH] Use unified diffs with gnu diff instead of old diffs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2449 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Feature/TestOptimizer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Feature/TestOptimizer.sh b/test/Feature/TestOptimizer.sh index be926d1f671..e0864578adf 100755 --- a/test/Feature/TestOptimizer.sh +++ b/test/Feature/TestOptimizer.sh @@ -16,7 +16,7 @@ echo "======== Running optimizier test on $1" $DIS < $1.bc.1 > $1.ll.1 || exit 3 $DIS < $1.bc.2 > $1.ll.2 || exit 3 - diff $1.ll.[12] || exit 3 + gdiff -u $1.ll.[12] || exit 3 # Try out SCCP & CleanGCC $AS < $1 | $OPT -q -inline -dce -cleangcc -sccp -dce \ @@ -26,7 +26,7 @@ echo "======== Running optimizier test on $1" $OPT -q -sccp -dce < $1.bc.3 > $1.bc.4 || exit 2 $DIS < $1.bc.3 > $1.ll.3 || exit 3 $DIS < $1.bc.4 > $1.ll.4 || exit 3 - diff $1.ll.[34] || exit 3 + gdiff -u $1.ll.[34] || exit 3 rm $1.bc.[1234] $1.ll.[1234] touch Output/$1.opt # Success! -- 2.34.1