diff options
Diffstat (limited to 'bugscan.rb')
-rw-r--r-- | bugscan.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bugscan.rb b/bugscan.rb new file mode 100644 index 0000000..4c6a2b0 --- /dev/null +++ b/bugscan.rb @@ -0,0 +1,13 @@ +# Regexes to match against the build log +$bug_matches = { + "com\\.sun\\.tools\\.javac\\.Main is not on the classpath" => "err_javacmissing", # e.g. gnu-getopt + "Unable to find a javac compiler" => "err_javacmissing", # e.g. fmj + "role: org\\.apache\\.maven\\.Maven" => "err_maven", # e.g. XmlSchema + "required file './depcomp' not found" => "err_depcomp", # e.g. admesh + "depcomp: No such file or directory" => "err_depcomp", # e.g. asteroids3D + "aclocal-1.\\d+: command not found" => "err_oldautoconf", # e.g. argtable2 + "Empty %files file.*\\.debugfiles.list" => "err_debuglist", # e.g. kon2 + "Empty %files file.*\\.lang" => "err_findlang", + "Installed \\(but unpackaged\\) file\\(s\\) found" => "err_unpackagedfile", # e.g. flvtool2 + "^ File not found:" => "err_packagedfilemissing", +} |