diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2020-04-28 14:33:33 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2020-04-28 14:33:33 +0000 |
commit | 67c907653e3cfcc807c96e3419bacce3b5479f1c (patch) | |
tree | 2c5684d095ccab11dbd23a0f8686f886be9497e4 /usr.bin/diff/tests | |
parent | a9ea09e548882b7b15bcff47509b3d42618815cf (diff) |
Notes
Diffstat (limited to 'usr.bin/diff/tests')
-rwxr-xr-x | usr.bin/diff/tests/diff_test.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/diff/tests/diff_test.sh b/usr.bin/diff/tests/diff_test.sh index 8385a6224865..6f4b484b3a37 100755 --- a/usr.bin/diff/tests/diff_test.sh +++ b/usr.bin/diff/tests/diff_test.sh @@ -186,6 +186,13 @@ conflicting_format_body() atf_check -s exit:2 -e ignore diff -q -c A B atf_check -s exit:2 -e ignore diff --normal -c A B atf_check -s exit:2 -e ignore diff -c --normal A B + + atf_check -s exit:1 -o ignore -e ignore diff -u -u A B + atf_check -s exit:1 -o ignore -e ignore diff -e -e A B + atf_check -s exit:1 -o ignore -e ignore diff -y -y A B + atf_check -s exit:1 -o ignore -e ignore diff -q -q A B + atf_check -s exit:1 -o ignore -e ignore diff -c -c A B + atf_check -s exit:1 -o ignore -e ignore diff --normal --normal A B } atf_init_test_cases() @@ -201,5 +208,5 @@ atf_init_test_cases() atf_add_test_case b230049 atf_add_test_case Bflag atf_add_test_case tabsize - atf_add_test_case conflicting_format + atf_add_test_case conflicting_format } |