(l : list, exepath)
| 7 | from testutils import cppcheck_ex, cppcheck, __lookup_cppcheck_exe |
| 8 | |
| 9 | def __remove_std_lookup_log(l : list, exepath): |
| 10 | l.remove("looking for library 'std.cfg'") |
| 11 | l.remove("looking for library '{}/std.cfg'".format(exepath)) |
| 12 | l.remove("looking for library '{}/cfg/std.cfg'".format(exepath)) |
| 13 | return l |
| 14 | |
| 15 | |
| 16 | def __create_gui_project(tmpdir): |
no test coverage detected