2018-06-20 04:54:21 +08:00
|
|
|
// 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.
|
2018-07-17 06:46:02 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
2018-06-20 04:54:21 +08:00
|
|
|
#endif
|
|
|
|
|
2018-07-17 06:46:02 +08:00
|
|
|
#include "../testing/misc_tools.h"
|
2018-06-20 04:54:21 +08:00
|
|
|
#include "../toxcore/tox.h"
|
|
|
|
#include "check_compat.h"
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
// Create toxes.
|
2018-07-16 09:12:16 +08:00
|
|
|
uint32_t id = 1;
|
2018-06-20 04:54:21 +08:00
|
|
|
Tox *tox1 = tox_new_log(nullptr, nullptr, &id);
|
|
|
|
|
|
|
|
// Create two conferences and then exit.
|
2018-10-09 05:05:14 +08:00
|
|
|
Tox_Err_Conference_New err;
|
2018-06-20 04:54:21 +08:00
|
|
|
tox_conference_new(tox1, &err);
|
2018-07-16 09:12:16 +08:00
|
|
|
ck_assert_msg(err == TOX_ERR_CONFERENCE_NEW_OK, "failed to create conference 1: %d", err);
|
2018-06-20 04:54:21 +08:00
|
|
|
tox_conference_new(tox1, &err);
|
2018-07-16 09:12:16 +08:00
|
|
|
ck_assert_msg(err == TOX_ERR_CONFERENCE_NEW_OK, "failed to create conference 2: %d", err);
|
2018-06-20 04:54:21 +08:00
|
|
|
|
|
|
|
tox_kill(tox1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|