xref: /openbsd-src/regress/usr.bin/ssh/unittests/misc/tests.c (revision 5a38ef86d0b61900239c7913d24a05e7b88a58f0)
1 /* 	$OpenBSD: tests.c,v 1.8 2021/12/14 21:25:27 deraadt Exp $ */
2 /*
3  * Regress test for misc helper functions.
4  *
5  * Placed in the public domain.
6  */
7 
8 #include <sys/types.h>
9 #include <stdio.h>
10 #include <stdint.h>
11 #include <stdlib.h>
12 #include <string.h>
13 
14 #include "test_helper.h"
15 
16 #include "log.h"
17 #include "misc.h"
18 
19 void test_parse(void);
20 void test_convtime(void);
21 void test_expand(void);
22 void test_argv(void);
23 void test_strdelim(void);
24 
25 void
26 tests(void)
27 {
28 	test_parse();
29 	test_convtime();
30 	test_expand();
31 	test_argv();
32 	test_strdelim();
33 }
34