Skip to content

Commit cd803ff

Browse files
committed
Increased timeout of tests.
1 parent 4d90d34 commit cd803ff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ if(OPTION_TEST_MEMORYCHECK AND NOT (OPTION_BUILD_ADDRESS_SANITIZER OR OPTION_BUI
8585
--label-exclude MEMCHECK_IGNORE
8686
--force-new-ctest-process
8787
--test-action memcheck
88-
--timeout 5400
88+
--timeout 7200
8989
COMMAND ${CMAKE_COMMAND} -E cat "${CMAKE_BINARY_DIR}/Testing/Temporary/MemoryChecker.*.log"
9090
)
9191
endif()

tools/metacall-build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function Sub-Build {
7878
# Tests (coverage needs to run the tests)
7979
if (($BUILD_TESTS -eq 1) -or ($BUILD_BENCHMARKS -eq 1) -or ($BUILD_COVERAGE -eq 1)) {
8080
echo "Running the tests..."
81-
ctest "-j$((Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors)" --timeout 5400 --output-on-failure -C $BUILD_TYPE
81+
ctest "-j$((Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors)" --timeout 7200 --output-on-failure -C $BUILD_TYPE
8282

8383
if (-not $?) {
8484
$RecentExitCode = $LASTEXITCODE

tools/metacall-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ sub_build() {
7575

7676
# Tests (coverage needs to run the tests)
7777
if [ $BUILD_TESTS = 1 ] || [ $BUILD_BENCHMARKS=1 ] || [ $BUILD_COVERAGE = 1 ]; then
78-
ctest -j$(getconf _NPROCESSORS_ONLN) --timeout 5400 --output-on-failure --test-output-size-failed 3221000000 -C $BUILD_TYPE
78+
ctest -j$(getconf _NPROCESSORS_ONLN) --timeout 7200 --output-on-failure --test-output-size-failed 3221000000 -C $BUILD_TYPE
7979
fi
8080

8181
# Coverage

0 commit comments

Comments
 (0)