Add Key State Tracker

This commit is contained in:
Florian Märkl 2020-07-12 19:28:36 +02:00
commit 736b4835df
5 changed files with 89 additions and 0 deletions

View file

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