From d2c009f70fee2a8daab0912c4da9f67d787dd213 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Mon, 2 Apr 2018 08:33:52 +0100 Subject: [PATCH] "examples": rename regtest.py -> compare_output_test.py Incomplete, but getting better all the time. --- .../{regtest.py => compare_output_test.py} | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) rename examples/playbook/{regtest.py => compare_output_test.py} (79%) mode change 100644 => 100755 diff --git a/examples/playbook/regtest.py b/examples/playbook/compare_output_test.py old mode 100644 new mode 100755 similarity index 79% rename from examples/playbook/regtest.py rename to examples/playbook/compare_output_test.py index 15fc9e3c..1ad2f01f --- a/examples/playbook/regtest.py +++ b/examples/playbook/compare_output_test.py @@ -10,15 +10,14 @@ import tempfile LOG = logging.getLogger(__name__) suffixes = [ - '-m bin_bash_module', - '-m binary_producing_json', - '-m binary_producing_junk', - '-m old_style_module', - '-m python_new_style_module', - '-m python_want_json_module', - '-m single_null_binary', - '-m want_json_module', - '-m json_args_python', + '-m custom_bash_old_style_module', + '-m custom_bash_want_json_module', + '-m custom_binary_producing_json', + '-m custom_binary_producing_junk', + '-m custom_binary_single_null', + '-m custom_python_json_args_module', + '-m custom_python_new_style_module', + '-m custom_python_want_json_module', '-m setup', ]