Skip to content

Commit

Permalink
increase test timeout to 30 min
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Jan 12, 2024
1 parent 1148763 commit 77b2a89
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assembly/native/build-macos-shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,5 @@ fi
if [ "$with_tests" = true ]; then
cd build
# ctest --output-on-failure -E "test-catchain|test-actors"
ctest --output-on-failure --timeout 900
ctest --output-on-failure --timeout 1800
fi
2 changes: 1 addition & 1 deletion assembly/native/build-ubuntu-shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,5 @@ fi
if [ "$with_tests" = true ]; then
cd build
# ctest --output-on-failure -E "test-catchain|test-actors|test-smartcont|test-adnl|test-validator-session-state|test-dht|test-rldp"
ctest --output-on-failure --timeout 900
ctest --output-on-failure --timeout 1800
fi
2 changes: 1 addition & 1 deletion assembly/native/build-windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ IF errorlevel 1 (
IF "%1"=="-t" (
echo Running tests...
REM ctest -C Release --output-on-failure -E "test-catchain|test-actors|test-validator-session-state"
ctest -C Release --output-on-failure --timeout 600
ctest -C Release --output-on-failure --timeout 1800
IF errorlevel 1 (
echo Some tests failed
exit /b %errorlevel%
Expand Down
2 changes: 1 addition & 1 deletion assembly/nix/linux-arm64-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ stdenv.mkDerivation {
"-DMHD_FOUND=1"
"-DMHD_INCLUDE_DIR=${microhttpdmy}/usr/local/include"
"-DMHD_LIBRARY=${microhttpdmy}/usr/local/lib/libmicrohttpd.a"
"-DCMAKE_CTEST_ARGUMENTS=--timeout;900"
"-DCMAKE_CTEST_ARGUMENTS=--timeout;1800"
];

LDFLAGS = [
Expand Down
2 changes: 1 addition & 1 deletion assembly/nix/linux-x86-64-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ stdenv.mkDerivation {
"-DMHD_FOUND=1"
"-DMHD_INCLUDE_DIR=${microhttpdmy}/usr/local/include"
"-DMHD_LIBRARY=${microhttpdmy}/usr/local/lib/libmicrohttpd.a"
"-DCMAKE_CTEST_ARGUMENTS=--timeout;900"
"-DCMAKE_CTEST_ARGUMENTS=--timeout;1800"
];

LDFLAGS = [
Expand Down
2 changes: 1 addition & 1 deletion assembly/nix/macos-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pkgs.llvmPackages_14.stdenv.mkDerivation {
"-DBUILD_SHARED_LIBS=OFF"
"-DCMAKE_CXX_FLAGS=-stdlib=libc++"
"-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=11.3"
"-DCMAKE_CTEST_ARGUMENTS=--timeout;900"
"-DCMAKE_CTEST_ARGUMENTS=--timeout;1800"
];

LDFLAGS = [
Expand Down

0 comments on commit 77b2a89

Please sign in to comment.