Commit dd5edc0a authored by unknown's avatar unknown

When calculating what features to use for _this_ test run, don't look at test...

When calculating what features to use for _this_ test run, don't look at test that already are deterined to be skipped


parent b8177c3e
......@@ -391,6 +391,8 @@ sub main () {
my ($need_ndbcluster,$need_im);
foreach my $test (@$tests)
{
next if $test->{skip};
$need_ndbcluster||= $test->{ndb_test};
$need_im||= $test->{component_id} eq 'im';
......
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