issue #477: fix 2 runner tests on Ansible 2.7.

issue510
David Wilson 6 years ago
parent 84a0424749
commit 51294db52d

@ -25,8 +25,8 @@
any_errors_fatal: true any_errors_fatal: true
tasks: tasks:
- assert: - assert:
that: | that:
out.failed and - out.failed
out.results[0].failed and - out.results[0].failed
out.results[0].msg == 'MODULE FAILURE' and - out.results[0].msg.startswith('MODULE FAILURE')
out.results[0].rc == 0 - out.results[0].rc == 0

@ -10,15 +10,15 @@
- hosts: test-targets - hosts: test-targets
any_errors_fatal: true any_errors_fatal: true
tasks: tasks:
- assert: - assert:
that: that:
- "out.failed" - "out.failed"
- "out.results[0].failed" - "out.results[0].failed"
- "out.results[0].msg == 'MODULE FAILURE'" - "out.results[0].msg.startswith('MODULE FAILURE')"
- "out.results[0].module_stdout.startswith('/bin/sh: ')" - "out.results[0].module_stdout.startswith('/bin/sh: ')"
- | - |
out.results[0].module_stdout.endswith('/custom_binary_single_null: cannot execute binary file\r\n') or out.results[0].module_stdout.endswith('/custom_binary_single_null: cannot execute binary file\r\n') or
out.results[0].module_stdout.endswith('/custom_binary_single_null: Exec format error\r\n') out.results[0].module_stdout.endswith('/custom_binary_single_null: Exec format error\r\n')
# Can't test this: Mitogen returns 126, 2.5.x returns 126, 2.4.x discarded the # Can't test this: Mitogen returns 126, 2.5.x returns 126, 2.4.x discarded the

Loading…
Cancel
Save