| 2517 | } |
| 2518 | |
| 2519 | static int write_coverage_meta(cbm_store_t *store, const char *generation, |
| 2520 | const char *recording_status) { |
| 2521 | cbm_coverage_meta_t meta = { |
| 2522 | .generation = generation, |
| 2523 | .index_mode = "fast", |
| 2524 | .recorded_at = "2026-07-12T00:00:00Z", |
| 2525 | .recording_status = recording_status, |
| 2526 | .ignored_files_stored = 0, |
| 2527 | .ignored_files_total = 0, |
| 2528 | .coverage_version = 1, |
| 2529 | .hash_records_complete = true, |
| 2530 | }; |
| 2531 | return cbm_store_coverage_replace_ex(store, "test-project", NULL, 0, &meta); |
| 2532 | } |
| 2533 | |
| 2534 | TEST(tool_check_index_coverage_accepts_truncated_ignored_catalog_for_fresh_path_issue1613) { |
| 2535 | char tmp[256]; |
no test coverage detected