blob: d3044f033767242ccac931b4145b904013bb7143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $OpenBSD: tests.c,v 1.3 2023/03/06 12:15:47 dtucker Exp $ */
/*
* Placed in the public domain
*/
#include "../test_helper/test_helper.h"
void kex_tests(void);
void kex_proposal_tests(void);
void kex_proposal_populate_tests(void);
void
tests(void)
{
kex_tests();
kex_proposal_tests();
kex_proposal_populate_tests();
}
|