summaryrefslogtreecommitdiff
path: root/auto_tests/tox_many_tcp_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'auto_tests/tox_many_tcp_test.c')
-rw-r--r--auto_tests/tox_many_tcp_test.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/auto_tests/tox_many_tcp_test.c b/auto_tests/tox_many_tcp_test.c
index 81e6244a..e4309db7 100644
--- a/auto_tests/tox_many_tcp_test.c
+++ b/auto_tests/tox_many_tcp_test.c
@@ -259,21 +259,15 @@ loop_top:
259END_TEST 259END_TEST
260 260
261 261
262#ifdef TRAVIS_ENV
263static const uint8_t timeout_mux = 20;
264#else
265static const uint8_t timeout_mux = 10;
266#endif
267
268static Suite *tox_suite(void) 262static Suite *tox_suite(void)
269{ 263{
270 Suite *s = suite_create("Tox many tcp"); 264 Suite *s = suite_create("Tox many tcp");
271 265
272 /* Each tox connects to a single tox TCP */ 266 /* Each tox connects to a single tox TCP */
273 DEFTESTCASE_SLOW(many_clients_tcp, 4 * timeout_mux); 267 DEFTESTCASE(many_clients_tcp);
274 268
275 /* Try to make a connection to each "older sibling" tox instance via TCP */ 269 /* Try to make a connection to each "older sibling" tox instance via TCP */
276 DEFTESTCASE_SLOW(many_clients_tcp_b, 8 * timeout_mux); 270 DEFTESTCASE(many_clients_tcp_b);
277 271
278 return s; 272 return s;
279} 273}