diff options
Diffstat (limited to 'scripts/resulttool')
-rwxr-xr-x | scripts/resulttool | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/resulttool b/scripts/resulttool index 13430e192a..5a89e1c9be 100755 --- a/scripts/resulttool +++ b/scripts/resulttool | |||
@@ -1,11 +1,12 @@ | |||
1 | #!/usr/bin/env python3 | 1 | #!/usr/bin/env python3 |
2 | # | 2 | # |
3 | # test results tool - tool for testresults.json (merge test results, regression analysis) | 3 | # test results tool - tool for manipulating OEQA test result json files |
4 | # (merge results, summarise results, regression analysis, generate manual test results file) | ||
4 | # | 5 | # |
5 | # To look for help information. | 6 | # To look for help information. |
6 | # $ resulttool | 7 | # $ resulttool |
7 | # | 8 | # |
8 | # To store test result from oeqa automated tests, execute the below | 9 | # To store test results from oeqa automated tests, execute the below |
9 | # $ resulttool store <source_dir> <git_branch> | 10 | # $ resulttool store <source_dir> <git_branch> |
10 | # | 11 | # |
11 | # To merge test results, execute the below | 12 | # To merge test results, execute the below |
@@ -58,7 +59,7 @@ def _validate_user_input_arguments(args): | |||
58 | return True | 59 | return True |
59 | 60 | ||
60 | def main(): | 61 | def main(): |
61 | parser = argparse_oe.ArgumentParser(description="OpenEmbedded test results tool.", | 62 | parser = argparse_oe.ArgumentParser(description="OEQA test result manipulation tool.", |
62 | epilog="Use %(prog)s <subcommand> --help to get help on a specific command") | 63 | epilog="Use %(prog)s <subcommand> --help to get help on a specific command") |
63 | parser.add_argument('-d', '--debug', help='enable debug output', action='store_true') | 64 | parser.add_argument('-d', '--debug', help='enable debug output', action='store_true') |
64 | parser.add_argument('-q', '--quiet', help='print only errors', action='store_true') | 65 | parser.add_argument('-q', '--quiet', help='print only errors', action='store_true') |