diff options
author | 2021-03-19 04:23:50 +0000 | |
---|---|---|
committer | 2021-03-19 04:23:50 +0000 | |
commit | 3db7c0f63c899a7470bd6ee63aa74a089acc7bac (patch) | |
tree | c9988d3d8c6d96f8b505c41e6d97fc41ec6728e1 /regress/usr.bin/ssh/unittests/misc/tests.c | |
parent | split (diff) | |
download | wireguard-openbsd-3db7c0f63c899a7470bd6ee63aa74a089acc7bac.tar.xz wireguard-openbsd-3db7c0f63c899a7470bd6ee63aa74a089acc7bac.zip |
add a test for misc.c:argv_split(), currently fails
Diffstat (limited to 'regress/usr.bin/ssh/unittests/misc/tests.c')
-rw-r--r-- | regress/usr.bin/ssh/unittests/misc/tests.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/usr.bin/ssh/unittests/misc/tests.c b/regress/usr.bin/ssh/unittests/misc/tests.c index 0e2218f9e87..fe9544a93fa 100644 --- a/regress/usr.bin/ssh/unittests/misc/tests.c +++ b/regress/usr.bin/ssh/unittests/misc/tests.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tests.c,v 1.5 2021/03/19 03:25:01 djm Exp $ */ +/* $OpenBSD: tests.c,v 1.6 2021/03/19 04:23:50 djm Exp $ */ /* * Regress test for misc helper functions. * @@ -20,6 +20,7 @@ void test_parse(void); void test_convtime(void); void test_expand(void); +void test_argv(void); void tests(void) @@ -27,4 +28,5 @@ tests(void) test_parse(); test_convtime(); test_expand(); + test_argv(); } |