projects
/
working
/
random.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b82769e
)
colorize some of the output from settings-tester
author
Jason Etheridge
<jason@esilibrary.com>
Thu, 8 Aug 2013 19:11:50 +0000
(15:11 -0400)
committer
Jason Etheridge
<jason@esilibrary.com>
Thu, 8 Aug 2013 19:11:50 +0000
(15:11 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
qa/test_output_filter.pl
patch
|
blob
|
history
diff --git
a/qa/test_output_filter.pl
b/qa/test_output_filter.pl
index
cbe479c
..
fdf13ee
100755
(executable)
--- a/
qa/test_output_filter.pl
+++ b/
qa/test_output_filter.pl
@@
-19,12
+19,17
@@
while (my $line = <>) {
if ($line =~ /^ok/
|| $line =~ /\. ok/
|| $line =~ /^PASS/
+ || $line =~ /\* OK/
+ || $line =~ /\* Jabber successfully connected/
+ || $line =~ /\* Database has the expected server encoding /
) {
$class .= 'ok ';
}
$class .= 'error ' if ($line =~ /^err/i);
if ($line =~ /^not ok/
|| $line =~ /\. not ok/
+ || $line =~ /\* ERROR/
+ || $line =~ /\* WARNING/
) {
$class .= 'notok ';
$error_count++;