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
b7b991ad
Commit
b7b991ad
authored
Feb 06, 2014
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix tests to cleanup after themselves
parent
3403f06d
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
16 additions
and
0 deletions
+16
-0
mysql-test/extra/rpl_tests/rpl_ddl.test
mysql-test/extra/rpl_tests/rpl_ddl.test
+1
-0
mysql-test/r/partition_debug_sync.result
mysql-test/r/partition_debug_sync.result
+1
-0
mysql-test/suite/binlog/r/binlog_checkpoint.result
mysql-test/suite/binlog/r/binlog_checkpoint.result
+1
-0
mysql-test/suite/binlog/t/binlog_checkpoint.test
mysql-test/suite/binlog/t/binlog_checkpoint.test
+1
-0
mysql-test/suite/rpl/r/rpl_ddl.result
mysql-test/suite/rpl/r/rpl_ddl.result
+1
-0
mysql-test/suite/rpl/r/rpl_gtid_ignored.result
mysql-test/suite/rpl/r/rpl_gtid_ignored.result
+2
-0
mysql-test/suite/rpl/r/rpl_parallel_no_log_slave_updates.result
...test/suite/rpl/r/rpl_parallel_no_log_slave_updates.result
+2
-0
mysql-test/suite/rpl/t/rpl_gtid_ignored.test
mysql-test/suite/rpl/t/rpl_gtid_ignored.test
+4
-0
mysql-test/suite/rpl/t/rpl_parallel_no_log_slave_updates.test
...l-test/suite/rpl/t/rpl_parallel_no_log_slave_updates.test
+2
-0
mysql-test/t/partition_debug_sync.test
mysql-test/t/partition_debug_sync.test
+1
-0
No files found.
mysql-test/extra/rpl_tests/rpl_ddl.test
View file @
b7b991ad
...
...
@@ -608,6 +608,7 @@ use test;
--
echo
--
echo
--------
switch
to
master
-------
connection
master
;
DROP
TEMPORARY
TABLE
mysqltest1
.
t22
;
DROP
DATABASE
mysqltest1
;
# mysqltest2 was alreday DROPPED some tests before.
DROP
DATABASE
mysqltest3
;
mysql-test/r/partition_debug_sync.result
View file @
b7b991ad
...
...
@@ -84,4 +84,5 @@ SELECT 1;
# Con1
UNLOCK TABLES;
# Default
SET DEBUG_SYNC = 'RESET';
DROP TABLE t1, t2;
mysql-test/suite/binlog/r/binlog_checkpoint.result
View file @
b7b991ad
...
...
@@ -115,3 +115,4 @@ master-bin.000006 #
DROP TABLE t1, t2;
SET GLOBAL max_binlog_size= @old_max_binlog_size;
SET GLOBAL innodb_flush_log_at_trx_commit= @old_innodb_flush_log_at_trx_commit;
SET debug_sync = 'reset';
mysql-test/suite/binlog/t/binlog_checkpoint.test
View file @
b7b991ad
...
...
@@ -143,3 +143,4 @@ INSERT INTO t1 VALUES (31, REPEAT("x", 4100));
DROP
TABLE
t1
,
t2
;
SET
GLOBAL
max_binlog_size
=
@
old_max_binlog_size
;
SET
GLOBAL
innodb_flush_log_at_trx_commit
=
@
old_innodb_flush_log_at_trx_commit
;
SET
debug_sync
=
'reset'
;
mysql-test/suite/rpl/r/rpl_ddl.result
View file @
b7b991ad
...
...
@@ -1617,6 +1617,7 @@ user
use test;
-------- switch to master -------
DROP TEMPORARY TABLE mysqltest1.t22;
DROP DATABASE mysqltest1;
DROP DATABASE mysqltest3;
include/rpl_end.inc
mysql-test/suite/rpl/r/rpl_gtid_ignored.result
View file @
b7b991ad
...
...
@@ -66,5 +66,7 @@ a
9
DROP TABLE t1;
SET GLOBAL gtid_strict_mode= @old_gtid_strict_mode;
SET debug_sync = "reset";
SET GLOBAL gtid_strict_mode= @old_gtid_strict_mode;
SET debug_sync = "reset";
include/rpl_end.inc
mysql-test/suite/rpl/r/rpl_parallel_no_log_slave_updates.result
View file @
b7b991ad
...
...
@@ -116,7 +116,9 @@ SET GLOBAL slave_parallel_threads=10;
include/start_slave.inc
include/stop_slave.inc
SET GLOBAL slave_parallel_threads=@old_parallel_threads;
SET debug_sync = 'reset';
include/start_slave.inc
DROP function foo;
DROP TABLE t3;
SET debug_sync = 'reset';
include/rpl_end.inc
mysql-test/suite/rpl/t/rpl_gtid_ignored.test
View file @
b7b991ad
...
...
@@ -130,7 +130,11 @@ SELECT * FROM t1 ORDER BY a;
--
connection
server_1
DROP
TABLE
t1
;
SET
GLOBAL
gtid_strict_mode
=
@
old_gtid_strict_mode
;
SET
debug_sync
=
"reset"
;
--
connection
server_2
SET
GLOBAL
gtid_strict_mode
=
@
old_gtid_strict_mode
;
SET
debug_sync
=
"reset"
;
--
source
include
/
rpl_end
.
inc
mysql-test/suite/rpl/t/rpl_parallel_no_log_slave_updates.test
View file @
b7b991ad
...
...
@@ -190,10 +190,12 @@ SET GLOBAL slave_parallel_threads=10;
--
connection
server_2
--
source
include
/
stop_slave
.
inc
SET
GLOBAL
slave_parallel_threads
=@
old_parallel_threads
;
SET
debug_sync
=
'reset'
;
--
source
include
/
start_slave
.
inc
--
connection
server_1
DROP
function
foo
;
DROP
TABLE
t3
;
SET
debug_sync
=
'reset'
;
--
source
include
/
rpl_end
.
inc
mysql-test/t/partition_debug_sync.test
View file @
b7b991ad
...
...
@@ -131,5 +131,6 @@ UNLOCK TABLES;
--
echo
# Default
connection
default
;
SET
DEBUG_SYNC
=
'RESET'
;
DROP
TABLE
t1
,
t2
;
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