(src, expected_output, cflags=None)
| 5071 | @no_js_math('JS_MATH is not compatible with MAIN_MODULE=1') |
| 5072 | def test_dylink_dso_needed(self): |
| 5073 | def do_run(src, expected_output, cflags=None): |
| 5074 | create_file('main.c', src + 'int main() { return test_main(); }') |
| 5075 | self.do_runf('main.c', expected_output, cflags=cflags) |
| 5076 | self._test_dylink_dso_needed(do_run) |
| 5077 | |
| 5078 | @with_dylink_reversed |
no test coverage detected