diff options
author | David Callu <callu.david@gmail.com> | 2019-09-17 08:22:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-18 16:03:53 (GMT) |
commit | 44e8b8f1f222c0227ed72d09310e30524bda9935 (patch) | |
tree | 7fdc361f34d0dd2da485eb94b3f7a0b8d16ab281 /Tests/FindGnuTLS/Test/main.c | |
parent | 729c928c7b59919a9d379891973bda22665c75da (diff) | |
download | CMake-44e8b8f1f222c0227ed72d09310e30524bda9935.zip CMake-44e8b8f1f222c0227ed72d09310e30524bda9935.tar.gz CMake-44e8b8f1f222c0227ed72d09310e30524bda9935.tar.bz2 |
FindGnuTLS: add target GnuTLS::GnuTLS
Also add a test case for the module.
Diffstat (limited to 'Tests/FindGnuTLS/Test/main.c')
-rw-r--r-- | Tests/FindGnuTLS/Test/main.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/FindGnuTLS/Test/main.c b/Tests/FindGnuTLS/Test/main.c new file mode 100644 index 0000000..122fb2d --- /dev/null +++ b/Tests/FindGnuTLS/Test/main.c @@ -0,0 +1,22 @@ +#include <assert.h> +#include <stdio.h> +#include <string.h> + +#include <gnutls/gnutls.h> + +int main() +{ + // test the linker + gnutls_session_t session; + if (gnutls_init(&session, GNUTLS_CLIENT)) { + gnutls_deinit(session); + } + + // check the version + char gnutls_version_string[16]; + snprintf(gnutls_version_string, 16, "%i.%i.%i", GNUTLS_VERSION_MAJOR, + GNUTLS_VERSION_MINOR, GNUTLS_VERSION_PATCH); + assert(strcmp(gnutls_version_string, CMAKE_EXPECTED_GNUTLS_VERSION) == 0); + + return 0; +} |