From 1a347713ee88dc761434dbf6d43586ed04dddea1 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 21 Aug 2013 14:04:00 -0400 Subject: [PATCH] handle general test failure Signed-off-by: Jason Etheridge --- qa/test_output_webifier.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qa/test_output_webifier.pl b/qa/test_output_webifier.pl index 3b32c9677..264d88430 100755 --- a/qa/test_output_webifier.pl +++ b/qa/test_output_webifier.pl @@ -68,6 +68,12 @@ while (my $line = <>) { $class .= 'fail '; $error_count++; } + if ($line =~ /^Return Value = (.+)$/) { + if ($1 ne '0') { + $class .= 'fail '; + $error_count++; + } + } if ($line =~ /^#/ || $line =~ /Checks:/ || $line =~ /_\.-~=/ -- 2.11.0