mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
mtr: abort when a suite.pm fails to load, don't just ignore the errors.
Fix all suite.pm files that had errors and test files that were skipped because of that
This commit is contained in:
@ -2,8 +2,8 @@ package My::Suite::Archive;
|
||||
|
||||
@ISA = qw(My::Suite);
|
||||
|
||||
return ("Need Archive engine" unless $ENV{HA_ARCHIVE_SO} or
|
||||
$::mysqld_variables{'archive'} eq "ON");
|
||||
return "Need Archive engine" unless $ENV{HA_ARCHIVE_SO} or
|
||||
$::mysqld_variables{'archive'} eq "ON";
|
||||
|
||||
bless { };
|
||||
|
||||
|
Reference in New Issue
Block a user