blob: 32699541413e9e85be198b7e7733594e319ab77e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* $OpenBSD: tests.c,v 1.10 2023/01/06 02:59:50 djm Exp $ */
/*
* Regress test for misc helper functions.
*
* Placed in the public domain.
*/
#include "includes.h"
#include <sys/types.h>
#include <stdio.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <stdlib.h>
#include <string.h>
#include "../test_helper/test_helper.h"
#include "log.h"
#include "misc.h"
void test_parse(void);
void test_convtime(void);
void test_expand(void);
void test_argv(void);
void test_strdelim(void);
void test_hpdelim(void);
void test_ptimeout(void);
void
tests(void)
{
test_parse();
test_convtime();
test_expand();
test_argv();
test_strdelim();
test_hpdelim();
test_ptimeout();
}
|