summaryrefslogtreecommitdiff
path: root/regress/unittests/misc/tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'regress/unittests/misc/tests.c')
-rw-r--r--regress/unittests/misc/tests.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/unittests/misc/tests.c b/regress/unittests/misc/tests.c
index 75013f48..09b8efa1 100644
--- a/regress/unittests/misc/tests.c
+++ b/regress/unittests/misc/tests.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tests.c,v 1.6 2021/03/19 04:23:50 djm Exp $ */
+/* $OpenBSD: tests.c,v 1.7 2021/05/21 03:48:07 djm Exp $ */
/*
* Regress test for misc helper functions.
*
@@ -23,6 +23,7 @@ void test_parse(void);
void test_convtime(void);
void test_expand(void);
void test_argv(void);
+void test_strdelim(void);
void
tests(void)
@@ -31,4 +32,5 @@ tests(void)
test_convtime();
test_expand();
test_argv();
+ test_strdelim();
}