diff options
-rw-r--r-- | bugscan.rb | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,7 +20,6 @@ $bug_matches = { "\\[ERROR\\] *Cannot satisfy dependency:" => "err_javadep", # e.g. eclipse-cdt "unresolved dependency: .*: not found" => "err_javadep", # e.g. sbt "-unsafe-string is not available." => "err_ocamlunsafestring", # e.g. mp3packer - "multiple definition of" => "err_multipledefinition", "scalar and rank-1" => "err_fortranscalarandrank", "ISO C\\+\\+17 does not allow dynamic exception specifications" => "err_dynamicexception", # e.g. advancecomp "contains a standard '/usr/lib" => "err_rpath", # e.g. gnokii @@ -28,4 +27,9 @@ $bug_matches = { "Failed to load XMvn configuration" => "err_wmvnconfig", # e.g. junitperf "did you forget to '#include" => "err_stdheaders", # e.g. lnav "format not a string literal and no format arguments" => "err_literalformat", # e.g. bcunit + "multiple definition of .*enum fsconfig_command" => "err_mountcompat", + "redefinition of .*struct mount_attr" => "err_mountcompat", + +# The following have more specific matches above + "multiple definition of" => "err_multipledefinition", } |