| 160 | static char tf_home_sentinel[512]; |
| 161 | |
| 162 | static void tf_cleanup_cache_sentinel(void) { |
| 163 | if (tf_home_sentinel[0]) { |
| 164 | th_rmtree(tf_home_sentinel); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | static bool tf_setup_cache_sentinel(void) { |
| 169 | snprintf(tf_home_sentinel, sizeof(tf_home_sentinel), "/tmp/cbm-test-home-XXXXXX"); |
nothing calls this directly
no test coverage detected