1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

tests: Remove obsolete setup_both_keys()

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-01-08 22:48:42 +01:00
parent 51875db70c
commit a5997d180d

View File

@@ -31,14 +31,6 @@ static int setup_rsa_key(void **state)
return 0;
}
static int setup_both_keys(void **state) {
(void) state; /* unused */
setup_rsa_key(state);
return 0;
}
static int teardown(void **state) {
(void) state; /* unused */
@@ -581,8 +573,6 @@ int torture_run_tests(void) {
#endif /* HAVE_LIBCRYPTO */
};
(void)setup_both_keys;
ssh_init();
torture_filter_tests(tests);
rc = cmocka_run_group_tests(tests, NULL, NULL);