aboutsummaryrefslogtreecommitdiff
path: root/tools/dtoc
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-23 18:18:14 -0700
committerSimon Glass <sjg@chromium.org>2023-03-08 11:40:49 -0800
commitab9272b8042db7e3f26b495635c20cbbe439ce42 (patch)
treeb5eec4c1879dde32b23023329ae1a05909623846 /tools/dtoc
parent0de2ffe717766c16f66775abf95d623f15489e83 (diff)
downloadu-boot-ab9272b8042db7e3f26b495635c20cbbe439ce42.zip
u-boot-ab9272b8042db7e3f26b495635c20cbbe439ce42.tar.gz
u-boot-ab9272b8042db7e3f26b495635c20cbbe439ce42.tar.bz2
dtoc: Hide the test options unless test code is available
It doesn't make much sense to expose tests when dtoc is running outside of the U-Boot git checkout. Hide the option in this case. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc')
-rwxr-xr-xtools/dtoc/main.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/tools/dtoc/main.py b/tools/dtoc/main.py
index fc9207d..9152166 100755
--- a/tools/dtoc/main.py
+++ b/tools/dtoc/main.py
@@ -23,6 +23,7 @@ see doc/driver-model/of-plat.rst
from argparse import ArgumentParser
import os
+import pathlib
import sys
# Bring in the patman libraries
@@ -37,6 +38,9 @@ sys.path.insert(0, os.path.join(our_path,
from dtoc import dtb_platdata
from u_boot_pylib import test_util
+DTOC_DIR = pathlib.Path(__file__).parent
+HAVE_TESTS = (DTOC_DIR / 'test_dtoc.py').exists()
+
def run_tests(processes, args):
"""Run all the test we have for dtoc
@@ -93,19 +97,22 @@ parser.add_argument('-p', '--phase', type=str,
help='set phase of U-Boot this invocation is for (spl/tpl)')
parser.add_argument('-P', '--processes', type=int,
help='set number of processes to use for running tests')
-parser.add_argument('-t', '--test', action='store_true', dest='test',
- default=False, help='run tests')
-parser.add_argument('-T', '--test-coverage', action='store_true',
- default=False, help='run tests and check for 100%% coverage')
+if HAVE_TESTS:
+ parser.add_argument('-t', '--test', action='store_true', dest='test',
+ default=False, help='run tests')
+ parser.add_argument(
+ '-T', '--test-coverage', action='store_true',
+ default=False, help='run tests and check for 100%% coverage')
+
parser.add_argument('files', nargs='*')
args = parser.parse_args()
# Run our meagre tests
-if args.test:
+if HAVE_TESTS and args.test:
ret_code = run_tests(args.processes, args)
sys.exit(ret_code)
-elif args.test_coverage:
+elif HAVE_TESTS and args.test_coverage:
RunTestCoverage()
else: