diff options
author | Brian Coca <bcoca@users.noreply.github.com> | 2020-05-13 12:02:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 12:02:31 -0400 |
commit | 0aa76503dc706340d85f4d3f19f472880187eb14 (patch) | |
tree | ed93f9cef4c1678da55af772ad599014fe89a969 /test | |
parent | eb3e4b3a7b8dc39f90264ab6b40c72a48cc0fd59 (diff) | |
download | ansible-0aa76503dc706340d85f4d3f19f472880187eb14.tar.gz |
avoid fatal tb on bad fqcn callback name (#69440)
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/targets/collections/runme.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/targets/collections/runme.sh b/test/integration/targets/collections/runme.sh index 5a82acc4e6..5aea771bda 100755 --- a/test/integration/targets/collections/runme.sh +++ b/test/integration/targets/collections/runme.sh @@ -71,3 +71,6 @@ if [[ "$(grep -wc "dynamic_host_a" "$CACHEFILE")" -ne "0" ]]; then fi ./vars_plugin_tests.sh + +# ensure non existing callback does not crash ansible +ANSIBLE_CALLBACK_WHITELIST=charlie.gomez.notme ansible -m ping localhost |