(filename, content)
| 43 | return subprocess.call(cmd, shell=True) |
| 44 | |
| 45 | def _Write(filename, content): |
| 46 | with open(filename, "w") as f: |
| 47 | f.write(content) |
| 48 | |
| 49 | def PrepareBuildDir(arch, mode): |
| 50 | build_dir = os.path.join("out", f"{arch}.{mode}") |
no test coverage detected