| 208 | } |
| 209 | |
| 210 | std::string realpath(const std::string& name) override { |
| 211 | mgb_assert(name.find('/') == std::string::npos); |
| 212 | return m_workdir + name; |
| 213 | } |
| 214 | |
| 215 | void remove(const std::string& name) override { |
| 216 | int err = unlink(realpath(name).c_str()); |
no test coverage detected