summaryrefslogtreecommitdiff
path: root/auto_tests/tox_many_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-02-05 21:38:58 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-02-09 20:51:39 +0000
commit6cd4fcdec4e6671e63e8c7cba2ab4c6d594b13fd (patch)
tree09485be8361d503f1acdee57055535a6b3331d17 /auto_tests/tox_many_test.c
parent05912fd65c52f97a600383be11cd741ae32d61bf (diff)
Remove libcheck from the dependencies.
We're not gaining much from this library, and it's a burden, especially for windows development.
Diffstat (limited to 'auto_tests/tox_many_test.c')
-rw-r--r--auto_tests/tox_many_test.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/auto_tests/tox_many_test.c b/auto_tests/tox_many_test.c
index 3d3aad6d..bacaaff8 100644
--- a/auto_tests/tox_many_test.c
+++ b/auto_tests/tox_many_test.c
@@ -139,17 +139,11 @@ loop_top:
139} 139}
140END_TEST 140END_TEST
141 141
142#ifdef TRAVIS_ENV
143static const uint8_t timeout_mux = 20;
144#else
145static const uint8_t timeout_mux = 10;
146#endif
147
148static Suite *tox_suite(void) 142static Suite *tox_suite(void)
149{ 143{
150 Suite *s = suite_create("Tox"); 144 Suite *s = suite_create("Tox");
151 145
152 DEFTESTCASE_SLOW(many_clients, 8 * timeout_mux); 146 DEFTESTCASE(many_clients);
153 147
154 return s; 148 return s;
155} 149}