aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2020-01-26 11:55:51 +0200
committerTimo Teräs <timo.teras@iki.fi>2020-01-26 11:55:51 +0200
commit4cd4d28710c1703e867734c2192addd5e289871e (patch)
tree6b9520c2daa59abb46cd3e79fbb92a7b8e4f88e7
parentcd70e10ad9eb3f7361c150495299d98096077b62 (diff)
downloadaports-4cd4d28710c1703e867734c2192addd5e289871e.tar.bz2
aports-4cd4d28710c1703e867734c2192addd5e289871e.tar.xz
remove tests connected to help output validation
The help has been moved to man pages now.
-rwxr-xr-xtest/command-parsing.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/command-parsing.sh b/test/command-parsing.sh
index 008cb77cec..b68c4ad876 100755
--- a/test/command-parsing.sh
+++ b/test/command-parsing.sh
@@ -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