From: Daan De Meyer Date: Thu, 9 Jan 2025 14:45:41 +0000 (+0100) Subject: fmf: Use one fewer than number of available CPUs again X-Git-Tag: v258-rc1~1648^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F35939%2Fhead;p=thirdparty%2Fsystemd.git fmf: Use one fewer than number of available CPUs again This effectively reverts b8582198ca1e6fe390f7169e623a9130b68a6b36 as I can not get the testing farm bare metal machines working downstream and even if I managed to, without also using the testing farm bare metal machines upstream (for which there is no capacity), the setup would very quickly bitrot anyway so we'll just run the container based tests for now. --- diff --git a/test/fmf/integration-tests/test.sh b/test/fmf/integration-tests/test.sh index 9ba1990b211..d1e43b1d7db 100755 --- a/test/fmf/integration-tests/test.sh +++ b/test/fmf/integration-tests/test.sh @@ -112,13 +112,6 @@ if [[ ! -e /dev/kvm ]]; then export TEST_NO_QEMU=1 fi -NPROC=$(nproc) -if [[ $NPROC -ge 10 ]]; then - NPROC=$((NPROC / 2)) -else - NPROC=$((NPROC - 1)) -fi - # Create missing mountpoint for mkosi sandbox. mkdir -p /etc/pacman.d/gnupg @@ -134,7 +127,7 @@ mkosi -f sandbox \ --suite integration-tests \ --print-errorlogs \ --no-stdsplit \ - --num-processes "$NPROC" && EC=0 || EC=$? + --num-processes "$(($(nproc) - 1))" && EC=0 || EC=$? find build/meson-logs -type f -exec mv {} "$TMT_TEST_DATA" \; find build/test/journal -type f -exec mv {} "$TMT_TEST_DATA" \;