Problem: set infinite timeouts on some tests by mistake

Solution: remove it
This commit is contained in:
Luca Boccassi 2020-05-06 20:56:36 +01:00
parent f7b215c639
commit 243503c29e
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ void test_bind_null_fuzzer ()
int main (int argc, char **argv)
{
setup_test_environment (0);
setup_test_environment ();
UNITY_BEGIN ();
RUN_TEST (test_bind_null_fuzzer);

View File

@ -106,7 +106,7 @@ void test_connect_null_fuzzer ()
int main (int argc, char **argv)
{
setup_test_environment (0);
setup_test_environment ();
UNITY_BEGIN ();
RUN_TEST (test_connect_null_fuzzer);

View File

@ -197,7 +197,7 @@ void test_client_server_ipc ()
int main ()
{
setup_test_environment (0);
setup_test_environment ();
UNITY_BEGIN ();
RUN_TEST (test_req_rep_tcp);