remove tests connected to help output validation

The help has been moved to man pages now.
cute-signatures
Timo Teräs 2020-01-26 11:55:51 +02:00
parent cd70e10ad9
commit 4cd4d28710
1 changed files with 0 additions and 10 deletions

View File

@ -9,16 +9,6 @@ if [ "$help_output" != "$invalid_option_output" ]; then
fail=$((fail+1))
fi
if ! ../src/apk --help 2>/dev/null | grep -q "^Use apk --help --verbose for a full command listing."; then
echo "FAIL: brief help gives long help"
fail=$((fail+1))
fi
if ../src/apk --help --verbose 2>/dev/null | grep -q "^Use apk --help --verbose for a full command listing."; then
echo "FAIL: long help does not work"
fail=$((fail+1))
fi
if [ $fail -eq 0 ]; then
echo "OK: command parsing works"
fi