You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
375 B
23 lines
375 B
/* $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();
|
|
}
|