Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def addGaleraTests(factory, mtrDbPool):
util.Interpolate(
r"""
cd mysql-test &&
if [ -f "$WSREP_PROVIDER" ]; then exec perl mysql-test-run.pl --verbose-restart --force --retry=3 --max-save-core=2 --max-save-datadir=10 --max-test-fail=20 --mem --big-test --parallel=$(expr %(kw:jobs)s \* 2) %(kw:mtr_additional_args)s --suite=wsrep,galera,galera_3nodes,galera_3nodes_sr; fi
if [ -f "$WSREP_PROVIDER" ]; then exec perl mysql-test-run.pl --verbose-restart --force --retry=3 --max-save-core=2 --max-save-datadir=10 --max-test-fail=20 --mem --big-test --parallel=$(expr %(kw:jobs)s \* 2) %(kw:mtr_additional_args)s --suite=wsrep,galera,galera_sr,galera_3nodes,galera_3nodes_sr; fi
""",
mtr_additional_args=util.Property(
"mtr_additional_args", default=""
Expand Down
1 change: 1 addition & 0 deletions configuration/builders/sequences/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ def get_mtr_galera_steps(
[
SUITE.WSREP,
SUITE.GALERA,
SUITE.GALERA_SR,
SUITE.GALERA_3NODES,
SUITE.GALERA_3NODES_SR,
]
Expand Down
1 change: 1 addition & 0 deletions configuration/steps/generators/mtr/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class SUITE(StrEnum):
FUNCS_2 = "funcs_2"
FUNC_TEST = "func_test"
GALERA = "galera"
GALERA_SR = "galera_sr"
GALERA_3NODES = "galera_3nodes"
GALERA_3NODES_SR = "galera_3nodes_sr"
GCOL = "gcol"
Expand Down