diff options
author | Martin Krizek <martin.krizek@gmail.com> | 2023-10-25 09:42:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 09:42:13 +0200 |
commit | fe94a99aa291d129aa6432e5d50e7117d9c6aae3 (patch) | |
tree | fb3101b574eec8099975889d8f6a567f07f94386 /test/integration/targets/handlers/runme.sh | |
parent | Remove obsolete requirements from prepare_http_tests (diff) | |
download | ansible-fe94a99aa291d129aa6432e5d50e7117d9c6aae3.tar.xz ansible-fe94a99aa291d129aa6432e5d50e7117d9c6aae3.zip |
any_errors_fatal fixes (#78680)
Fixes #31543
Fixes #36308
Fixes #73246
Fixes #80981
Fixes #81533
ci_complete
Diffstat (limited to 'test/integration/targets/handlers/runme.sh')
-rwxr-xr-x | test/integration/targets/handlers/runme.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/targets/handlers/runme.sh b/test/integration/targets/handlers/runme.sh index 757200de38..e26fdd7a1b 100755 --- a/test/integration/targets/handlers/runme.sh +++ b/test/integration/targets/handlers/runme.sh @@ -198,3 +198,11 @@ ansible-playbook test_include_tasks_in_include_role.yml "$@" 2>&1 | tee out.txt ansible-playbook test_run_once.yml -i inventory.handlers "$@" 2>&1 | tee out.txt [ "$(grep out.txt -ce 'handler ran once')" = "1" ] + +ansible-playbook force_handlers_blocks_81533-1.yml -i inventory.handlers "$@" 2>&1 | tee out.txt +[ "$(grep out.txt -ce 'task1')" = "1" ] +[ "$(grep out.txt -ce 'task2')" = "1" ] +[ "$(grep out.txt -ce 'hosts_left')" = "1" ] + +ansible-playbook force_handlers_blocks_81533-2.yml -i inventory.handlers "$@" 2>&1 | tee out.txt +[ "$(grep out.txt -ce 'hosts_left')" = "1" ] |