diff --git a/tests/integration/targets/cmd_runner/library/cmd_echo.py b/tests/integration/targets/cmd_runner/library/cmd_echo.py index ec0beb98e7..1dda75ec93 100644 --- a/tests/integration/targets/cmd_runner/library/cmd_echo.py +++ b/tests/integration/targets/cmd_runner/library/cmd_echo.py @@ -7,6 +7,8 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type +import traceback + DOCUMENTATION = "" @@ -43,15 +45,18 @@ def main(): arg_formats[arg] = func(*args) - runner = CmdRunner(module, [module.params["cmd"], '--'], arg_formats=arg_formats, path_prefix=module.params["path_prefix"]) + try: + runner = CmdRunner(module, [module.params["cmd"], '--'], arg_formats=arg_formats, path_prefix=module.params["path_prefix"]) - with runner.context(p['arg_order'], check_mode_skip=p['check_mode_skip']) as ctx: - result = ctx.run(**p['arg_values']) - info = ctx.run_info - check = "check" - rc, out, err = result if result is not None else (None, None, None) + with runner.context(p['arg_order'], check_mode_skip=p['check_mode_skip']) as ctx: + result = ctx.run(**p['arg_values']) + info = ctx.run_info + check = "check" + rc, out, err = result if result is not None else (None, None, None) - module.exit_json(rc=rc, out=out, err=err, info=info) + module.exit_json(rc=rc, out=out, err=err, info=info) + except Exception as exc: + module.fail_json(rc=1, module_stderr=traceback.format_exc(), msg="Module crashed with exception") if __name__ == '__main__':