Line data Source code
1 : /**
2 : * @file
3 : *
4 : * @brief test suite for the crypto plugin (OpenSSL compile variant)
5 : *
6 : * @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
7 : *
8 : */
9 :
10 : #include "test_internals.h"
11 :
12 : #define PLUGIN_NAME "crypto_openssl"
13 :
14 0 : int main (int argc, char ** argv)
15 : {
16 0 : printf ("CYPTO TESTS\n");
17 0 : printf ("==================\n\n");
18 :
19 0 : init (argc, argv);
20 :
21 0 : TEST_SUITE (PLUGIN_NAME);
22 :
23 0 : print_result (PLUGIN_NAME);
24 0 : return nbError;
25 : }
|