(tmp_path)
| 218 | |
| 219 | # TODO: remove when we inject the build-dir into all tests |
| 220 | def test_cmd_std_c_builddir(tmp_path): # #13129 |
| 221 | build_dir = tmp_path / 'b1' |
| 222 | os.makedirs(build_dir) |
| 223 | __test_cmd(tmp_path, 'test.cpp',['--std=c89', '--std=c++14', '--cppcheck-build-dir={}'.format(build_dir)], '-x c++ -std=c++14') |
| 224 | |
| 225 | |
| 226 | def test_cmd_std_cpp(tmp_path): # #13129 |
nothing calls this directly
no test coverage detected