Git 2.45
[git/gitster.git] / t / lib-bash.sh
blobb0b6060929cefc66122628123e61f6a9c620dc05
1 # Shell library sourced instead of ./test-lib.sh by tests that need
2 # to run under Bash; primarily intended for tests of the completion
3 # script.
5 if test -n "$BASH" && test -z "$POSIXLY_CORRECT"
6 then
7 # we are in full-on bash mode
8 true
9 elif type bash >/dev/null 2>&1
10 then
11 # execute in full-on bash mode
12 unset POSIXLY_CORRECT
13 exec bash "$0" "$@"
14 else
15 echo '1..0 #SKIP skipping bash completion tests; bash not available'
16 exit 0
19 . ./test-lib.sh