1
0
Fork 0
openssh/regress/unittests/sshkey/tests.c
Daniel Baumann f4a1000be6
Adding upstream version 1:10.0p1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 09:50:01 +02:00

22 lines
375 B
C

/* $OpenBSD: tests.c,v 1.1 2014/06/24 01:14:18 djm Exp $ */
/*
* Regress test for sshbuf.h buffer API
*
* Placed in the public domain
*/
#include "includes.h"
#include "../test_helper/test_helper.h"
void sshkey_tests(void);
void sshkey_file_tests(void);
void sshkey_fuzz_tests(void);
void
tests(void)
{
sshkey_tests();
sshkey_file_tests();
sshkey_fuzz_tests();
}