Run tests in one thread is static option specified

This commit is contained in:
Nikolay Puzanov 2022-08-12 10:49:32 +03:00
parent 4f9aec3d2f
commit 52ad1bbd11

View File

@ -1101,6 +1101,6 @@
(list path) (list path)
(find-files-rec-regexp MAKEFILE_NAME_REGEXP path)))) (find-files-rec-regexp MAKEFILE_NAME_REGEXP path))))
(if (<= jobs 1) (if (or (<= jobs 1) (utest/static))
(execute-tests (collect-test-procs makefiles)) (execute-tests (collect-test-procs makefiles))
(execute-tests-parallel (collect-test-procs makefiles) jobs))))))) (execute-tests-parallel (collect-test-procs makefiles) jobs)))))))