[test suite] minor bug fix for printing the number of test buckets to be executed

This commit is contained in:
Michael Rash 2013-05-09 21:11:45 -04:00
parent 9f9bbcbcdd
commit b92f892ae0

View File

@ -581,7 +581,7 @@ for my $test_hr (@tests) {
next unless &process_include_exclude(&get_msg($test_hr));
$test_buckets++;
if ($test_limit > 0) {
last if $executed >= $test_limit;
last if $test_buckets >= $test_limit;
}
}
&logr("[+] Total test buckets to execute: $test_buckets\n\n");