aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/torture_proxycommand.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/torture_proxycommand.c')
-rw-r--r--tests/unittests/torture_proxycommand.c26
1 files changed, 1 insertions, 25 deletions
diff --git a/tests/unittests/torture_proxycommand.c b/tests/unittests/torture_proxycommand.c
index 8bc601c3..3ee30a74 100644
--- a/tests/unittests/torture_proxycommand.c
+++ b/tests/unittests/torture_proxycommand.c
@@ -41,7 +41,7 @@ START_TEST (torture_options_set_proxycommand_notexist)
}
END_TEST
-static Suite *torture_make_suite(void) {
+Suite *torture_make_suite(void) {
Suite *s = suite_create("libssh_proxycommand");
torture_create_case_fixture(s, "torture_options_set_proxycommand",
@@ -52,27 +52,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;
-}
-