]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
buildman: Convert camel case in cmdline.py
authorSimon Glass <sjg@chromium.org>
Wed, 19 Jul 2023 23:49:01 +0000 (17:49 -0600)
committerSimon Glass <sjg@chromium.org>
Mon, 24 Jul 2023 15:34:11 +0000 (09:34 -0600)
Convert this file to snake case and update all files which use it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/buildman/cmdline.py
tools/buildman/func_test.py
tools/buildman/main.py

index 7918195bcb38c92faa7af798bdd22e7bea119442..503c48d769ff231b046d38a3d734b57f20c929a8 100644 (file)
@@ -9,7 +9,7 @@ import pathlib
 BUILDMAN_DIR = pathlib.Path(__file__).parent
 HAS_TESTS = os.path.exists(BUILDMAN_DIR / "test.py")
 
-def ParseArgs():
+def parse_args():
     """Parse command line arguments from sys.argv[]
 
     Returns:
index bd7db1e9c1fba13dde6ad4e8db6c88568a494a38..6b6afe7d1c0badb026767ec038cc81f906dfbc18 100644 (file)
@@ -252,7 +252,7 @@ class TestFunctional(unittest.TestCase):
             result code from buildman
         """
         sys.argv = [sys.argv[0]] + list(args)
-        options, args = cmdline.ParseArgs()
+        options, args = cmdline.parse_args()
         if brds == False:
             brds = self._boards
         result = control.do_buildman(
index 9a1d59964ea9db4b61d3fa01c72703f08dd2a363..70ab9a482ee192f81b13a80231d98e7bd8864471 100755 (executable)
@@ -60,7 +60,7 @@ def run_buildman():
     This is the main program. It collects arguments and runs either the tests or
     the control module.
     """
-    options, args = cmdline.ParseArgs()
+    options, args = cmdline.parse_args()
 
     if not options.debug:
         sys.tracebacklimit = 0