1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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:
unknown
2006-10-17 08:10:51 +02:00
parent b8177c3ead
commit dd5edc0aaa

View File

@ -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';