diff options
-rwxr-xr-x | tests/ls.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ls.test b/tests/ls.test index 07850de2..b29c478a 100755 --- a/tests/ls.test +++ b/tests/ls.test @@ -22,9 +22,9 @@ testing "with wild char" "$IN && ls file*; $OUT" "file1.txt\nfile2.txt\n" "" "" testing "with wild char - long listing" "$IN && ls -1 file*; $OUT" "file1.txt\nfile2.txt\n" "" "" testing "with -p" "$IN && ls -p; $OUT" "dir1/\ndir2/\nfile1.txt\nfile2.txt\n" "" "" testing "with -a" "$IN && ls -a; $OUT" \ - ".\n..\ndir1\ndir2\nfile1.txt\nfile2.txt\n.hfile1\n" "" "" + ".\n..\n.hfile1\ndir1\ndir2\nfile1.txt\nfile2.txt\n" "" "" testing "with -A" "$IN && ls -A; $OUT" \ - "dir1\ndir2\nfile1.txt\nfile2.txt\n.hfile1\n" "" "" + ".hfile1\ndir1\ndir2\nfile1.txt\nfile2.txt\n" "" "" testing "with -d" "$IN && ls -d; $OUT" ".\n" "" "" testing "with wild char and -d *" "$IN && ls -d *; $OUT" "dir1\ndir2\nfile1.txt\nfile2.txt\n" "" "" testing "with -k" "$IN && ls -k; $OUT" "dir1\ndir2\nfile1.txt\nfile2.txt\n" "" "" |