Add ChiakiReorderQueue

This commit is contained in:
Florian Märkl 2019-06-27 11:49:55 +02:00
commit 632cf6cf91
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
6 changed files with 490 additions and 3 deletions

View file

@ -18,6 +18,7 @@
#include <munit.h>
extern MunitTest tests_seq_num[];
extern MunitTest tests_reorder_queue[];
extern MunitTest tests_http[];
extern MunitTest tests_rpcrypt[];
extern MunitTest tests_gkcrypt[];
@ -31,6 +32,13 @@ static MunitSuite suites[] = {
1,
MUNIT_SUITE_OPTION_NONE
},
{
"/reorder_queue",
tests_reorder_queue,
NULL,
1,
MUNIT_SUITE_OPTION_NONE
},
{
"/http",
tests_http,