mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 13:53:31 +01:00
Use all+only the default checkers in scan-build script
This commit is contained in:
parent
3092c8bb3e
commit
4097d646d8
21
scripts/test/scan-build.sh
Normal file → Executable file
21
scripts/test/scan-build.sh
Normal file → Executable file
@ -5,6 +5,18 @@
|
||||
# This script is used for running a bunch of clang scan-build checkers
|
||||
# on Tor.
|
||||
|
||||
CHECKERS=""
|
||||
|
||||
scan-build \
|
||||
$CHECKERS \
|
||||
./configure
|
||||
|
||||
make clean
|
||||
|
||||
scan-build \
|
||||
$CHECKERS \
|
||||
make -j5 -k
|
||||
|
||||
CHECKERS="\
|
||||
-disable-checker deadcode.DeadStores \
|
||||
-enable-checker alpha.core.CastSize \
|
||||
@ -25,15 +37,6 @@ CHECKERS="\
|
||||
-enable-checker alpha.core.TestAfterDivZero \
|
||||
"
|
||||
|
||||
scan-build \
|
||||
$CHECKERS \
|
||||
./configure
|
||||
|
||||
scan-build \
|
||||
$CHECKERS \
|
||||
make -j2 -k
|
||||
|
||||
|
||||
# This one gives a false positive on every strcmp.
|
||||
# -enable-checker alpha.core.PointerSub
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user