This commit is contained in:
Florian Märkl 2019-07-28 15:42:43 +02:00
commit 6bd7c117e8
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
15 changed files with 3448 additions and 11 deletions

View file

@ -23,6 +23,7 @@ extern MunitTest tests_http[];
extern MunitTest tests_rpcrypt[];
extern MunitTest tests_gkcrypt[];
extern MunitTest tests_takion[];
extern MunitTest tests_fec[];
static MunitSuite suites[] = {
{
@ -67,6 +68,13 @@ static MunitSuite suites[] = {
1,
MUNIT_SUITE_OPTION_NONE
},
{
"/fec",
tests_fec,
NULL,
1,
MUNIT_SUITE_OPTION_NONE
},
{ NULL, NULL, NULL, 0, MUNIT_SUITE_OPTION_NONE }
};