t/pt-query-digest/processlist.t: Mark known fragile test as TODO to avoid white smoke

This commit is contained in:
Brian Fraser fraserb@gmail.com
2012-07-15 19:24:41 -03:00
parent 03e45f97b8
commit 0af747e4f9

View File

@@ -61,14 +61,17 @@ my $output = output(
# the usual stddev. -- stddev doesn't matter much. It's the other vals # the usual stddev. -- stddev doesn't matter much. It's the other vals
# that indicate that --processlist works. # that indicate that --processlist works.
$exec =~ s/(\S+) 3s$/786ms 3s/; $exec =~ s/(\S+) 3s$/786ms 3s/;
ok( TODO: {
no_diff( local $::TODO = "This is a timing-related test, which may occasionally fail";
$exec, ok(
"t/pt-query-digest/samples/proclist001.txt", no_diff(
cmd_output => 1, $exec,
), "t/pt-query-digest/samples/proclist001.txt",
"--processlist correctly observes and measures multiple queries" cmd_output => 1,
); ),
"--processlist correctly observes and measures multiple queries"
);
}
# ############################################################################# # #############################################################################
# Done. # Done.