Commit 9c843af8 authored by unknown's avatar unknown

Skip tests that need debug binaries only if binaries are _not_ debug compiled

parent 4dc5ee74
...@@ -485,7 +485,7 @@ sub collect_one_test_case($$$$$$$) { ...@@ -485,7 +485,7 @@ sub collect_one_test_case($$$$$$$) {
$tinfo->{'comment'}= "Not running with binlog format '$tinfo->{'binlog_format'}'"; $tinfo->{'comment'}= "Not running with binlog format '$tinfo->{'binlog_format'}'";
} }
if ( $tinfo->{'need_debug'} && $::debug_compiled_binaries ) if ( $tinfo->{'need_debug'} && ! $::debug_compiled_binaries )
{ {
$tinfo->{'skip'}= 1; $tinfo->{'skip'}= 1;
$tinfo->{'comment'}= "Test need debug binaries"; $tinfo->{'comment'}= "Test need debug binaries";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment