Get test patterns based on platform
()
| 62 | |
| 63 | |
| 64 | def _get_test_patterns() -> list[str]: |
| 65 | """Get test patterns based on platform""" |
| 66 | # On Windows, check both .exe and no extension (Clang generates without .exe) |
| 67 | return ["test_*.exe"] if sys.platform == "win32" else ["test_*"] |
| 68 | |
| 69 | |
| 70 | def _analyze_crash_type(return_code: int, output: str) -> Optional[str]: |