Skip to content

Commit

Permalink
set timeout per test of 600 sec for non nix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Jan 9, 2024
1 parent 6d3fe87 commit 3ea25b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 300
ctest --output-on-failure --timeout 600
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 @@ -117,5 +117,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 300
ctest --output-on-failure --timeout 600
fi
2 changes: 1 addition & 1 deletion assembly/native/build-windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ IF %errorlevel% NEQ 0 (
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
ctest -C Release --output-on-failure --timeout 600
IF %errorlevel% NEQ 0 (
echo Some tests failed
exit /b %errorlevel%
Expand Down

0 comments on commit 3ea25b2

Please sign in to comment.