1call mtr.add_suppression("Failed to set up SSL because of the following SSL library error");
2################## FR8: --ssl only applies to startups
3# Check if ssl is off: must be off.
4# reset and enable SSL
5ALTER INSTANCE RELOAD TLS;
6# SSL must be enabled now despite the value of --ssl
71
81
9# cleanup
10SET @orig_ssl_ca= @@global.ssl_ca;
11SET GLOBAL ssl_ca = 'gizmo';
12ALTER INSTANCE RELOAD TLS NO ROLLBACK ON ERROR;
13Warnings:
14Warning	3888	Failed to set up SSL because of the following SSL library error: SSL_CTX_set_default_verify_paths failed
15SET GLOBAL ssl_ca = @orig_ssl_ca;
16################## End of dynamic SSL tests
17