diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2022-03-10 20:43:44 -0800 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2022-03-11 13:12:30 -0800 |
commit | 0e19f1055f6d37a53d392166b70bc4cba155e4b3 (patch) | |
tree | 2a5adebd93697bd1e73d5cb3d7bdfbfed9085ffa | |
parent | 19befb98febdccabc9b0525169656d04dc9775a8 (diff) | |
download | autobuild-0e19f1055f6d37a53d392166b70bc4cba155e4b3.tar autobuild-0e19f1055f6d37a53d392166b70bc4cba155e4b3.tar.gz autobuild-0e19f1055f6d37a53d392166b70bc4cba155e4b3.tar.bz2 autobuild-0e19f1055f6d37a53d392166b70bc4cba155e4b3.tar.xz autobuild-0e19f1055f6d37a53d392166b70bc4cba155e4b3.zip |
Add some common recent errors to bugscan
-rw-r--r-- | bugscan.rb | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,4 +21,9 @@ $bug_matches = { "-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 + "'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 } |