From 0ca0851a01251b960ba19d958978004168f58593 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 26 Feb 2019 17:04:25 +0300 Subject: Add implementation --- libssl/tests/basic/driver.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 libssl/tests/basic/driver.c (limited to 'libssl/tests/basic/driver.c') diff --git a/libssl/tests/basic/driver.c b/libssl/tests/basic/driver.c new file mode 100644 index 0000000..56e9c5f --- /dev/null +++ b/libssl/tests/basic/driver.c @@ -0,0 +1,17 @@ +/* + * file : tests/basic/driver.c + * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC + * license : OpenSSL and SSLeay Licenses; see accompanying LICENSE file + */ + +#include + +#include + +int +main () +{ + assert (OPENSSL_init_ssl (0 /* opts */, NULL /* settings */) == 1); + + return 0; +} -- cgit v1.1