diff options
author | Matt Caswell <matt@openssl.org> | 2016-02-08 17:45:35 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-02-09 16:11:38 +0100 |
commit | 8793f012f11416abd300aa524057c863e8c16dd5 (patch) | |
tree | ae6a3c00048af2d608e5736d9753217052749b57 /test/srptest.c | |
parent | Get the apps to use auto-init/de-init (diff) | |
download | openssl-8793f012f11416abd300aa524057c863e8c16dd5.tar.xz openssl-8793f012f11416abd300aa524057c863e8c16dd5.zip |
Clean up the tests for auto-init/de-init
Remove the need to explicitly initialise/deinitialise for the tests
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/srptest.c')
-rw-r--r-- | test/srptest.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/srptest.c b/test/srptest.c index 442a6101d4..8379535029 100644 --- a/test/srptest.c +++ b/test/srptest.c @@ -129,7 +129,6 @@ int main(int argc, char **argv) CRYPTO_set_mem_debug(1); CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON); - ERR_load_crypto_strings(); /* "Negative" test, expect a mismatch */ if (run_srp("alice", "password1", "password2") == 0) { @@ -143,9 +142,6 @@ int main(int argc, char **argv) return 1; } - CRYPTO_cleanup_all_ex_data(); - ERR_remove_thread_state(NULL); - ERR_free_strings(); #ifndef OPENSSL_NO_CRYPTO_MDEBUG if (CRYPTO_mem_leaks(bio_err) <= 0) return 1; |