mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
864d1c15e4
Did my best to surmise the size requirements of these integers, will do the rest of the tests soon. Also added a todo and made an obsessive change to a for loop.
31 lines
846 B
C
31 lines
846 B
C
// 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.
|
|
#ifndef _XOPEN_SOURCE
|
|
#define _XOPEN_SOURCE 600
|
|
#endif
|
|
|
|
#include "../toxcore/tox.h"
|
|
|
|
#include "check_compat.h"
|
|
#include "helpers.h"
|
|
|
|
int main(void)
|
|
{
|
|
// Create toxes.
|
|
uint8_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;
|
|
}
|