MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / ui_delete_fixture_cleanup

Function ui_delete_fixture_cleanup

tests/test_httpd.c:686–698  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

684}
685
686static void ui_delete_fixture_cleanup(ui_delete_fixture_t *fx) {
687 if (fx->watcher)
688 cbm_watcher_free(fx->watcher);
689 if (fx->store)
690 cbm_store_close(fx->store);
691 if (fx->saved_cache_dir) {
692 cbm_setenv("CBM_CACHE_DIR", fx->saved_cache_dir, 1);
693 free(fx->saved_cache_dir);
694 } else {
695 cbm_unsetenv("CBM_CACHE_DIR");
696 }
697 th_cleanup(fx->tmpdir);
698}
699
700static void ui_delete_db_path(const ui_delete_fixture_t *fx, const char *project, char *out,
701 size_t outsz) {

Callers 1

test_httpd.cFile · 0.85

Calls 5

cbm_watcher_freeFunction · 0.85
cbm_store_closeFunction · 0.85
cbm_setenvFunction · 0.85
cbm_unsetenvFunction · 0.85
th_cleanupFunction · 0.85

Tested by

no test coverage detected