summaryrefslogtreecommitdiff
path: root/test/integration/roles/test_task_ordering/tasks/taskorder-include.yml
diff options
context:
space:
mode:
authornitzmahone <mdavis@ansible.com>2016-06-23 17:52:49 -0700
committernitzmahone <mdavis@ansible.com>2016-06-23 17:53:08 -0700
commit1f92ade584fd86a0bbf49179888414c542a6371d (patch)
tree9e90ac6addce752f1dae6d8d9168144ad2368a8c /test/integration/roles/test_task_ordering/tasks/taskorder-include.yml
parent32b605f603eff30b6b89722c4c97e8e77f700d40 (diff)
downloadansible-1f92ade584fd86a0bbf49179888414c542a6371d.tar.gz
add integration test to assert included tasks run in proper order
Diffstat (limited to 'test/integration/roles/test_task_ordering/tasks/taskorder-include.yml')
-rw-r--r--test/integration/roles/test_task_ordering/tasks/taskorder-include.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/roles/test_task_ordering/tasks/taskorder-include.yml b/test/integration/roles/test_task_ordering/tasks/taskorder-include.yml
new file mode 100644
index 0000000000..4e64b7e927
--- /dev/null
+++ b/test/integration/roles/test_task_ordering/tasks/taskorder-include.yml
@@ -0,0 +1,10 @@
+# This test ensures that included tasks are run in order.
+# There have been regressions where included tasks and
+# nested blocks ran out of order...
+
+- shell: printf one.{{ item }}. >> {{ temppath.stdout }}
+- block:
+ - shell: printf two.{{ item }}. >> {{ temppath.stdout }}
+ - block:
+ - shell: printf three.{{ item }}. >> {{ temppath.stdout }}
+- shell: printf four.{{ item }}. >> {{ temppath.stdout }}