diff options
-rwxr-xr-x | tests/ls/time-1 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ls/time-1 b/tests/ls/time-1 index eb7400a1f..429615d28 100755 --- a/tests/ls/time-1 +++ b/tests/ls/time-1 @@ -52,9 +52,11 @@ fi set `ls -u a b c` test "$*" = 'c b a' && : || fail=1 +test $fail = 1 && ls -l --full-time --time=access a b c set `ls -t a b c` test "$*" = 'a b c' && : || fail=1 +test $fail = 1 && ls -l --full-time a b c # Now, C should have ctime more recent than A. set `ls -c a c` |