Run all audit checks.
()
| 234 | |
| 235 | |
| 236 | def 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 | |
| 250 | if __name__ == "__main__": |
no test coverage detected