xref: /openbsd-src/regress/usr.bin/ssh/unittests/misc/tests.c (revision 097a140d792de8b2bbe59ad827d39eabf9b4280a)
1 /* 	$OpenBSD: tests.c,v 1.6 2021/03/19 04:23:50 djm 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 <sys/param.h>
10 #include <stdio.h>
11 #include <stdint.h>
12 #include <stdlib.h>
13 #include <string.h>
14 
15 #include "test_helper.h"
16 
17 #include "log.h"
18 #include "misc.h"
19 
20 void test_parse(void);
21 void test_convtime(void);
22 void test_expand(void);
23 void test_argv(void);
24 
25 void
26 tests(void)
27 {
28 	test_parse();
29 	test_convtime();
30 	test_expand();
31 	test_argv();
32 }
33