mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
dd1e33c8dc
In a few cases, the prefix was originally necessary because a different helper script was used for automake, and a different one for meson. But now we use meson exclusively, and the prefix isn't useful. This also synchronizes the target name, file name, and variable name in meson.build. The targets exposed by meson didn't have the prefix, so the user interface is unchanged. (The prefix is retained in the few tools that are used for meson itself, e.g. meosn-vcs-tag.sh, meson-make-symlink.sh, etc.)
30 lines
765 B
Bash
Executable File
30 lines
765 B
Bash
Executable File
#!/bin/sh
|
|
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
|