diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2022-07-19 13:00:02 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2022-07-19 13:00:02 -0700 |
commit | ba900033ffe354db87ee445b7fd708d6e3a9e5fc (patch) | |
tree | b788fe2143b0da41feb2e98d8b94c45de19bb9d5 | |
parent | f66bb9802befb0295b531fe43daf31ba3633c7d6 (diff) | |
download | autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar.gz autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar.bz2 autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar.xz autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.zip |
Add err_literalformat
-rw-r--r-- | bugscan.rb | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ # Regexes to match against the build log +# Update https://wiki.mageia.org/en/Autobuild_errors when a new tag is added $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 @@ -26,4 +27,5 @@ $bug_matches = { "'check-rpaths' detected a broken RPATH OR RUNPATH" => "err_rpath", # e.g. lame "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 } |