1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

BUG#24274 option "--big-test" of mysql-test-run.pl does not work anymore

mysql-test/lib/mtr_cases.pl:
  Don't look at lines that start with # ie. a comment
mysql-test/mysql-test-run.pl:
  Set env BIG_TEST if --big-test passed
This commit is contained in:
unknown
2006-11-17 13:14:07 +01:00
parent f3e8cb194f
commit 02cd4f5ada
2 changed files with 15 additions and 9 deletions

View File

@ -593,6 +593,10 @@ sub mtr_options_from_test_file($$) {
while ( my $line= <$F> )
{
# Skip line if it start's with #
next if ( $line =~ /^#/ );
# Match this line against tag in "tags" array
foreach my $tag (@tags)
{