projects
/
platform
/
upstream
/
libinput.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f6e6c1
)
tools: honor FDO_CI_CONCURRENT in the tools option parser
author
Peter Hutterer
<peter.hutterer@who-t.net>
Sun, 19 Mar 2023 23:18:30 +0000
(09:18 +1000)
committer
Jihoon Kim
<jihoon48.kim@samsung.com>
Mon, 4 Dec 2023 10:21:12 +0000
(19:21 +0900)
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
tools/test_tool_option_parsing.py
patch
|
blob
|
history
diff --git
a/tools/test_tool_option_parsing.py
b/tools/test_tool_option_parsing.py
index 5c33db6d9bb54ce8df9ba977b68b85fd3573225a..c11489483f4f20d0a01ef94436489087ca4c9ade 100755
(executable)
--- a/
tools/test_tool_option_parsing.py
+++ b/
tools/test_tool_option_parsing.py
@@
-368,7
+368,8
@@
def main():
try:
import xdist # noqa
- args += ["-n", "auto"]
+ ncores = os.environ.get("FDO_CI_CONCURRENT", "auto")
+ args += ["-n", ncores]
except ImportError:
logger.info("python-xdist missing, this test will be slow")
pass