~percona-toolkit-dev/percona-toolkit/pt-table-checksum-fails-on-BINARY-field-in-PK-1381280

« back to all changes in this revision

Viewing changes to t/pt-table-checksum/bugs.t

  • Committer: Daniel Nichter
  • Date: 2013-02-19 01:06:05 UTC
  • mto: This revision was merged to the branch mainline in revision 527.
  • Revision ID: daniel@percona.com-20130219010605-yxef471u1hfus4w6
Various test fixes for MySQL 5.6.10 (which seems not to have mysql.hosts any longer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
# #############################################################################
196
196
 
197
197
($output) = output(
198
 
   sub { pt_table_checksum::main(@args, '--tables', 'mysql.user,mysql.host',
 
198
   sub { pt_table_checksum::main(@args, '--tables', 'mysql.user,mysql.db',
199
199
                                 '--columns', 'some_fale_column') },
200
200
   stderr => 1,
201
201
);
269
269
      "...and warns for both level 1 and level 2 slaves"
270
270
   ) or diag($output);
271
271
 
272
 
   diag(`$trunk/sandbox/stop-sandbox 12348 12349`);
 
272
   diag(`$trunk/sandbox/stop-sandbox 12349 12348`);
273
273
}
274
274
 
275
275
# #############################################################################
278
278
$sb->wipe_clean($master_dbh);
279
279
ok($sb->ok(), "Sandbox servers") or BAIL_OUT(__FILE__ . " broke the sandbox");
280
280
done_testing;
281
 
exit;