summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2017-09-13 01:43:06 -0700
committerJan Vorlicek <janvorli@microsoft.com>2017-09-13 10:43:06 +0200
commit80dd47bb5564f1cfc843c8d753096a0a3acfbe2d (patch)
treede2a4f1d75705b7bf2173e2158f8131af5a5aae8 /tests/runtest.sh
parent5eac91c7101aeb02abe390935c35342432570323 (diff)
downloadcoreclr-80dd47bb5564f1cfc843c8d753096a0a3acfbe2d.tar.gz
coreclr-80dd47bb5564f1cfc843c8d753096a0a3acfbe2d.tar.bz2
coreclr-80dd47bb5564f1cfc843c8d753096a0a3acfbe2d.zip
Change how numProc is derived on Linux (#13909)
Before the decision for numProcs to run in parallel for runtests.sh was based on _NPROCESSORS_ONLN which harware which attempts to save power (eg arm(64)) this number may be < numProcs.
Diffstat (limited to 'tests/runtest.sh')
-rwxr-xr-xtests/runtest.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index fdc067eb2d..e238723743 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -733,8 +733,10 @@ function run_test {
# Variables for running tests in the background
if [ `uname` = "NetBSD" ]; then
NumProc=$(getconf NPROCESSORS_ONLN)
-else
+elif [ `uname` = "Darwin" ]; then
NumProc=$(getconf _NPROCESSORS_ONLN)
+else
+ NumProc=$(nproc --all)
fi
((maxProcesses = $NumProc * 3 / 2)) # long tests delay process creation, use a few more processors