From 52ad1bbd111e6cde5f934c44f23dc7a18339a4b1 Mon Sep 17 00:00:00 2001 From: Nikolay Puzanov Date: Fri, 12 Aug 2022 10:49:32 +0300 Subject: [PATCH] Run tests in one thread is static option specified --- utest.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utest.scm b/utest.scm index 2a49096..76eaa55 100755 --- a/utest.scm +++ b/utest.scm @@ -1101,6 +1101,6 @@ (list 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-parallel (collect-test-procs makefiles) jobs)))))))