]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix cdiff error in testsh1.sh
authorErik van der Kouwe <erik@minix3.org>
Fri, 6 Aug 2010 09:27:49 +0000 (09:27 +0000)
committerErik van der Kouwe <erik@minix3.org>
Fri, 6 Aug 2010 09:27:49 +0000 (09:27 +0000)
test/testsh1.sh

index eccff8f34bb4067748d1d74e2a7110d1fa278389..e3d3c3163c78c2956ef91db03df4fb9642c8f284 100755 (executable)
@@ -72,7 +72,7 @@ if test `basename a/b/c/d` != 'd'; then Error on basename test 2; fi
 cp $f x.c                      # x.c is a copy $f
 echo "/a/s//#####/g" >s                # create sed script
 sed -f s <x.c >y.c             # y.c is new version of x.c
-cdiff x.c y.c >y               # y is cdiff listing
+diff -c x.c y.c >y             # y is cdiff listing
 patch x.c y  2>/dev/null       # z should be y.c
 if cmp -s x.c y.c; then : ; else echo Error in cdiff test; fi
 rm x.c* y.c s y