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
207c2cc2
Commit
207c2cc2
authored
Jul 15, 2008
by
Daniel Fischer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test case fix
parent
1c3f323a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
2 deletions
+17
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+3
-2
mysql-test/t/system_mysql_db_fix50030.test
mysql-test/t/system_mysql_db_fix50030.test
+7
-0
mysql-test/t/system_mysql_db_fix50117.test
mysql-test/t/system_mysql_db_fix50117.test
+7
-0
No files found.
mysql-test/mysql-test-run.pl
View file @
207c2cc2
...
...
@@ -251,7 +251,7 @@ our $opt_sleep;
our
$opt_testcase_timeout
;
our
$opt_suite_timeout
;
my
$default_testcase_timeout
=
15
;
# 15 min max
my
$default_suite_timeout
=
180
;
# 3
hours max
my
$default_suite_timeout
=
300
;
# 5
hours max
our
$opt_start_and_exit
;
our
$opt_start_dirty
;
...
...
@@ -1684,7 +1684,8 @@ sub executable_setup () {
# Look for mysql_fix_privilege_tables.sql script
$file_mysql_fix_privilege_tables
=
mtr_file_exists
("
$glob_basedir
/scripts/mysql_fix_privilege_tables.sql
",
"
$glob_basedir
/share/mysql_fix_privilege_tables.sql
");
"
$glob_basedir
/share/mysql_fix_privilege_tables.sql
",
"
$glob_basedir
/share/mysql/mysql_fix_privilege_tables.sql
");
if
(
!
$opt_skip_ndbcluster
and
executable_setup_ndb
())
{
...
...
mysql-test/t/system_mysql_db_fix50030.test
View file @
207c2cc2
# Embedded server doesn't support external clients
--
source
include
/
not_embedded
.
inc
# Don't run this test if $MYSQL_FIX_PRIVILEGE_TABLES isn't set
# to the location of mysql_fix_privilege_tables.sql
if
(
`SELECT LENGTH("$MYSQL_FIX_PRIVILEGE_TABLES") <= 0`
)
{
skip
Test
needs
MYSQL_FIX_PRIVILEGE_TABLES
;
}
#
# This is the test for mysql_fix_privilege_tables
# It checks that a system tables from mysql 5.0.30
...
...
mysql-test/t/system_mysql_db_fix50117.test
View file @
207c2cc2
# Embedded server doesn't support external clients
--
source
include
/
not_embedded
.
inc
# Don't run this test if $MYSQL_FIX_PRIVILEGE_TABLES isn't set
# to the location of mysql_fix_privilege_tables.sql
if
(
`SELECT LENGTH("$MYSQL_FIX_PRIVILEGE_TABLES") <= 0`
)
{
skip
Test
needs
MYSQL_FIX_PRIVILEGE_TABLES
;
}
#
# This is the test for mysql_fix_privilege_tables
# It checks that a system tables from mysql 5.1.17
...
...
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