From 5ec6074f0633939fd17d94111d10c6c6b062978c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 11:49:36 +0200 Subject: Adding upstream version 1:2.30.2. Signed-off-by: Daniel Baumann --- t/lib-bash.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 t/lib-bash.sh (limited to 't/lib-bash.sh') diff --git a/t/lib-bash.sh b/t/lib-bash.sh new file mode 100644 index 0000000..b0b6060 --- /dev/null +++ b/t/lib-bash.sh @@ -0,0 +1,19 @@ +# Shell library sourced instead of ./test-lib.sh by tests that need +# to run under Bash; primarily intended for tests of the completion +# script. + +if test -n "$BASH" && test -z "$POSIXLY_CORRECT" +then + # we are in full-on bash mode + true +elif type bash >/dev/null 2>&1 +then + # execute in full-on bash mode + unset POSIXLY_CORRECT + exec bash "$0" "$@" +else + echo '1..0 #SKIP skipping bash completion tests; bash not available' + exit 0 +fi + +. ./test-lib.sh -- cgit v1.2.3