0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-13 17:27:57 +08:00

Problem: some tests time out in CI under Valgrind

Solution: triple the timeouts
This commit is contained in:
Luca Boccassi 2021-09-21 19:45:56 +01:00
parent 0f706bdd97
commit e3d37a82e1
4 changed files with 4 additions and 4 deletions

View File

@ -462,7 +462,7 @@ void test_proxy ()
int main (void)
{
setup_test_environment ();
setup_test_environment (360);
UNITY_BEGIN ();
RUN_TEST (test_proxy);

View File

@ -564,7 +564,7 @@ int main (void)
setup_testutil_security_curve ();
setup_test_environment ();
setup_test_environment (180);
UNITY_BEGIN ();
RUN_TEST (test_curve_security_with_valid_credentials);

View File

@ -89,7 +89,7 @@ void test_shutdown_stress ()
int main ()
{
setup_test_environment ();
setup_test_environment (180);
UNITY_BEGIN ();
RUN_TEST (test_shutdown_stress);

View File

@ -871,7 +871,7 @@ void test_socks_userpass_options (void)
int main ()
{
setup_test_environment ();
setup_test_environment (180);
UNITY_BEGIN ();
RUN_TEST (test_socks_proxy_options);