summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
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: