gh-133228: c-analyzer clang preprocessor (GH-133229)

* impl
* included 2 failures to tsvs next to similar entries
* added fix/hack for curses.h fails
* fix leftover from debug
This commit is contained in:
dgpb 2025-11-28 00:22:21 +02:00 committed by GitHub
parent 656a64b37f
commit 5ec03cf3b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 125 additions and 3 deletions

View file

@ -16,6 +16,7 @@
from . import (
pure as _pure,
gcc as _gcc,
clang as _clang,
)
@ -234,7 +235,7 @@ def handling_errors(ignore_exc=None, *, log_err=None):
'bcpp': None,
# aliases/extras:
'gcc': _gcc.preprocess,
'clang': None,
'clang': _clang.preprocess,
}