SZEDER Gábor wrote: > --- a/t/t9902-completion.sh > +++ b/t/t9902-completion.sh > @@ -3,21 +3,9 @@ > # Copyright (c) 2012 Felipe Contreras > # > > -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_description='test bash completion' > > -. ./test-lib.sh > +. ./lib-completion.sh If I understand correctly, this sources lib-completion immediately instead of following the usual pattern of . ./test-lib.sh . "$TEST_DIRECTORY/lib-completion.sh" to get the self-execing over with ASAP. "$0" always refers to the original shell script and not the file being sourced so this should be safe. Looks good. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html