summaryrefslogtreecommitdiffstats
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-04-25 15:01:21 +0100
commit597d0da6b4d64767f2bf6f40c49f4c4bd701f193 (patch)
tree161453001b0d4bbc09b853fa3029a307b7c11230
parent4498fea20564e0c6ef870d72cf4794ae5f4ca30b (diff)
downloadpoky-597d0da6b4d64767f2bf6f40c49f4c4bd701f193.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: 69ccfb9f978382f935c4d0609e09e00aab327188) 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>
-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: