summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/any_errors_fatal/always_block.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/any_errors_fatal/always_block.yml')
-rw-r--r--test/integration/targets/any_errors_fatal/always_block.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/integration/targets/any_errors_fatal/always_block.yml b/test/integration/targets/any_errors_fatal/always_block.yml
new file mode 100644
index 0000000..8c6fbff
--- /dev/null
+++ b/test/integration/targets/any_errors_fatal/always_block.yml
@@ -0,0 +1,27 @@
+---
+- hosts: testhost
+ gather_facts: false
+ any_errors_fatal: true
+ tasks:
+ - block:
+ - name: initial block debug
+ debug: msg='any_errors_fatal_block, i execute normally'
+
+ - name: EXPECTED FAILURE any_errors_fatal, initial block, bin/false to simulate failure
+ command: /bin/false
+
+ - name: after a task that fails I should never execute
+ debug:
+ msg: 'any_errors_fatal_block_post_fail ... i never execute, cause ERROR!'
+ rescue:
+ - name: any_errors_fatal_rescue_block debug
+ debug: msg='any_errors_fatal_rescue_block_start ... I caught an error'
+
+ - name: EXPECTED FAILURE any_errors_fatal in rescue block, using bin/false to simulate error
+ command: /bin/false
+
+ - name: any_errors_fatal post debug
+ debug: msg='any_errors_fatal_rescue_block_post_fail ... I also never execute :-('
+ always:
+ - name: any errors fatal always block debug
+ debug: msg='any_errors_fatal_always_block_start'