dtoc: Tidy up fdt_tests RunTestCoverage() args
authorSimon Glass <sjg@chromium.org>
Sun, 31 Jul 2022 02:57:05 +0000 (20:57 -0600)
committerSimon Glass <sjg@chromium.org>
Tue, 9 Aug 2022 17:55:41 +0000 (11:55 -0600)
Pass the options args in rather than using the global various. Use snake
case and fix up comments to make pylint happy.

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

index 3baf443..ec25755 100755 (executable)
@@ -768,10 +768,14 @@ class TestFdtUtil(unittest.TestCase):
             tools.outdir= old_outdir
 
 
-def RunTestCoverage():
-    """Run the tests and check that we get 100% coverage"""
+def run_test_coverage(build_dir):
+    """Run the tests and check that we get 100% coverage
+
+    Args:
+        build_dir (str): Directory containing the build output
+    """
     test_util.run_test_coverage('tools/dtoc/test_fdt.py', None,
-            ['tools/patman/*.py', '*test_fdt.py'], options.build_dir)
+            ['tools/patman/*.py', '*test_fdt.py'], build_dir)
 
 
 def RunTests(args):
@@ -811,4 +815,4 @@ if options.test:
     ret_code = RunTests(args)
     sys.exit(ret_code)
 elif options.test_coverage:
-    RunTestCoverage()
+    run_test_coverage(options.build_dir)