summaryrefslogtreecommitdiff
path: root/auto_tests/send_message_test.c
diff options
context:
space:
mode:
authorzugz <mbays+tox@sdf.org>2018-07-25 08:43:48 +0100
committerzugz (tox) <mbays+tox@sdf.org>2018-09-05 20:56:26 +0200
commit1b2322284f0b688af3a349fe4331be15a565084c (patch)
tree7651c11b4ec1edd927151e9655727fb0b2365a7c /auto_tests/send_message_test.c
parent6872c14e1a02445d945623ee6e85230c5d7ecbce (diff)
Add mechanism for recovering from disconnections in conferences
* add freezing and unfreezing of peers * add rejoin packet * revise handling of temporary invited connections * rename "peer kill" packet to "peer leave" packet * test rejoining in conference test * use custom clock in conference test
Diffstat (limited to 'auto_tests/send_message_test.c')
-rw-r--r--auto_tests/send_message_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/send_message_test.c b/auto_tests/send_message_test.c
index 81969d59..5346dc9e 100644
--- a/auto_tests/send_message_test.c
+++ b/auto_tests/send_message_test.c
@@ -61,6 +61,6 @@ int main(void)
61{ 61{
62 setvbuf(stdout, nullptr, _IONBF, 0); 62 setvbuf(stdout, nullptr, _IONBF, 0);
63 63
64 run_auto_test(2, send_message_test); 64 run_auto_test(2, send_message_test, false);
65 return 0; 65 return 0;
66} 66}