[openssl-commits] [tools] master update

Richard Levitte levitte at openssl.org
Wed Sep 13 13:15:52 UTC 2017


The branch master has been updated
       via  fc9383a4c71378c85708541b0ac18ea296f95cf9 (commit)
      from  76acfcbc4c7798a29000208b888fbcf5e73c28db (commit)


- Log -----------------------------------------------------------------
commit fc9383a4c71378c85708541b0ac18ea296f95cf9
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Sep 13 15:15:32 2017 +0200

    Allow run-checker to run 4 parallel jobs
    
    The VM running this has 4 CPUs

-----------------------------------------------------------------------

Summary of changes:
 run-checker/run-checker.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/run-checker/run-checker.sh b/run-checker/run-checker.sh
index 66d7f99..23121b1 100755
--- a/run-checker/run-checker.sh
+++ b/run-checker/run-checker.sh
@@ -140,8 +140,8 @@ if run-hook prepare; then
                 echo "  make depend"
                 log-eval make depend >>build.log 2>&1 || exit $?
 
-                echo "  make"
-                log-eval LDCMD=$ldcmd make >>build.log 2>&1 || exit $?
+                echo "  make -j4"
+                log-eval LDCMD=$ldcmd make -j4 >>build.log 2>&1 || exit $?
 
                 # Because 'make test' may hang under certain circumstances,
                 # we have a timeout mechanism around it.


More information about the openssl-commits mailing list