openssh-portable/regress/unittests/misc/tests.c

35 lines
553 B
C
Raw Normal View History

2021-04-03 07:22:48 +02:00
/* $OpenBSD: tests.c,v 1.6 2021/03/19 04:23:50 djm Exp $ */
2019-10-31 22:36:16 +01:00
/*
* Regress test for misc helper functions.
*
* Placed in the public domain.
*/
#include "includes.h"
2019-10-31 22:36:16 +01:00
#include <sys/types.h>
#include <sys/param.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "../test_helper/test_helper.h"
2019-10-31 22:36:16 +01:00
#include "log.h"
2019-10-31 22:36:16 +01:00
#include "misc.h"
2021-04-03 07:22:48 +02:00
void test_parse(void);
void test_convtime(void);
void test_expand(void);
void test_argv(void);
2019-10-31 22:36:16 +01:00
void
tests(void)
{
2021-04-03 07:22:48 +02:00
test_parse();
test_convtime();
test_expand();
test_argv();
2019-10-31 22:36:16 +01:00
}