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
f116004a
Commit
f116004a
authored
Jun 08, 2007
by
msvensson@pilot.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
into pilot.(none):/data/msvensson/mysql/mysql-5.1-new-maint
parents
74ea1037
9ed0e74d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
mysql-test/include/uses_vardir.inc
mysql-test/include/uses_vardir.inc
+2
-3
mysql-test/lib/mtr_cases.pl
mysql-test/lib/mtr_cases.pl
+6
-3
No files found.
mysql-test/include/uses_vardir.inc
View file @
f116004a
...
@@ -7,9 +7,8 @@
...
@@ -7,9 +7,8 @@
# outside of it's vardir anyway
# outside of it's vardir anyway
#
#
let
$datadir
=
query_get_value
(
"SHOW VARIABLES LIKE 'datadir'"
,
Value
,
1
);
if
(
`select LOCATE('$MYSQLTEST_VARDIR', REPLACE(@@datadir, '\\\\', '/')) != 1`
)
if
(
`select LOCATE("$MYSQLTEST_VARDIR", "$datadir") != 1`
)
{
{
skip
Need
mysqld
in
MYSQLTEST_VARDIR
;
skip
Need
mysqld
in
MYSQLTEST_VARDIR
;
}
}
mysql-test/lib/mtr_cases.pl
View file @
f116004a
...
@@ -606,11 +606,14 @@ sub collect_one_test_case($$$$$$$) {
...
@@ -606,11 +606,14 @@ sub collect_one_test_case($$$$$$$) {
}
}
}
}
else
else
{
if
(
$::mysql_version_id
>=
50100
)
{
{
# Test does not need binlog, add --skip-binlog to
# Test does not need binlog, add --skip-binlog to
# the options used when starting it
# the options used when starting it
push
(
@
{
$tinfo
->
{'
master_opt
'}},
"
--skip-log-bin
");
push
(
@
{
$tinfo
->
{'
master_opt
'}},
"
--skip-log-bin
");
}
}
}
}
}
}
}
...
...
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