1 /* $OpenBSD: tests.c,v 1.1 2017/05/29 20:59:28 markus Exp $ */ 2 /* 3 * Regress test for iked payload parser 4 * 5 * Placed in the public domain 6 */ 7 8 #include "test_helper.h" 9 10 void parser_fuzz_tests(void); 11 12 void 13 tests(void) 14 { 15 parser_fuzz_tests(); 16 } 17