summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2022-07-19 13:00:02 -0700
committerDan Fandrich <dan@coneharvesters.com>2022-07-19 13:00:02 -0700
commitba900033ffe354db87ee445b7fd708d6e3a9e5fc (patch)
treeb788fe2143b0da41feb2e98d8b94c45de19bb9d5
parentf66bb9802befb0295b531fe43daf31ba3633c7d6 (diff)
downloadautobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar
autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar.gz
autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar.bz2
autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.tar.xz
autobuild-ba900033ffe354db87ee445b7fd708d6e3a9e5fc.zip
Add err_literalformat
-rw-r--r--bugscan.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/bugscan.rb b/bugscan.rb
index cd04185..d117a8c 100644
--- a/bugscan.rb
+++ b/bugscan.rb
@@ -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
}