| 45 | } |
| 46 | |
| 47 | static void rm_rf(const std::string& path) { |
| 48 | std::string cmd = "rm -rf '" + path + "'"; |
| 49 | int rc = system(cmd.c_str()); |
| 50 | (void)rc; |
| 51 | } |
| 52 | |
| 53 | // A small "custom" namespace used by most tests — independent of the |
| 54 | // built-ins so we don't depend on Reticulum runtime state. |