(filename)
| 14 | from utils import determine_wellknown_cmd |
| 15 | |
| 16 | def write_testcode(filename): |
| 17 | with open(filename, 'w', encoding="utf8") as f: |
| 18 | f.write(''' |
| 19 | #include <stdio.h> |
| 20 | int main() |
| 21 | { |
| 22 | printf("the quick brown fox jumps over the lazy god\\n"); |
| 23 | return 0; |
| 24 | } |
| 25 | ''') |
| 26 | |
| 27 | def clean_files(source, executable): |
| 28 | os.remove(source) |
no test coverage detected