From fcd91c1897939aeaf9761bccb0787bdf1c891c8f Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Tue, 30 Nov 2021 08:21:33 +0100 Subject: [PATCH] test-pbio: Run it faster. This can compile and run much faster on most machines by doing things in parallel. --- test-pbio.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-pbio.sh b/test-pbio.sh index 15ab980f6..931cc71a8 100755 --- a/test-pbio.sh +++ b/test-pbio.sh @@ -11,7 +11,7 @@ SCRIPT_DIR=$(dirname "$0") export PBIO_TEST_RESULTS_DIR="${SCRIPT_DIR}/lib/pbio/test/results" rm -rf "${PBIO_TEST_RESULTS_DIR:?}"/* -make -s -C "${SCRIPT_DIR}/lib/pbio/test" +make -s -C "${SCRIPT_DIR}/lib/pbio/test" -j$(nproc) ulimit -S -c unlimited