[lldb][test] PlatformDarwinTest.cpp: clean up directories in TearDown

This wasn't causing any failures I'm aware of but for test hygenie remove all the temporary directories we create.
This commit is contained in:
Michael Buch 2026-03-10 11:14:32 +00:00
parent 19a5a3536e
commit 2bbdeeef7c

View File

@ -117,6 +117,10 @@ protected:
<< "Failed to create test dSYM Python directory.";
};
void TearDown() override {
ASSERT_FALSE(llvm::sys::fs::remove_directories(m_tmp_root_dir));
}
DebuggerSP m_debugger_sp;
PlatformSP m_platform_sp;
TargetSP m_target_sp;