(dumpfiles, configfile, cli, debugprint)
| 269 | report_pending_ifndef(pending_ifndef,guard_column) |
| 270 | |
| 271 | def process(dumpfiles, configfile, cli, debugprint): |
| 272 | conf = loadConfig(configfile) |
| 273 | |
| 274 | for afile in dumpfiles: |
| 275 | if not afile[-5:] == '.dump': |
| 276 | continue |
| 277 | if not cli: |
| 278 | print('Checking ' + afile + '...') |
| 279 | data = cppcheckdata.CppcheckData(afile) |
| 280 | process_data(conf,data,cli,debugprint) |
| 281 | |
| 282 | def check_file_naming(conf,data): |
| 283 | for source_file in data.files: |
no test coverage detected