Only process lines that start with --

This commit is contained in:
unknown 2006-06-12 00:05:02 +02:00
parent 423f0601c2
commit 4dc5ee744e

View file

@ -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)
{