Commit 4dc5ee74 authored by unknown's avatar unknown
Browse files

Only process lines that start with --

parent 423f0601
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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)
    {