diff options
author | unknown <msvensson@neptunus.(none)> | 2006-11-17 13:14:07 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-11-17 13:14:07 +0100 |
commit | 02cd4f5ada76abdbf80f6fdf46da3a7ac7efad51 (patch) | |
tree | b93e58c4b276ed4c994f8df70d91bbfdc5721b1e /mysql-test/lib | |
parent | f3e8cb194fac0ecd4fb0cac46e3c59f549125d0b (diff) | |
download | mariadb-git-02cd4f5ada76abdbf80f6fdf46da3a7ac7efad51.tar.gz |
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
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_cases.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/lib/mtr_cases.pl b/mysql-test/lib/mtr_cases.pl index d270d72d526..9e943fec9ef 100644 --- a/mysql-test/lib/mtr_cases.pl +++ b/mysql-test/lib/mtr_cases.pl @@ -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) { |