Only print thesort order debug printout if using script-debug

parent 22f1cc58
...@@ -186,13 +186,13 @@ sub collect_test_cases ($) { ...@@ -186,13 +186,13 @@ sub collect_test_cases ($) {
@$cases = sort { $sort_criteria{$a->{"name"}} cmp $sort_criteria{$b->{"name"}}; } @$cases; @$cases = sort { $sort_criteria{$a->{"name"}} cmp $sort_criteria{$b->{"name"}}; } @$cases;
### For debugging the sort-order if ( $::opt_script_debug )
foreach $tinfo (@$cases)
{ {
print $sort_criteria{$tinfo->{"name"}}; # For debugging the sort-order
print " -> \t"; foreach $tinfo (@$cases)
print $tinfo->{"name"}; {
print "\n"; print("$sort_criteria{$tinfo->{'name'}} -> \t$tinfo->{'name'}\n");
}
} }
} }
......
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