Open
Conversation
- skip scons build (cppcheck analyzes source directly) - add MISRA_ONLY mode: use --enable=style instead of --enable=all - skip copying .venv and caches in copytree (211MB -> 5MB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The new misra_failfast.py wrapper patches misra.py's reportError to sys.exit(1) on the first real violation, handling cppcheck's inline and macro suppressions to avoid false positives on clean code. Also removes sampling (all 12 tests run in ~38s with xdist) and adds board/crypto and board/certs to ignored mutation paths since they're only included from bootstub.c. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sconsbuild in mutation tests — cppcheck analyzes source files directly, doesn't need firmware binariesMISRA_ONLYmode totest_misra.sh— uses--enable=styleinstead of--enable=all(style severity is needed for MISRA addon output, the extra warning/performance/portability checkers are not)copytreeto skip.venv(211MB), caches, and other unnecessary dirsResult: 73s → 60s for 3 mutation tests (~18% faster)
Profiling notes
Profiled against cppcheck 2.16.0 source to understand flag costs:
--enable=allextra checkers--check-level=exhaustivevsnormalsconsbuildcopytree(.venv)Test plan
🤖 Generated with Claude Code