diff options
author | Jim Meyering <jim@meyering.net> | 1999-11-20 10:46:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-11-20 10:46:39 +0000 |
commit | 808aa68e9c33966a9b139575859c6f421fecad13 (patch) | |
tree | 2e55a47f34393e07f268c8fbc624db5436a130fd | |
parent | 8c4882550ea13303e99348d642aff3a211d2045f (diff) | |
download | coreutils-808aa68e9c33966a9b139575859c6f421fecad13.tar.xz |
*** empty log message ***
-rw-r--r-- | old/fileutils/ChangeLog | 2 | ||||
-rwxr-xr-x | tests/cp/cp-mv-backup | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog index 2c95a0adb..e69b3b822 100644 --- a/old/fileutils/ChangeLog +++ b/old/fileutils/ChangeLog @@ -1,5 +1,7 @@ 1999-11-20 Jim Meyering <meyering@ascend.com> + * tests/cp/cp-mv-backup: Run `diff -c' if the test fails. + * tests/ls/time-1: Use `ls' and `touch', not $LS and $TOUCH. * tests/ls/Makefile.am (TESTS_ENVIRONMENT): Specify PATH, etc. diff --git a/tests/cp/cp-mv-backup b/tests/cp/cp-mv-backup index aaddaa25c..3ae81764d 100755 --- a/tests/cp/cp-mv-backup +++ b/tests/cp/cp-mv-backup @@ -94,6 +94,6 @@ sed 's/: x/:/' $expected-tmp |cat $expected-tmp - > $expected cmp $expected $actual || fail=1 # Uncomment this if you see a failure and want to try to diagnose it. -test $fail = 1 && diff -u $expected $actual 1>&2 +test $fail = 1 && diff -c $expected $actual 1>&2 exit $fail |