]> git.ipfire.org Git - thirdparty/systemd.git/blame - tools/meson-check-help.sh
Merge pull request #12511 from ssahani/high-avilability-12050
[thirdparty/systemd.git] / tools / meson-check-help.sh
CommitLineData
7629744a 1#!/bin/sh
2set -eu
005a29f2 3
07b3a026
YW
4export SYSTEMD_LOG_LEVEL=info
5
005a29f2
ZJS
6# output width
7if "$1" --help | grep -v 'default:' | grep -E -q '.{80}.'; then
cc5549ca
ZJS
8 echo "$(basename "$1") --help output is too wide:"
9 "$1" --help | awk 'length > 80' | grep -E --color=yes '.{80}'
10 exit 1
005a29f2
ZJS
11fi
12
13# no --help output to stdout
14if "$1" --help 2>&1 1>/dev/null | grep .; then
cc5549ca
ZJS
15 echo "$(basename "$1") --help prints to stderr"
16 exit 2
005a29f2
ZJS
17fi
18
19# error output to stderr
20if ! "$1" --no-such-parameter 2>&1 1>/dev/null | grep -q .; then
cc5549ca
ZJS
21 echo "$(basename "$1") with an unknown parameter does not print to stderr"
22 exit 3
005a29f2 23fi