Timothy Elliott | d20a2e1 | 2012-02-08 22:47:36 -0800 | [diff] [blame] | 1 | #/bin/bash |
| 2 | |
| 3 | [ -f testing.sh ] && . testing.sh |
| 4 | |
| 5 | testing "cmp not enough arguments [fail]" "cmp input 2>/dev/null || echo yes" "yes\n" "foo" "" |
| 6 | testing "cmp missing file1 [fail]" "cmp file1 input 2>/dev/null || echo yes" "yes\n" "foo" "" |
| 7 | |
| 8 | #mkdir dir |
| 9 | #testing "cmp directory [fail]" "cmp dir dir 2>/dev/null || echo yes" \ |
| 10 | #"yes\n" "" "" |
| 11 | #rmdir dir |
| 12 | |
| 13 | echo "ab |
| 14 | c" > input2 |
| 15 | |
| 16 | testing "cmp identical files, stdout" "cmp input input2" "" "ab\nc\n" "" |
| 17 | testing "cmp identical files, return code" "cmp input input2 && echo yes" "yes\n" "ab\nc\n" "" |
| 18 | |
| 19 | testing "cmp EOF, stderr" "cmp input input2 2>&1" "cmp: EOF on input2\n" "ab\nc\nx" "" |
| 20 | testing "cmp EOF, return code" "cmp input input2 2>/dev/null || echo yes" "yes\n" "ab\nc\nx" "" |
| 21 | testing "cmp diff, stdout" "cmp input input2" "input input2 differ: char 4, line 2\n" "ab\nx\nx" "" |
| 22 | testing "cmp diff, return code" "cmp input input2 > /dev/null || echo yes" "yes\n" "ab\nx\nx" "" |
| 23 | |
| 24 | testing "cmp -s EOF, return code" "cmp -s input input2 || echo yes" "yes\n" "ab\nc\nx" "" |
| 25 | testing "cmp -s diff, return code" "cmp -s input input2 || echo yes" "yes\n" "ab\nx\nx" "" |
| 26 | |
| 27 | testing "cmp -l EOF, stderr" "cmp -l input input2 2>&1" "cmp: EOF on input2\n" "ab\nc\nx" "" |
| 28 | testing "cmp -l diff and EOF, stdout and stderr" "cmp -l input input2 2>&1" "cmp: EOF on input2\n4 170 143\n" "ab\nx\nx" "" |
| 29 | |
| 30 | rm input2 |
| 31 | |
| 32 | testing "cmp stdin and file" "cmp input -" "input - differ: char 4, line 2\n" "ab\nc\n" "ab\nx\n" |
| 33 | #testing "cmp stdin and stdin" "cmp input -" "" "" "ab\nc\n" |
| 34 | |