MCPcopy Create free account
hub / github.com/FastLED/FastLED / main

Function main

ci/tools/audit_memory_classification.py:236–247  ·  view source on GitHub ↗

Run all audit checks.

()

Source from the content-addressed store, hash-verified

234
235
236def main() -> int:
237 """Run all audit checks."""
238 sketch_macros_errors = verify_sketch_macros_compliance()
239 classification_errors = audit_memory_classification()
240
241 print("=" * 70)
242 if classification_errors == 0 and sketch_macros_errors == 0:
243 print("✓ ALL AUDITS PASSED - Memory classification is consistent!")
244 return 0
245 else:
246 print("✗ AUDIT FAILED - There are classification mismatches")
247 return 1
248
249
250if __name__ == "__main__":

Callers 1

Calls 3

printFunction · 0.50

Tested by

no test coverage detected