summaryrefslogtreecommitdiff
path: root/auto_tests/tox_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'auto_tests/tox_test.c')
-rw-r--r--auto_tests/tox_test.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/auto_tests/tox_test.c b/auto_tests/tox_test.c
index 219550db..69e6033d 100644
--- a/auto_tests/tox_test.c
+++ b/auto_tests/tox_test.c
@@ -923,7 +923,7 @@ loop_top:
923 } 923 }
924 924
925 if (counter != last_count) { 925 if (counter != last_count) {
926 printf("got to %u\n", counter); 926 printf("many_clients got to %u\n", counter);
927 last_count = counter; 927 last_count = counter;
928 } 928 }
929 929
@@ -1115,6 +1115,8 @@ loop_top:
1115 ck_assert_msg(num != UINT32_MAX && test == TOX_ERR_FRIEND_ADD_OK, "Failed to add friend error code: %i", test); 1115 ck_assert_msg(num != UINT32_MAX && test == TOX_ERR_FRIEND_ADD_OK, "Failed to add friend error code: %i", test);
1116 } 1116 }
1117 1117
1118 uint16_t last_count = 0;
1119
1118 while (1) { 1120 while (1) {
1119 uint16_t counter = 0; 1121 uint16_t counter = 0;
1120 1122
@@ -1126,6 +1128,11 @@ loop_top:
1126 } 1128 }
1127 } 1129 }
1128 1130
1131 if (counter != last_count) {
1132 printf("many_clients_tcp_b got to %u\n", counter);
1133 last_count = counter;
1134 }
1135
1129 if (counter == NUM_FRIENDS * 2) { 1136 if (counter == NUM_FRIENDS * 2) {
1130 break; 1137 break;
1131 } 1138 }