aboutsummaryrefslogtreecommitdiff
path: root/tools/patman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-17 18:08:58 -0600
committerSimon Glass <sjg@chromium.org>2020-04-26 14:25:21 -0600
commitc07ab6effb76e7e4c9989012a4c0413c22577326 (patch)
treefe85e88bcde9086e547f286f9fd5c78899b5c454 /tools/patman
parent4d25fe2d952dd66d0f6c3f0dfdd4303e85d65333 (diff)
downloadu-boot-c07ab6effb76e7e4c9989012a4c0413c22577326.zip
u-boot-c07ab6effb76e7e4c9989012a4c0413c22577326.tar.gz
u-boot-c07ab6effb76e7e4c9989012a4c0413c22577326.tar.bz2
binman: Rename the main module
Python does not like the module name being the same as the module directory. To allow buildman modules to be used from other tools, rename it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman')
-rw-r--r--tools/patman/test_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/test_util.py b/tools/patman/test_util.py
index 4d0085e..76dbc21 100644
--- a/tools/patman/test_util.py
+++ b/tools/patman/test_util.py
@@ -41,7 +41,7 @@ def RunTestCoverage(prog, filter_fname, exclude_list, build_dir, required=None):
glob_list = []
glob_list += exclude_list
glob_list += ['*libfdt.py', '*site-packages*', '*dist-packages*']
- test_cmd = 'test' if 'binman.py' in prog else '-t'
+ test_cmd = 'test' if 'binman' in prog else '-t'
cmd = ('PYTHONPATH=$PYTHONPATH:%s/sandbox_spl/tools %s-coverage run '
'--omit "%s" %s %s -P1' % (build_dir, PYTHON, ','.join(glob_list),
prog, test_cmd))