summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--auto_tests/tox_test.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/auto_tests/tox_test.c b/auto_tests/tox_test.c
index c7d2f5f9..11de2213 100644
--- a/auto_tests/tox_test.c
+++ b/auto_tests/tox_test.c
@@ -279,6 +279,10 @@ START_TEST(test_few_clients)
279 printf("100MB file sent in %llu seconds\n", time(NULL) - f_time); 279 printf("100MB file sent in %llu seconds\n", time(NULL) - f_time);
280 280
281 printf("test_few_clients succeeded, took %llu seconds\n", time(NULL) - cur_time); 281 printf("test_few_clients succeeded, took %llu seconds\n", time(NULL) - cur_time);
282
283 tox_kill(tox1);
284 tox_kill(tox2);
285 tox_kill(tox3);
282} 286}
283END_TEST 287END_TEST
284 288
@@ -346,6 +350,10 @@ loop_top:
346 } 350 }
347 351
348 printf("test_many_clients succeeded, took %llu seconds\n", time(NULL) - cur_time); 352 printf("test_many_clients succeeded, took %llu seconds\n", time(NULL) - cur_time);
353
354 for (i = 0; i < NUM_TOXES; ++i) {
355 tox_kill(toxes[i]);
356 }
349} 357}
350END_TEST 358END_TEST
351 359