summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorYeoh Ee Peng <ee.peng.yeoh@intel.com>2019-04-02 14:38:03 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-22 00:31:48 +0100
commit08230d15a8ad4829e80e88d5a9e3d3cd96fee0fb (patch)
tree757626d51d2491a20be1a42bbbc6c4c2b4bdcbe5 /scripts
parent032c2e5deb38e455dbccb70450d29b45d0d1a6e4 (diff)
downloadpoky-08230d15a8ad4829e80e88d5a9e3d3cd96fee0fb.tar.gz
resulttool: Enable report for single result file
Current validation check function inside resulttool disallow the report for single result file although the underlying library was able to handle both directory and file as source input to report. Removed the validation check as it was no longer needed and to enable report for single result file. (From OE-Core rev: dc15a21cbb3090dfb56e78f622486f843be4f54a) Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/resulttool10
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/resulttool b/scripts/resulttool
index 5a89e1c9be..18ac101923 100755
--- a/scripts/resulttool
+++ b/scripts/resulttool
@@ -51,13 +51,6 @@ import resulttool.report
51import resulttool.manualexecution 51import resulttool.manualexecution
52logger = scriptutils.logger_create('resulttool') 52logger = scriptutils.logger_create('resulttool')
53 53
54def _validate_user_input_arguments(args):
55 if hasattr(args, "source_dir"):
56 if not os.path.isdir(args.source_dir):
57 logger.error('source_dir argument need to be a directory : %s' % args.source_dir)
58 return False
59 return True
60
61def main(): 54def main():
62 parser = argparse_oe.ArgumentParser(description="OEQA test result manipulation tool.", 55 parser = argparse_oe.ArgumentParser(description="OEQA test result manipulation tool.",
63 epilog="Use %(prog)s <subcommand> --help to get help on a specific command") 56 epilog="Use %(prog)s <subcommand> --help to get help on a specific command")
@@ -80,9 +73,6 @@ def main():
80 elif args.quiet: 73 elif args.quiet:
81 logger.setLevel(logging.ERROR) 74 logger.setLevel(logging.ERROR)
82 75
83 if not _validate_user_input_arguments(args):
84 return -1
85
86 try: 76 try:
87 ret = args.func(args, logger) 77 ret = args.func(args, logger)
88 except argparse_oe.ArgumentUsageError as ae: 78 except argparse_oe.ArgumentUsageError as ae: