mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
cb69b8a986
Tests are not actually ran on appveyor for now, since they all fault for some reason. For now, we just build them. Also, some tests are disabled on msvc entirely, because they don't even compile. We'll need to look into those, later. They are disabled using `MSVC_DONT_BUILD`.
47 lines
958 B
C
47 lines
958 B
C
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "check_compat.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
#include "helpers.h"
|
|
|
|
/*
|
|
#include "../<stuff to test>"
|
|
*/
|
|
|
|
START_TEST(test_creativetestnamegoeshere)
|
|
{
|
|
uint8_t test = 0;
|
|
ck_assert_msg(test == 0, "test: expected result 0, got %u.", test);
|
|
}
|
|
END_TEST
|
|
|
|
static Suite *creativesuitenamegoeshere_suite(void)
|
|
{
|
|
Suite *s = suite_create("creativesuitedescritptiongoeshere");
|
|
|
|
DEFTESTCASE(/* remove test_ from test function names */ creativetestnamegoeshere);
|
|
|
|
return s;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
srand((unsigned int) time(NULL));
|
|
|
|
Suite *creativesuitenamegoeshere = creativesuitenamegoeshere_suite();
|
|
SRunner *test_runner = srunner_create(creativesuitenamegoeshere);
|
|
|
|
int number_failed = 0;
|
|
srunner_run_all(test_runner, CK_NORMAL);
|
|
number_failed = srunner_ntests_failed(test_runner);
|
|
|
|
srunner_free(test_runner);
|
|
|
|
return number_failed;
|
|
}
|