(filename, force_c=False)
| 148 | |
| 149 | |
| 150 | def compiler_for(filename, force_c=False): |
| 151 | if utils.suffix(filename) in {'.cc', '.cxx', '.cpp'} and not force_c: |
| 152 | return EMXX |
| 153 | else: |
| 154 | return EMCC |
| 155 | |
| 156 | |
| 157 | def record_flaky_test(test_name, attempt_count, max_attempts, exception_msg): |
no outgoing calls