| 17 | /* ── Helper: create temp file path ─────────────────────────────── */ |
| 18 | |
| 19 | static int make_temp_db(char *path, size_t pathsz) { |
| 20 | snprintf(path, pathsz, "/tmp/cbm_sw_test_XXXXXX"); |
| 21 | int fd = cbm_mkstemp(path); |
| 22 | if (fd < 0) |
| 23 | return -1; |
| 24 | close(fd); |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | /* ── Tests ─────────────────────────────────────────────────────── */ |
| 29 |
no test coverage detected