Commit 4dc5ee74 authored by unknown's avatar unknown

Only process lines that start with --

parent 423f0601
......@@ -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)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment