[Collab-qa-commits] r648 - log-analysis
lucas at alioth.debian.org
lucas at alioth.debian.org
Wed Jan 16 10:03:18 UTC 2008
Author: lucas
Date: 2008-01-16 10:03:18 +0000 (Wed, 16 Jan 2008)
New Revision: 648
Modified:
log-analysis/parse-logs-rebuild.rb
Log:
parse-logs-rebuild.rb: dpkg-shlibdeps errors
Modified: log-analysis/parse-logs-rebuild.rb
===================================================================
--- log-analysis/parse-logs-rebuild.rb 2008-01-16 10:00:43 UTC (rev 647)
+++ log-analysis/parse-logs-rebuild.rb 2008-01-16 10:03:18 UTC (rev 648)
@@ -17,6 +17,7 @@
[ /^Exception in thread /, 'JAVA_TB' ],
[ /^FAILED \[dsc verification\]$/, 'DSC_VERIF' ],
[ / not in arch list: \w+ -- skipping$/, 'NOTINARCH' ],
+ [ /dpkg-shlibdeps: failure/, 'DPKGSHLIB' ],
[ /^After installing, the following source dependencies are still unsatisfied:$/, 'BDEPUNSAT'],
# [ /\*\*\* No rule to make target/, 'NO_RULE' ],
]
@@ -32,6 +33,9 @@
else
rest, result, duration = stat.split(' ')
end
+ if result == "Failed" and s =~ /^unable to get login information for username "user" at \/usr\/lib\/dpkg\/controllib.pl line 72.$/
+ result = "OK"
+ end
if result == "OK" or result == "Unknown"
reason = ""
else
More information about the Collab-qa-commits
mailing list