diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/evp_extra_test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c index 7f82a0cdf2..9230e7b995 100644 --- a/test/evp_extra_test.c +++ b/test/evp_extra_test.c @@ -4731,7 +4731,9 @@ int setup_tests(void) /* Swap the libctx to test non-default context only */ nullprov = OSSL_PROVIDER_load(NULL, "null"); deflprov = OSSL_PROVIDER_load(testctx, "default"); +#ifndef OPENSSL_SYS_TANDEM lgcyprov = OSSL_PROVIDER_load(testctx, "legacy"); +#endif break; case OPT_TEST_CASES: break; @@ -4863,6 +4865,8 @@ void cleanup_tests(void) { OSSL_PROVIDER_unload(nullprov); OSSL_PROVIDER_unload(deflprov); +#ifndef OPENSSL_SYS_TANDEM OSSL_PROVIDER_unload(lgcyprov); +#endif OSSL_LIB_CTX_free(testctx); } |