| 28 | } |
| 29 | |
| 30 | static int rp_extracts_clean(const char *source, CBMLanguage language, const char *filename) { |
| 31 | CBMFileResult *result = |
| 32 | cbm_extract_file(source, (int)strlen(source), language, "repro", filename, 0, NULL, NULL); |
| 33 | if (!result) |
| 34 | return 0; |
| 35 | int clean = !result->has_error && !result->parse_incomplete; |
| 36 | cbm_free_result(result); |
| 37 | return clean; |
| 38 | } |
| 39 | |
| 40 | static int rp_node_count(cbm_store_t *store, const char *project, const char *label, |
| 41 | const char *name, const char *qn_suffix) { |
no test coverage detected