| 2705 | } |
| 2706 | |
| 2707 | static int write_coverage_meta(cbm_store_t *store, const char *generation, |
| 2708 | const char *recording_status) { |
| 2709 | cbm_coverage_meta_t meta = { |
| 2710 | .generation = generation, |
| 2711 | .index_mode = "fast", |
| 2712 | .recorded_at = "2026-07-12T00:00:00Z", |
| 2713 | .recording_status = recording_status, |
| 2714 | .ignored_files_stored = 0, |
| 2715 | .ignored_files_total = 0, |
| 2716 | .coverage_version = 1, |
| 2717 | .hash_records_complete = true, |
| 2718 | }; |
| 2719 | return cbm_store_coverage_replace_ex(store, "test-project", NULL, 0, &meta); |
| 2720 | } |
| 2721 | |
| 2722 | TEST(tool_check_index_coverage_accepts_truncated_ignored_catalog_for_fresh_path_issue1613) { |
| 2723 | char tmp[256]; |
no test coverage detected