aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/torture_config.c
diff options
context:
space:
mode:
authorAnderson Toshiyuki Sasaki <ansasaki@redhat.com>2019-05-06 15:19:40 +0200
committerAndreas Schneider <asn@cryptomilk.org>2019-05-14 17:20:39 +0200
commit7cc159d72079770937b9aebadf40e9f2c4fafbc6 (patch)
treef6a912082c1b9f9e7a023bdaaba2566974bfa830 /tests/unittests/torture_config.c
parent248e5acd5c9f9bb08b7d04dce13564bf4c817cca (diff)
downloadlibssh-7cc159d72079770937b9aebadf40e9f2c4fafbc6.tar.gz
libssh-7cc159d72079770937b9aebadf40e9f2c4fafbc6.tar.xz
libssh-7cc159d72079770937b9aebadf40e9f2c4fafbc6.zip
cmake,options: Allow to set global client config file
This allows the global client (ssh_session) configuration file path to be set in configuration time by defining GLOBAL_CLIENT_CONFIG when calling cmake. If it is not defined, the default path is set as "/etc/ssh/ssh_config". usage example: $ cmake -DGLOBAL_CLIENT_CONFIG=/etc/my/custom/path .. Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests/unittests/torture_config.c')
-rw-r--r--tests/unittests/torture_config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unittests/torture_config.c b/tests/unittests/torture_config.c
index 958a6b6d..55b0f038 100644
--- a/tests/unittests/torture_config.c
+++ b/tests/unittests/torture_config.c
@@ -394,6 +394,8 @@ static void torture_config_unknown(void **state) {
assert_true(ret == 0);
ret = ssh_config_parse_file(session, "/etc/ssh/ssh_config");
assert_true(ret == 0);
+ ret = ssh_config_parse_file(session, GLOBAL_CLIENT_CONFIG);
+ assert_true(ret == 0);
}