From 5d3b1fa4d0b9259d1707b0269bbcb66a2d6d8473 Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Thu, 25 Feb 2021 23:59:44 +0000 Subject: [PATCH] Temporarily disabling multiprocess unit tests --- .jenkins/common.groovy | 1 - install.sh | 2 -- 2 files changed, 3 deletions(-) diff --git a/.jenkins/common.groovy b/.jenkins/common.groovy index 037c63a0c0..dcc77c3273 100644 --- a/.jenkins/common.groovy +++ b/.jenkins/common.groovy @@ -22,7 +22,6 @@ def runTestCommand (platform, project) set -x cd ${project.paths.project_build_prefix}/build/release/test ${sudo} NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTests --gtest_filter="BroadcastCorrectnessSweep*:*float32*" --gtest_output=xml --gtest_color=yes - ${sudo} NCCL_DEBUG=INFO HSA_FORCE_FINE_GRAIN_PCIE=1 ./UnitTestsMultiProcess --gtest_filter="BroadcastMultiProcessCorrectnessSweep*:*float32*" --gtest_output=xml --gtest_color=yes """ platform.runCommand(this, command) diff --git a/install.sh b/install.sh index 40946b4612..62a22f43cf 100755 --- a/install.sh +++ b/install.sh @@ -199,10 +199,8 @@ if ($run_tests); then if (test -f "./test/UnitTests"); then if ($run_tests_all); then ./test/UnitTests - ./test/UnitTestsMultiProcess else ./test/UnitTests --gtest_filter="BroadcastCorrectnessSweep*:*float32*" - ./test/UnitTestsMultiProcess --gtest_filter="BroadcastMultiProcessCorrectnessSweep*:*float32*" fi else echo "Unit tests have not been built yet; please re-run script with -t to build unit tests."