diff options
author | Anderson Toshiyuki Sasaki <ansasaki@redhat.com> | 2019-03-01 13:15:35 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2019-04-01 08:38:17 +0200 |
commit | bab4d2b77b820961bc4b6ba081af27673f139b7a (patch) | |
tree | 81542b855d69f8bc361bec42915a6c5ed306be2c /tests/unittests/CMakeLists.txt | |
parent | 55a713cb04550e340afaabc4073212b872ff37e2 (diff) | |
download | libssh-bab4d2b77b820961bc4b6ba081af27673f139b7a.tar.gz libssh-bab4d2b77b820961bc4b6ba081af27673f139b7a.tar.xz libssh-bab4d2b77b820961bc4b6ba081af27673f139b7a.zip |
tests: Add tests for server side configuration
Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests/unittests/CMakeLists.txt')
-rw-r--r-- | tests/unittests/CMakeLists.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/unittests/CMakeLists.txt b/tests/unittests/CMakeLists.txt index c33f7a0d..389100bd 100644 --- a/tests/unittests/CMakeLists.txt +++ b/tests/unittests/CMakeLists.txt @@ -43,10 +43,16 @@ if (UNIX AND NOT WIN32) torture_channel ) - if (WITH_SERVER AND WITH_GEX) + if (WITH_SERVER) set(LIBSSH_UNIT_TESTS ${LIBSSH_UNIT_TESTS} - torture_moduli) + torture_bind_config) + + if (WITH_GEX) + set(LIBSSH_UNIT_TESTS + ${LIBSSH_UNIT_TESTS} + torture_moduli) + endif() endif() |