diff options
author | Tom Rini <trini@konsulko.com> | 2020-04-21 17:53:23 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-21 17:53:23 -0400 |
commit | 2f2031e647564be8121c05507fbec8e6c5bc0e63 (patch) | |
tree | 2ae7f0c8d7cc6fc27b654f71ac79e5ac782b4024 /tools/patman/patman.py | |
parent | bdcb29960e3a9558803632783b922f26993d219e (diff) | |
parent | b1e5e6d22478554b4bc74afd280440732ccc9422 (diff) |
Merge tag 'dm-pull-21apr20' of git://git.denx.de/u-boot-dm
Various improvements to buildman summary output
Diffstat (limited to 'tools/patman/patman.py')
-rwxr-xr-x | tools/patman/patman.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/patman.py b/tools/patman/patman.py index cf53e532ddf..7f4ac9aef48 100755 --- a/tools/patman/patman.py +++ b/tools/patman/patman.py @@ -93,7 +93,7 @@ elif options.test: suite = unittest.TestLoader().loadTestsFromTestCase(module) suite.run(result) - for module in ['gitutil', 'settings']: + for module in ['gitutil', 'settings', 'terminal']: suite = doctest.DocTestSuite(module) suite.run(result) |