aboutsummaryrefslogtreecommitdiff
path: root/tools/patman/test_util.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-23 18:18:03 -0700
committerSimon Glass <sjg@chromium.org>2023-03-08 11:40:49 -0800
commit00290d6a5bdf41dc610d89d763fcb48936285600 (patch)
treef08a7debf09f191d8b361af041a2e627a690095a /tools/patman/test_util.py
parent6811fea7051d1111c29a83561f967c22d426b0ad (diff)
downloadu-boot-00290d6a5bdf41dc610d89d763fcb48936285600.zip
u-boot-00290d6a5bdf41dc610d89d763fcb48936285600.tar.gz
u-boot-00290d6a5bdf41dc610d89d763fcb48936285600.tar.bz2
Remove concurrencytest
While our version is better, it is tricky to use it when we are trying to package things with pip. Drop it. Somewhat reduced functionality is provided by the upstream version[1], along with a rather annoying message each time it is used[2] [3]. [1] pip install concurrencytest [2] https://github.com/cgoldberg/concurrencytest/issues/12 [3] https://github.com/cgoldberg/concurrencytest/pull/14 Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/test_util.py')
-rw-r--r--tools/patman/test_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patman/test_util.py b/tools/patman/test_util.py
index 4ee58f9..9e0811b 100644
--- a/tools/patman/test_util.py
+++ b/tools/patman/test_util.py
@@ -17,8 +17,8 @@ from io import StringIO
use_concurrent = True
try:
- from concurrencytest.concurrencytest import ConcurrentTestSuite
- from concurrencytest.concurrencytest import fork_for_tests
+ from concurrencytest import ConcurrentTestSuite
+ from concurrencytest import fork_for_tests
except:
use_concurrent = False