Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fff57e9d
Commit
fff57e9d
authored
Feb 25, 2009
by
Daniel Fischer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
address review comments
parent
b466018c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
22 deletions
+34
-22
mysql-test/collections/README.experimental
mysql-test/collections/README.experimental
+1
-1
mysql-test/lib/mtr_report.pm
mysql-test/lib/mtr_report.pm
+11
-5
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+22
-16
No files found.
mysql-test/collections/README.experimental
View file @
fff57e9d
...
...
@@ -11,7 +11,7 @@ The syntax is as follows:
2) Empty lines and lines starting with a hash (#) are ignored.
3) If any other line contains a bla
c
k followed by a hash (#), the hash
3) If any other line contains a bla
n
k followed by a hash (#), the hash
and any subsequent characters are ignored.
4) The full test case name including the suite and execution mode
...
...
mysql-test/lib/mtr_report.pm
View file @
fff57e9d
...
...
@@ -109,10 +109,10 @@ sub mtr_report_test ($) {
my
(
$tinfo
)
=
@_
;
my
$test_name
=
_mtr_report_test_name
(
$tinfo
);
my
$comment
=
$tinfo
->
{'
comment
'};
my
$logfile
=
$tinfo
->
{'
logfile
'};
my
$warnings
=
$tinfo
->
{'
warnings
'};
my
$result
=
$tinfo
->
{'
result
'};
my
$comment
=
$tinfo
->
{'
comment
'};
my
$logfile
=
$tinfo
->
{'
logfile
'};
my
$warnings
=
$tinfo
->
{'
warnings
'};
my
$result
=
$tinfo
->
{'
result
'};
if
(
$result
eq
'
MTR_RES_FAILED
'){
...
...
@@ -123,14 +123,20 @@ 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
(
@$::
opt_experimental
)
{
for
my
$exp
(
@$::
experimental_test_cases
)
{
if
(
$exp
ne
$test_name
)
{
# 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
if
(
$exp
ne
""
&&
substr
(
$exp
,
-
1
,
1
)
eq
"
*
"
)
{
$exp
=
substr
(
$exp
,
0
,
length
(
$exp
)
-
1
);
if
(
substr
(
$test_name
,
0
,
length
(
$exp
))
ne
$exp
)
{
# no match, try next entry
next
;
}
# if yes, fall through to set the exp-fail status
}
else
{
# no match, try next entry
next
;
}
}
...
...
mysql-test/mysql-test-run.pl
View file @
fff57e9d
...
...
@@ -170,6 +170,7 @@ my $config; # The currently running config
my
$current_config_name
;
# The currently running config file template
our
$opt_experimental
;
our
$experimental_test_cases
;
my
$baseport
;
my
$opt_build_thread
=
$ENV
{'
MTR_BUILD_THREAD
'}
||
"
auto
";
...
...
@@ -963,24 +964,29 @@ sub command_line_setup {
if
(
$opt_experimental
)
{
if
(
open
(
FILE
,
"
<
",
$opt_experimental
)
)
{
mtr_report
("
Using experimental file:
$opt_experimental
");
$opt_experimental
=
[]
;
while
(
<
FILE
>
)
{
chomp
;
s/( +|^)#.*$//
;
s/^ +//
;
s/ +$//
;
if
(
$_
eq
""
)
{
next
;
}
print
"
-
$_
\n
";
push
@$opt_experimental
,
$_
;
# read the list of experimental test cases from the file specified on
# the command line
open
(
FILE
,
"
<
",
$opt_experimental
)
or
mtr_error
("
Can't read experimental file:
$opt_experimental
");
mtr_report
("
Using experimental file:
$opt_experimental
");
$experimental_test_cases
=
[]
;
while
(
<
FILE
>
)
{
chomp
;
# remove comments (# foo) at the beginning of the line, or after a
# blank at the end of the line
s/( +|^)#.*$//
;
# remove whitespace
s/^ +//
;
s/ +$//
;
# if nothing left, don't need to remember this line
if
(
$_
eq
""
)
{
next
;
}
close
FILE
;
}
else
{
mtr_error
("
Can't read experimental file:
$opt_experimental
");
# remember what is left as the name of another test case that should be
# treated as experimental
print
"
-
$_
\n
";
push
@$experimental_test_cases
,
$_
;
}
close
FILE
;
}
foreach
my
$arg
(
@ARGV
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment