aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2017-07-14 08:53:15 +0200
committerAndreas Schneider <asn@cryptomilk.org>2017-07-14 08:53:15 +0200
commitd9ff44b46e29e21e491cc4b9de0535df5cf1cd18 (patch)
treeb6fa9c77f6b74108df5c8aa1f6c291b589468530 /tests
parentc480ac852283370a8d2229c81e8f412b51b2dd23 (diff)
downloadlibssh-d9ff44b46e29e21e491cc4b9de0535df5cf1cd18.tar.gz
libssh-d9ff44b46e29e21e491cc4b9de0535df5cf1cd18.tar.xz
libssh-d9ff44b46e29e21e491cc4b9de0535df5cf1cd18.zip
tests: Fix endif
Ups. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/unittests/torture_options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/torture_options.c b/tests/unittests/torture_options.c
index d6d2b6a6..ca85ec23 100644
--- a/tests/unittests/torture_options.c
+++ b/tests/unittests/torture_options.c
@@ -214,7 +214,6 @@ static int sshbind_teardown(void **state)
ssh_bind_free(*state);
return 0;
}
-#endif /* WITH_SERVER */
static void torture_bind_options_import_key(void **state)
{
@@ -246,6 +245,7 @@ static void torture_bind_options_import_key(void **state)
rc = ssh_bind_options_set(bind, SSH_BIND_OPTIONS_IMPORT_KEY, key);
assert_int_equal(rc, 0);
}
+#endif /* WITH_SERVER */
int torture_run_tests(void) {