]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
qconfig: Move arg checking to the top of main()
authorSimon Glass <sjg@chromium.org>
Wed, 17 Jul 2024 15:56:57 +0000 (16:56 +0100)
committerSimon Glass <sjg@chromium.org>
Fri, 26 Jul 2024 14:01:06 +0000 (08:01 -0600)
Check for 'test' as one of the possible operations for this tool,
moving the check above the implementation.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/qconfig.py

index 6d263ce30db2f5520f7152587e32d87b5e5576f9..9052aedf57d04c0e331b88dda7095065e24ae4fb 100755 (executable)
@@ -1524,6 +1524,10 @@ doc/develop/moveconfig.rst for documentation.'''
 def main():
     """Main program"""
     parser, args = parse_args()
+    if not any((args.force_sync, args.build_db, args.imply, args.find,
+                args.scan_source, args.test)):
+        parser.print_usage()
+        sys.exit(1)
     if args.test:
         sys.argv = [sys.argv[0]]
         fail, _ = doctest.testmod()
@@ -1534,11 +1538,6 @@ def main():
     col = terminal.Color(terminal.COLOR_NEVER if args.nocolour
                          else terminal.COLOR_IF_TERMINAL)
 
-    if not any((args.force_sync, args.build_db, args.imply, args.find,
-                args.scan_source)):
-        parser.print_usage()
-        sys.exit(1)
-
     if args.scan_source:
         do_scan_source(os.getcwd(), args.update)
         return 0