]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sat, 10 Jan 1998 11:56:26 +0000 (11:56 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 10 Jan 1998 11:56:26 +0000 (11:56 +0000)
tests/ls/time-1

index 90960d9f91c51c3c5cf2ed6c08a49c937eb463c2..a5594ae262e5d67fc465b9994254e5ba052bb2e4 100755 (executable)
@@ -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