()
| 14 | |
| 15 | |
| 16 | def test_helpers(): |
| 17 | compiler = _get_compiler() |
| 18 | |
| 19 | get_openmp_flag(compiler) |
| 20 | |
| 21 | s = '#include <stdio.h>\n#include <stdlib.h>\n\nint main(void) {\n\tprintf("Hello world!\\n");\n\treturn 0;\n}' |
| 22 | output, _ = compile_test_program(s) |
| 23 | assert len(output) == 1 and output[0] == "Hello world!" |
| 24 | |
| 25 | check_openmp_support() |
nothing calls this directly
no test coverage detected