summaryrefslogtreecommitdiff
path: root/auto_tests/run_auto_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'auto_tests/run_auto_test.h')
-rw-r--r--auto_tests/run_auto_test.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/auto_tests/run_auto_test.h b/auto_tests/run_auto_test.h
index 04d24791..ad89992a 100644
--- a/auto_tests/run_auto_test.h
+++ b/auto_tests/run_auto_test.h
@@ -72,19 +72,19 @@ static void run_auto_test(uint32_t tox_count, void test(Tox **toxes, State *stat
72 tox_bootstrap(toxes[i], "localhost", dht_port, dht_key, nullptr); 72 tox_bootstrap(toxes[i], "localhost", dht_port, dht_key, nullptr);
73 } 73 }
74 74
75 while (!all_connected(tox_count, toxes)) { 75 do {
76 iterate_all(tox_count, toxes, state); 76 iterate_all(tox_count, toxes, state);
77 77
78 c_sleep(ITERATION_INTERVAL); 78 c_sleep(ITERATION_INTERVAL);
79 } 79 } while (!all_connected(tox_count, toxes));
80 80
81 printf("toxes are online\n"); 81 printf("toxes are online\n");
82 82
83 while (!all_friends_connected(tox_count, toxes)) { 83 do {
84 iterate_all(tox_count, toxes, state); 84 iterate_all(tox_count, toxes, state);
85 85
86 c_sleep(ITERATION_INTERVAL); 86 c_sleep(ITERATION_INTERVAL);
87 } 87 } while (!all_friends_connected(tox_count, toxes));
88 88
89 printf("tox clients connected\n"); 89 printf("tox clients connected\n");
90 90