feat: knf

This commit is contained in:
2025-11-11 05:28:39 +08:00
parent c850ceb3b6
commit b7cbbdfbba
25 changed files with 2654 additions and 23 deletions

View File

@@ -32,7 +32,7 @@ async def main():
for file in os.listdir("contest-2025-data/test_cases/mbt"):
if file.endswith(".mbt"):
in_path = os.path.join("contest-2025-data/test_cases/mbt", file)
out_path = os.path.join("output/repo", file.replace(".mbt", ".s"))
out_path = os.path.join("output/repo", file.replace(".mbt", ".ll"))
tasks.append(check_file(in_path, out_path))
await asyncio.gather(*tasks)