summaryrefslogtreecommitdiff
path: root/tools/check-help.sh
blob: 721dec4c64f93445e17d24bbadc5fa94bd32ef33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
set -eu

export SYSTEMD_LOG_LEVEL=info

# output width
if "$1"  --help | grep -v 'default:' | grep -E -q '.{80}.'; then
    echo "$(basename "$1") --help output is too wide:"
    "$1"  --help | awk 'length > 80' | grep -E --color=yes '.{80}'
    exit 1
fi

# --help prints something. Also catches case where args are ignored.
if ! "$1"  --help | grep -q .; then
    echo "$(basename "$1") --help output is empty."
    exit 2
fi

# no --help output to stdout
if "$1" --help 2>&1 1>/dev/null | grep .; then
    echo "$(basename "$1") --help prints to stderr"
    exit 3
fi

# error output to stderr
if ! "$1" --no-such-parameter 2>&1 1>/dev/null | grep -q .; then
    echo "$(basename "$1") with an unknown parameter does not print to stderr"
    exit 4
fi