diff options
author | Rob Landley <rob@landley.net> | 2016-03-02 15:10:24 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-02 15:10:24 -0600 |
commit | eb830728b12152702c3852d079ad5c8a7f6e709b (patch) | |
tree | 23212ca519113c108d914d9cdd17caf4b6f84021 /tests/losetup.test | |
parent | b69e1efb2763f99566f451189b5e31f3a05c2e32 (diff) | |
download | toybox-eb830728b12152702c3852d079ad5c8a7f6e709b.tar.gz |
Print command name at start of each test.
Diffstat (limited to 'tests/losetup.test')
-rwxr-xr-x | tests/losetup.test | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/losetup.test b/tests/losetup.test index 84ac4b1f..651c6933 100755 --- a/tests/losetup.test +++ b/tests/losetup.test @@ -19,27 +19,6 @@ NODE="$(awk '{print $7}')" losetup -f losetup -f -s losetup -f file -testing "cat" "cat && echo yes" "oneyes\n" "" "one" -testing "cat -" "cat - && echo yes" "oneyes\n" "" "one" -testing "cat file1 file2" "cat file1 file2" "one\ntwo\n" "" "" -testing "cat - file" "cat - file1" "zero\none\n" "" "zero\n" -testing "cat file -" "cat file1 -" "one\nzero\n" "" "zero\n" - -testing "cat file1 notfound file2" \ - "cat file1 notfound file2 2>stderr && echo ok ; cat stderr; rm stderr" \ - "one\ntwo\ncat: notfound: No such file or directory\n" "" "" - -testing "cat file1" \ - "cat /proc/self/exe > file1 && cmp /proc/self/exe file1 && echo yes" \ - "yes\n" "" "" - -testing "cat - file1" \ - "cat - file1 | diff -a -U 0 - file1 | tail -n 1" \ - "-hello\n" "" "hello\n" - -testing "cat > /dev/full" \ - "cat - > /dev/full 2>stderr && echo ok; cat stderr; rm stderr" \ - "cat: xwrite: No space left on device\n" "" "zero\n" losetup -d |