diff options
author | Jim Meyering <jim@meyering.net> | 1999-12-19 09:41:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-12-19 09:41:08 +0000 |
commit | fa468393ae909d7fb753ae3973aefa0751772476 (patch) | |
tree | 7b6a2078244b5c23aafb3f5a319ad2bd3da5c464 /tests/ls | |
parent | dd1a7723a6acea7919a78681c644cca94b30865b (diff) | |
download | coreutils-fa468393ae909d7fb753ae3973aefa0751772476.tar.xz |
remove unused test= stmt
Diffstat (limited to 'tests/ls')
-rwxr-xr-x | tests/ls/time-1 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/ls/time-1 b/tests/ls/time-1 index ff2a4a89e..d52375879 100755 --- a/tests/ls/time-1 +++ b/tests/ls/time-1 @@ -1,8 +1,6 @@ #!/bin/sh # Test some of ls's sorting options. -test=time-1 - if test "$VERBOSE" = yes; then set -x ls --version @@ -78,7 +76,7 @@ if test $framework_failure = 1; then exit 1 fi -set `ls -u a b c` +set `ls -ut a b c` test "$*" = 'c b a' && : || fail=1 test $fail = 1 && ls -l --full-time --time=access a b c @@ -87,7 +85,7 @@ 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` +set `ls -ct a c` if test "$*" = 'c a'; then : ok else |