WL#4189 mtr.pl v2

- Fix faulty regex used for filtering out suspicious warnings, causing
   warnings/errors from previous tests to be reported
This commit is contained in:
Magnus Svensson 2009-01-28 17:46:00 +01:00
parent 7ea8e52529
commit f3f31c9ede

View file

@ -3388,7 +3388,7 @@ sub extract_warning_lines ($) {
my @lines;
while ( my $line = <$Ferr> )
{
if ( $line =~ /"^CURRENT_TEST:"/ )
if ( $line =~ /^CURRENT_TEST:/ )
{
# Throw away lines from previous tests
@lines = ();