7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2024-11-24 15:35:00 +00:00
kicad/thirdparty/sentry-native/tests/unit/main.c
2022-04-02 01:21:55 +00:00

17 lines
326 B
C

#define SENTRY_TEST_DEFINE_MAIN
#include "sentry_testsupport.h"
#define XX(Name) SENTRY_TEST(Name);
#include "tests.inc"
#undef XX
TEST_LIST = {
#define DECLARE_TEST(Name, Func) { Name, Func },
#define XX(Name) DECLARE_TEST(#Name, CONCAT(test_sentry_, Name))
#include "tests.inc"
#undef XX
#undef DECLARE_TEST
{ 0 }
};