mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Only process lines that start with --
This commit is contained in:
parent
423f0601c2
commit
4dc5ee744e
1 changed files with 3 additions and 0 deletions
|
@ -529,6 +529,9 @@ sub mtr_options_from_test_file($$) {
|
|||
{
|
||||
chomp;
|
||||
|
||||
# Skip all lines not starting with "--"
|
||||
next if ( ! /^--/ );
|
||||
|
||||
# Match this line against tag in "tags" array
|
||||
foreach my $tag (@tags)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue