diff options
Diffstat (limited to 'test/integration/targets/connection/test.sh')
-rwxr-xr-x | test/integration/targets/connection/test.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/targets/connection/test.sh b/test/integration/targets/connection/test.sh new file mode 100755 index 0000000000..4e7aa8dda1 --- /dev/null +++ b/test/integration/targets/connection/test.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +set -eux + +[ -f "${INVENTORY}" ] + +# Run connection tests with both the default and C locale. + + ansible-playbook test_connection.yml -i "${INVENTORY}" "$@" +LC_ALL=C LANG=C ansible-playbook test_connection.yml -i "${INVENTORY}" "$@" |