summaryrefslogtreecommitdiff
path: root/auto_tests/toxav_many_test.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-05-22 18:23:56 -0400
committerirungentoo <irungentoo@gmail.com>2015-05-22 18:23:56 -0400
commit8e80ced6cea5c50e628c1931f6b3b764b97efb41 (patch)
tree43d8aaf1500bee9abdbd11be5175990a98414d3b /auto_tests/toxav_many_test.c
parent2ba076ac5cc6efb5eb41fb4aa6a77a151885f26c (diff)
Move savedata to options struct.
Add a way to select the type of savedata (normal savedata, load a secret key, potentially others?) to load.
Diffstat (limited to 'auto_tests/toxav_many_test.c')
-rw-r--r--auto_tests/toxav_many_test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/auto_tests/toxav_many_test.c b/auto_tests/toxav_many_test.c
index 4287118f..6017e526 100644
--- a/auto_tests/toxav_many_test.c
+++ b/auto_tests/toxav_many_test.c
@@ -264,12 +264,12 @@ START_TEST(test_AV_three_calls)
264// void test_AV_three_calls() 264// void test_AV_three_calls()
265{ 265{
266 long long unsigned int cur_time = time(NULL); 266 long long unsigned int cur_time = time(NULL);
267 Tox *bootstrap_node = tox_new(0, 0, 0, 0); 267 Tox *bootstrap_node = tox_new(0, 0);
268 Tox *caller = tox_new(0, 0, 0, 0); 268 Tox *caller = tox_new(0, 0);
269 Tox *callees[3] = { 269 Tox *callees[3] = {
270 tox_new(0, 0, 0, 0), 270 tox_new(0, 0),
271 tox_new(0, 0, 0, 0), 271 tox_new(0, 0),
272 tox_new(0, 0, 0, 0), 272 tox_new(0, 0),
273 }; 273 };
274 274
275 275