diff options
author | Jim Meyering <jim@meyering.net> | 1998-05-27 12:35:56 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-05-27 12:35:56 +0000 |
commit | 75637a7ef48630513cc1d8122e5ba07d886d5399 (patch) | |
tree | 5eec26b82cd08582c8f4536d97e5eb2ce57795af /tests/ls | |
parent | 9e1c89c38ef83288ea418fe69847514a803d0777 (diff) | |
download | coreutils-75637a7ef48630513cc1d8122e5ba07d886d5399.tar.xz |
Don't use the ctime for testing, it is impossible to set it reliably.
Diffstat (limited to 'tests/ls')
-rwxr-xr-x | tests/ls/cr-1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ls/cr-1 b/tests/ls/cr-1 index 202b3d8d2..fc91655cd 100755 --- a/tests/ls/cr-1 +++ b/tests/ls/cr-1 @@ -40,10 +40,10 @@ fi fail=0 -set `$LS -c a b c` +set `$LS -t a b c` test "$*" = 'a b c' && : || fail=1 -set `$LS -rc a b c` +set `$LS -rt a b c` test "$*" = 'c b a' && : || fail=1 cd .. |