1
0
Fork 0
openssh/regress/unittests/kex/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

18 lines
329 B
C

/* $OpenBSD: tests.c,v 1.3 2023/03/06 12:15:47 dtucker Exp $ */
/*
* Placed in the public domain
*/
#include "../test_helper/test_helper.h"
void kex_tests(void);
void kex_proposal_tests(void);
void kex_proposal_populate_tests(void);
void
tests(void)
{
kex_tests();
kex_proposal_tests();
kex_proposal_populate_tests();
}