Skip to content
Permalink
Browse files
Enable valgrind for replication test
The following tests are disabled when running --valgrding without --big:
- rpl.rpl_ssl
- rpl.rpl_semi_sync_event
- All encryption test (which includes have_file_key_management.inc)
  • Loading branch information
montywi committed Nov 29, 2022
1 parent 112870d commit 5b275b4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
@@ -2,3 +2,9 @@ if (`SELECT COUNT(*)=0 FROM INFORMATION_SCHEMA.PLUGINS WHERE PLUGIN_NAME = 'file
{
--skip Test requires file_key_management plugin
}

#
# This file is only included when using encryption. As all encryption test are
# very slow with valgrind, lets disable these if not run with --big
#
--source include/no_valgrind_without_big.inc
@@ -1,5 +1,3 @@
--source include/no_valgrind_without_big.inc

# ==== Purpose ====
#
# Configure two servers to be replication master and slave.
@@ -6,6 +6,7 @@

source include/have_ssl_communication.inc;
source include/master-slave.inc;
source include/no_valgrind_without_big.inc;

# create a user for replication that requires ssl encryption
connection master;
@@ -1,6 +1,7 @@
source include/not_embedded.inc;
source include/have_innodb.inc;
source include/master-slave.inc;
source include/no_valgrind_without_big.inc;

let $engine_type= InnoDB;

0 comments on commit 5b275b4

Please sign in to comment.