Merged fix-1015590-pt-mysql-summary-percona-server-5.5

This commit is contained in:
Brian Fraser fraserb@gmail.com
2012-12-05 21:10:22 -03:00
12 changed files with 1273 additions and 47 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
plan 41
plan 44
. "$LIB_DIR/alt_cmds.sh"
. "$LIB_DIR/log_warn_die.sh"
@@ -782,6 +782,31 @@ is \
"parse_wsrep_provider_options works for gcache.name"
# ###########################################################################
# pt-mysql-summary not Percona Server 5.5-ready
# https://bugs.launchpad.net/percona-toolkit/+bug/1015590
# ###########################################################################
section_percona_server_features "$samples/percona-server-5.5-variables" > "$PT_TMPDIR/got"
no_diff \
"$PT_TMPDIR/got" \
"$samples/expected_output_ps-features.txt" \
"Bug 1015590: pt-mysql-summary not Percona Server 5.5-ready"
section_percona_server_features "$samples/percona-server-5.1-variables" > "$PT_TMPDIR/got"
no_diff \
"$PT_TMPDIR/got" \
"$samples/expected_output_ps-5.1-features.txt" \
"Bug 1015590: section_percona_server_features works on 5.1 with innodb_adaptive_checkpoint=none"
section_percona_server_features "$samples/percona-server-5.1-variables-martin" > "$PT_TMPDIR/got"
cp "$PT_TMPDIR/got" /tmp/dasgot
no_diff \
"$PT_TMPDIR/got" \
"$samples/expected_output_ps-5.1-martin.txt" \
"section_percona_server_features works on 5.1"
# ###########################################################################
# Done
# ###########################################################################