Squashed 'external/toxcore/c-toxcore/' content from commit 67badf69
git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 67badf69416a74e74f6d7eb51dd96f37282b8455
This commit is contained in:
27
auto_tests/conference_two_test.c
Normal file
27
auto_tests/conference_two_test.c
Normal file
@ -0,0 +1,27 @@
|
||||
// This test checks that we can create two conferences and quit properly.
|
||||
//
|
||||
// This test triggers a different code path than if we only allocate a single
|
||||
// conference. This is the simplest test possible that triggers it.
|
||||
|
||||
#include "../testing/misc_tools.h"
|
||||
#include "../toxcore/tox.h"
|
||||
#include "auto_test_support.h"
|
||||
#include "check_compat.h"
|
||||
|
||||
int main(void)
|
||||
{
|
||||
// Create toxes.
|
||||
uint32_t id = 1;
|
||||
Tox *tox1 = tox_new_log(nullptr, nullptr, &id);
|
||||
|
||||
// Create two conferences and then exit.
|
||||
Tox_Err_Conference_New err;
|
||||
tox_conference_new(tox1, &err);
|
||||
ck_assert_msg(err == TOX_ERR_CONFERENCE_NEW_OK, "failed to create conference 1: %d", err);
|
||||
tox_conference_new(tox1, &err);
|
||||
ck_assert_msg(err == TOX_ERR_CONFERENCE_NEW_OK, "failed to create conference 2: %d", err);
|
||||
|
||||
tox_kill(tox1);
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user