diff options
author | unknown <msvensson@pilot.mysql.com> | 2008-02-04 09:15:44 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2008-02-04 09:15:44 +0100 |
commit | 136e285055c9e6ef9a060dcfcb443fedc3e41274 (patch) | |
tree | 376f03c2a535a9253497d64ea6d29c297b36861f /mysql-test/lib/t | |
parent | 551a899c8d83835d1723f46b8fe06e11b04006d8 (diff) | |
download | mariadb-git-136e285055c9e6ef9a060dcfcb443fedc3e41274.tar.gz |
Add --verbose-restart
mysql-test/lib/mtr_cases.pm:
Fix typo
mysql-test/mysql-test-run.pl:
Add --verbose-restart
Remove unused
mysql-test/lib/mtr_report.pl:
Add 'mtr_verbose_restart'
mysql-test/lib/t/Options.t:
Extend uint test
Diffstat (limited to 'mysql-test/lib/t')
-rw-r--r-- | mysql-test/lib/t/Options.t | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/lib/t/Options.t b/mysql-test/lib/t/Options.t index e48999cd99b..7012f3da8de 100644 --- a/mysql-test/lib/t/Options.t +++ b/mysql-test/lib/t/Options.t @@ -1,3 +1,4 @@ + # -*- cperl -*- use Test::More qw(no_plan); use strict; @@ -96,6 +97,12 @@ my @tests= ['--max_binlog_size=1', '--relay-log=/path/to/a/relay-log', '--binlog-format=default' ] ], + [ + [ '--slow-query-log=0' ], + [ '--slow-query-log' ], + [ '--slow-query-log' ] + ], + ); |