1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-28 15:54:58 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
1998-01-10 11:56:26 +00:00
parent fff6de7b04
commit 12782f54b0

View File

@@ -37,12 +37,16 @@ if test $test_failure = 1; then
fi
fail=0
# A was accessed more recently.
set `$LS -u a b`
test "$*" = 'a b' && : || fail=1
# B was modified more recently.
set `$LS -t a b`
test "$*" = 'b a' && : || fail=1
# D has newer ctime.
set `$LS -c a d`
test "$*" = 'd a' && : || fail=1