summaryrefslogtreecommitdiff
path: root/auto_tests/toxav_basic_test.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-02-07 22:57:04 -0500
committerirungentoo <irungentoo@gmail.com>2015-02-07 22:57:04 -0500
commitd9ea6e948531bd3c0ab339e6d6e0b89156fc2e99 (patch)
treeec4f6e892c65289572b306ab76ef420efb78eb3b /auto_tests/toxav_basic_test.c
parent65cbea38fd7b32d543cb73a72a57854717396393 (diff)
Properly free everything at the end of each test.
Diffstat (limited to 'auto_tests/toxav_basic_test.c')
-rw-r--r--auto_tests/toxav_basic_test.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/auto_tests/toxav_basic_test.c b/auto_tests/toxav_basic_test.c
index db1db3fb..fe67aca1 100644
--- a/auto_tests/toxav_basic_test.c
+++ b/auto_tests/toxav_basic_test.c
@@ -595,8 +595,11 @@ START_TEST(test_AV_flows)
595 printf("\n"); 595 printf("\n");
596 } 596 }
597 597
598 598 toxav_kill(status_control.Alice.av);
599 599 toxav_kill(status_control.Bob.av);
600 tox_kill(bootstrap_node);
601 tox_kill(Alice);
602 tox_kill(Bob);
600 603
601 printf("Calls ended!\n"); 604 printf("Calls ended!\n");
602} 605}