diff options
| author | Andreas Schneider <asn@cynapses.org> | 2011-01-03 08:46:14 +0100 |
|---|---|---|
| committer | Andreas Schneider <asn@cynapses.org> | 2011-01-03 08:46:14 +0100 |
| commit | e12253168c04bfc603afe43670ad214040040b3d (patch) | |
| tree | 307488cc7984f6d4747049385583950b5efe9dc7 /tests/client/torture_proxycommand.c | |
| parent | 1540dad17fb94a6a0cbcd2498bfdaf115ef97cb7 (diff) | |
| download | libssh-e12253168c04bfc603afe43670ad214040040b3d.tar.gz libssh-e12253168c04bfc603afe43670ad214040040b3d.tar.xz libssh-e12253168c04bfc603afe43670ad214040040b3d.zip | |
tests: Call init and finalize in client torture tests.
Diffstat (limited to 'tests/client/torture_proxycommand.c')
| -rw-r--r-- | tests/client/torture_proxycommand.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/client/torture_proxycommand.c b/tests/client/torture_proxycommand.c index ba0e21f1..218b457f 100644 --- a/tests/client/torture_proxycommand.c +++ b/tests/client/torture_proxycommand.c @@ -41,10 +41,17 @@ static void torture_options_set_proxycommand_notexist(void **state) { } int torture_run_tests(void) { + int rc; + + ssh_init(); + const UnitTest tests[] = { unit_test_setup_teardown(torture_options_set_proxycommand, setup, teardown), unit_test_setup_teardown(torture_options_set_proxycommand_notexist, setup, teardown), }; - return run_tests(tests); + rc = run_tests(tests); + ssh_finalize(); + + return rc; } |
