diff options
author | Miikka Koistinen <miikka.koistinen@nokia.com> | 2018-05-30 10:09:34 +0300 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2018-06-06 10:06:33 +0000 |
commit | b37fe7b72a6b6b2ba63eb4f8761c91975344a14e (patch) | |
tree | 3af1db33c7b626d8f9b828ea84d9e3c482717d53 | |
parent | 57c30b969c57843f6200ef6614d776954c305150 (diff) |
Make exit status a constant in run.py
JIRA: DOVETAIL-625
Change-Id: Ib96e6e39bad708f495af97ed43884909e394da10
Signed-off-by: Miikka Koistinen <miikka.koistinen@nokia.com>
-rwxr-xr-x | dovetail/run.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dovetail/run.py b/dovetail/run.py index 348c3915..25e00626 100755 --- a/dovetail/run.py +++ b/dovetail/run.py @@ -85,12 +85,12 @@ def validate_input(input_dict, check_dict, logger): logger.error("The input option 'functest_tag' can't be '{}', " "valid values are {}.".format(func_tag, valid_functest_tags)) - raise SystemExit(1) + raise SystemExit(EXIT_RUN_FAILED) if yard_tag is not None and yard_tag not in valid_yardstick_tags: logger.error("The input option 'yardstick_tag' can't be '{}', " "valid values are {}.".format(yard_tag, valid_yardstick_tags)) - raise SystemExit(1) + raise SystemExit(EXIT_RUN_FAILED) # if bott_tag is not None and bott_tag not in valid_tag: # logger.error("The input option 'bott_tag' can't be {}, " # "valid values are {}.".format(bott_tag, valid_tag)) @@ -123,7 +123,7 @@ def filter_config(input_dict, logger): break except KeyError as e: logger.exception('KeyError {}.'.format(e)) - raise SystemExit(1) + raise SystemExit(EXIT_RUN_FAILED) if not configs: return None return configs @@ -155,7 +155,7 @@ def clean_results_dir(): dt_utils.exec_cmd(cmd, exit_on_error=False, exec_msg_on=False) else: print "result_dir in dovetail_config.yml is not a directory." - raise SystemExit(1) + raise SystemExit(EXIT_RUN_FAILED) def get_result_path(): |