diff options
Diffstat (limited to 'scripts/resulttool')
-rwxr-xr-x | scripts/resulttool | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/resulttool b/scripts/resulttool index fc282bda6c..66a6af9959 100755 --- a/scripts/resulttool +++ b/scripts/resulttool | |||
@@ -15,6 +15,9 @@ | |||
15 | # To report test report, execute the below | 15 | # To report test report, execute the below |
16 | # $ resulttool report <source_dir> | 16 | # $ resulttool report <source_dir> |
17 | # | 17 | # |
18 | # To create a unit test report in JUnit XML format, execute the below | ||
19 | # $ resulttool junit <json_file> | ||
20 | # | ||
18 | # To perform regression file analysis, execute the below | 21 | # To perform regression file analysis, execute the below |
19 | # $ resulttool regression-file <base_result_file> <target_result_file> | 22 | # $ resulttool regression-file <base_result_file> <target_result_file> |
20 | # | 23 | # |
@@ -43,6 +46,7 @@ import resulttool.regression | |||
43 | import resulttool.report | 46 | import resulttool.report |
44 | import resulttool.manualexecution | 47 | import resulttool.manualexecution |
45 | import resulttool.log | 48 | import resulttool.log |
49 | import resulttool.junit | ||
46 | logger = scriptutils.logger_create('resulttool') | 50 | logger = scriptutils.logger_create('resulttool') |
47 | 51 | ||
48 | def main(): | 52 | def main(): |
@@ -61,6 +65,7 @@ def main(): | |||
61 | resulttool.regression.register_commands(subparsers) | 65 | resulttool.regression.register_commands(subparsers) |
62 | resulttool.report.register_commands(subparsers) | 66 | resulttool.report.register_commands(subparsers) |
63 | resulttool.log.register_commands(subparsers) | 67 | resulttool.log.register_commands(subparsers) |
68 | resulttool.junit.register_commands(subparsers) | ||
64 | 69 | ||
65 | args = parser.parse_args() | 70 | args = parser.parse_args() |
66 | if args.debug: | 71 | if args.debug: |