[tools] master update
Richard Levitte
levitte at openssl.org
Tue Nov 17 13:04:44 UTC 2020
The branch master has been updated
via 0cce4862d4ea91d81b6ebcfdc3106d1331f2f291 (commit)
from cbcbecab06afa0d3189153d0189556a494ec7397 (commit)
- Log -----------------------------------------------------------------
commit 0cce4862d4ea91d81b6ebcfdc3106d1331f2f291
Author: Nicola Tuveri <nic.tuv at gmail.com>
Date: Thu Jul 2 17:25:56 2020 +0300
[run-checker]: default to 4 parallel test jobs
<https://github.com/openssl/openssl/pull/12326> added support for
running the tests in parallel. The default is still to run them
sequentially.
This alters run-checker so that it defaults to 4 test jobs in parallel,
which seems a safe assumption given we are already using 4 building
jobs.
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/tools/pull/71)
-----------------------------------------------------------------------
Summary of changes:
run-checker/run-checker.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/run-checker/run-checker.sh b/run-checker/run-checker.sh
index 2617914..643128d 100755
--- a/run-checker/run-checker.sh
+++ b/run-checker/run-checker.sh
@@ -185,8 +185,9 @@ if run-hook prepare; then
rkill SIGKILL $testpid $BASHPID
) 2> /dev/null &
+ # If not set to another value, default to 4 test jobs
echo " make test"
- OPENSSL_GOST_ENGINE_SO="$gost_engine" log-exec make test>>build.log 2>&1
+ HARNESS_JOBS=${HARNESS_JOBS:-4} OPENSSL_GOST_ENGINE_SO="$gost_engine" log-exec make test >>build.log 2>&1
)
); then
echo " PASS"
More information about the openssl-commits
mailing list