(tmp_path)
| 198 | |
| 199 | |
| 200 | def test_cmd_include(tmp_path): |
| 201 | inc_file = tmp_path / 'inc.h' |
| 202 | with open(inc_file, 'wt'): |
| 203 | pass |
| 204 | __test_cmd(tmp_path, 'test.cpp',['--include=inc.h'], '-x c++ --include inc.h') |
| 205 | |
| 206 | |
| 207 | def test_cmd_enforce_c(tmp_path): # #13128 |
nothing calls this directly
no test coverage detected