Details
-
Bug
-
Status: Closed (View Workflow)
-
Trivial
-
Resolution: Fixed
-
5.5.25
-
None
Description
Before 5.5 (or possibly before MDEV-30), skip-combinations provided on MTR command line worked as the name suggests. In 5.5 it is declared and accepted, but ignored (and in the code seems to be no use of it, instead there is a hash which is read from the suite file).
MariaDB 5.3:
|
ubuntu11:~/maria-5.3/mysql-test$ perl ./mtr binlog.binlog_tmp_table --skip-combinations
|
|
==============================================================================
|
|
TEST RESULT TIME (ms)
|
------------------------------------------------------------
|
|
worker[1] Using MTR_BUILD_THREAD 300, with reserved ports 16000..16019
|
binlog.binlog_tmp_table [ pass ] 2055
|
------------------------------------------------------------
|
The servers were restarted 0 times
|
Spent 2.055 of 4 seconds executing testcases
|
|
Completed: All 1 tests were successful.
|
MariaDB 5.5 (revno 3462):
|
perl ./mtr binlog.binlog_tmp_table --skip-combinations
|
|
|
==============================================================================
|
|
TEST RESULT TIME (ms) or COMMENT
|
--------------------------------------------------------------------------
|
|
worker[1] Using MTR_BUILD_THREAD 300, with reserved ports 16000..16019
|
binlog.binlog_tmp_table 'mix' [ pass ] 326
|
binlog.binlog_tmp_table 'row' [ skipped ] Neither MIXED nor STATEMENT binlog format
|
binlog.binlog_tmp_table 'stmt' [ pass ] 323
|
--------------------------------------------------------------------------
|
The servers were restarted 2 times
|
Spent 0.649 of 3 seconds executing testcases
|
|
Completed: All 2 tests were successful.
|
|
1 tests were skipped, 1 by the test itself.
|
It's a good option, would be nice to have it back if possible.