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

This commit is contained in:
msvensson@shellback.(none) 2006-10-17 08:10:51 +02:00
parent 947d219d1b
commit 3f46c5cdbd

View file

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