Make opensslbuild faster by adding -j4 option to 'make test'
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>
Sat, 6 Jun 2020 18:27:02 +0000 (20:27 +0200)
committerTomas Mraz <tmraz@fedoraproject.org>
Tue, 23 Jun 2020 10:36:42 +0000 (12:36 +0200)
review-tools/opensslbuild

index e9abfb36018c23889c026423426df08fffde7771..dcb8e62b8d46bced3686bf52026bd0452f552717 100755 (executable)
@@ -46,11 +46,11 @@ grep -q doc-nits Makefile && make doc-nits
 s=$?
 test $configonly = yes && exit $s
 
-echo Making
+echo Making build
 make -s -j20
 make -s -j20 build_tests >/dev/null
 s=$?
 test $execonly = yes && exit $s
 
 echo Making test
-make test
+make -j4 test