From 092d4f81f4032ba104c3859a43c4d70de1e260bf Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 12 Dec 2018 11:03:08 -0500 Subject: [PATCH] tighten down error detection --- qa/test_output_webifier.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/test_output_webifier.pl b/qa/test_output_webifier.pl index 0fe54b356..b1458ee1b 100755 --- a/qa/test_output_webifier.pl +++ b/qa/test_output_webifier.pl @@ -65,7 +65,7 @@ while (my $line = <>) { || $line =~ /\* ERROR/ || $line =~ /\* WARNING/ || $line =~ /\[ERR/ - || $line =~ /ERROR:/ + || ($line =~ /ERROR:/ && !($line =~ /ERROR: 0/)) || $line =~ /ERROR LOG:/ || $line =~ /Please install/ ) { -- 2.11.0