diff options
author | Jim Meyering <jim@meyering.net> | 2003-12-19 13:15:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-12-19 13:15:23 +0000 |
commit | 8f4b3c1b4fc9551de8ffd3b784cc764bacae04d0 (patch) | |
tree | 0f15bc78d08f4054892553f144b1a757c70c403c /tests/ls | |
parent | 7cc2e159d1781a8d32c16e2c53e25a4843ce8577 (diff) | |
download | coreutils-8f4b3c1b4fc9551de8ffd3b784cc764bacae04d0.tar.xz |
Use ls's -1 option in both runs.
Diffstat (limited to 'tests/ls')
-rwxr-xr-x | tests/ls/no-arg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ls/no-arg b/tests/ls/no-arg index 9f68eefd9..f36bb0edf 100755 --- a/tests/ls/no-arg +++ b/tests/ls/no-arg @@ -32,7 +32,7 @@ fi fail=0 -ls > out || fail=1 +ls -1 > out || fail=1 cmp out exp || fail=1 test $fail = 1 && diff out exp 2> /dev/null @@ -51,7 +51,7 @@ subdir file2 EOF -ls -R > out || fail=1 +ls -R1 > out || fail=1 cmp out exp || fail=1 test $fail = 1 && diff out exp 2> /dev/null |