/* $OpenBSD: tests.c,v 1.5 2021/03/19 03:25:01 djm Exp $ */ /* * Regress test for misc helper functions. * * Placed in the public domain. */ #include #include #include #include #include #include #include "test_helper.h" #include "log.h" #include "misc.h" void test_parse(void); void test_convtime(void); void test_expand(void); void tests(void) { test_parse(); test_convtime(); test_expand(); }