aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/torture_knownhosts.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/torture_knownhosts.c')
-rw-r--r--tests/unittests/torture_knownhosts.c24
1 files changed, 1 insertions, 23 deletions
diff --git a/tests/unittests/torture_knownhosts.c b/tests/unittests/torture_knownhosts.c
index 2f38bfd2..2a7cdab9 100644
--- a/tests/unittests/torture_knownhosts.c
+++ b/tests/unittests/torture_knownhosts.c
@@ -76,7 +76,7 @@ START_TEST (torture_knownhosts_port)
}
END_TEST
-static Suite *torture_make_suite(void) {
+Suite *torture_make_suite(void) {
Suite *s = suite_create("libssh_knownhosts");
torture_create_case_fixture(s, "torture_knownhosts_port",
@@ -84,25 +84,3 @@ static Suite *torture_make_suite(void) {
return s;
}
-int main(int argc, char **argv) {
- Suite *s = NULL;
- SRunner *sr = NULL;
- struct argument_s arguments;
- int nf;
-
- ZERO_STRUCT(arguments);
-
- torture_cmdline_parse(argc, argv, &arguments);
-
- s = torture_make_suite();
-
- sr = srunner_create(s);
- if (arguments.nofork) {
- srunner_set_fork_status(sr, CK_NOFORK);
- }
- srunner_run_all(sr, CK_VERBOSE);
- nf = srunner_ntests_failed(sr);
- srunner_free(sr);
-
- return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
-}