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