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
e5ae860e
Commit
e5ae860e
authored
Aug 17, 2009
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #46755 Wrong grammar in some skip messages: Test need instead of Test needs
Fixed in two comments as well
parent
2000cef7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+5
-5
No files found.
mysql-test/lib/mtr_cases.pm
View file @
e5ae860e
...
@@ -847,14 +847,14 @@ sub collect_one_test_case {
...
@@ -847,14 +847,14 @@ sub collect_one_test_case {
if
(
$tinfo
->
{'
big_test
'}
and
!
$::opt_big_test
)
if
(
$tinfo
->
{'
big_test
'}
and
!
$::opt_big_test
)
{
{
$tinfo
->
{'
skip
'}
=
1
;
$tinfo
->
{'
skip
'}
=
1
;
$tinfo
->
{'
comment
'}
=
"
Test need 'big-test' option
";
$tinfo
->
{'
comment
'}
=
"
Test need
s
'big-test' option
";
return
$tinfo
return
$tinfo
}
}
if
(
$tinfo
->
{'
need_debug
'}
&&
!
$::debug_compiled_binaries
)
if
(
$tinfo
->
{'
need_debug
'}
&&
!
$::debug_compiled_binaries
)
{
{
$tinfo
->
{'
skip
'}
=
1
;
$tinfo
->
{'
skip
'}
=
1
;
$tinfo
->
{'
comment
'}
=
"
Test need debug binaries
";
$tinfo
->
{'
comment
'}
=
"
Test need
s
debug binaries
";
return
$tinfo
return
$tinfo
}
}
...
@@ -890,14 +890,14 @@ sub collect_one_test_case {
...
@@ -890,14 +890,14 @@ sub collect_one_test_case {
if
(
$tinfo
->
{'
federated_test
'})
if
(
$tinfo
->
{'
federated_test
'})
{
{
# This is a test that need federated, enable it
# This is a test that need
s
federated, enable it
push
(
@
{
$tinfo
->
{'
master_opt
'}},
"
--loose-federated
");
push
(
@
{
$tinfo
->
{'
master_opt
'}},
"
--loose-federated
");
push
(
@
{
$tinfo
->
{'
slave_opt
'}},
"
--loose-federated
");
push
(
@
{
$tinfo
->
{'
slave_opt
'}},
"
--loose-federated
");
}
}
if
(
$tinfo
->
{'
innodb_test
'}
)
if
(
$tinfo
->
{'
innodb_test
'}
)
{
{
# This is a test that need innodb
# This is a test that need
s
innodb
if
(
$::mysqld_variables
{'
innodb
'}
eq
"
OFF
"
||
if
(
$::mysqld_variables
{'
innodb
'}
eq
"
OFF
"
||
!
exists
$::mysqld_variables
{'
innodb
'}
)
!
exists
$::mysqld_variables
{'
innodb
'}
)
{
{
...
@@ -918,7 +918,7 @@ sub collect_one_test_case {
...
@@ -918,7 +918,7 @@ sub collect_one_test_case {
if
(
grep
(
/^--skip-log-bin/
,
@::opt_extra_mysqld_opt
)
)
if
(
grep
(
/^--skip-log-bin/
,
@::opt_extra_mysqld_opt
)
)
{
{
$tinfo
->
{'
skip
'}
=
1
;
$tinfo
->
{'
skip
'}
=
1
;
$tinfo
->
{'
comment
'}
=
"
Test need binlog
";
$tinfo
->
{'
comment
'}
=
"
Test need
s
binlog
";
return
$tinfo
;
return
$tinfo
;
}
}
}
}
...
...
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