summaryrefslogtreecommitdiff
path: root/mysql-test/lib/mtr_report.pm
diff options
context:
space:
mode:
authorBjorn Munch <bjorn.munch@oracle.com>2011-01-11 15:15:25 +0100
committerBjorn Munch <bjorn.munch@oracle.com>2011-01-11 15:15:25 +0100
commit8937cbd5ae593cc29b1473e18a0168e285f6fbff (patch)
tree2d39b6be598dc212c963ecd9651ec3292cfcd39b /mysql-test/lib/mtr_report.pm
parent83fea27b6124f9743a752f5d5cf3bea94763c9d9 (diff)
parente2b73747df97f7a739000671aa2454482b23f1d2 (diff)
downloadmariadb-git-8937cbd5ae593cc29b1473e18a0168e285f6fbff.tar.gz
upmerge 58896,58900,59002
Diffstat (limited to 'mysql-test/lib/mtr_report.pm')
-rw-r--r--mysql-test/lib/mtr_report.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_report.pm b/mysql-test/lib/mtr_report.pm
index af75178473d..3be679858bc 100644
--- a/mysql-test/lib/mtr_report.pm
+++ b/mysql-test/lib/mtr_report.pm
@@ -129,7 +129,8 @@ sub mtr_report_test ($) {
# Find out if this test case is an experimental one, so we can treat
# the failure as an expected failure instead of a regression.
for my $exp ( @$::experimental_test_cases ) {
- if ( $exp ne $test_name ) {
+ # Include pattern match for combinations
+ if ( $exp ne $test_name && $test_name !~ /^$exp / ) {
# if the expression is not the name of this test case, but has
# an asterisk at the end, determine if the characters up to
# but excluding the asterisk are the same