(cppcheck_path)
| 171 | |
| 172 | |
| 173 | def has_binary(cppcheck_path): |
| 174 | cppcheck_bin = __get_cppcheck_binary(cppcheck_path) |
| 175 | if __make_cmd == "msbuild.exe": |
| 176 | if os.path.isfile(cppcheck_bin): |
| 177 | return True |
| 178 | elif __make_cmd == 'mingw32-make': |
| 179 | if os.path.isfile(cppcheck_bin): |
| 180 | return True |
| 181 | elif os.path.isfile(cppcheck_bin): |
| 182 | return True |
| 183 | return False |
| 184 | |
| 185 | |
| 186 | def compile_version(cppcheck_path): |
no test coverage detected