[Lldb-commits] [lldb] 0d32195 - [lldb][test][NFC] PlatformDarwinTest.cpp: fix directory creation comment
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 9 03:05:14 PDT 2026
Author: Michael Buch
Date: 2026-03-09T10:04:46Z
New Revision: 0d32195c9f98ec27b3f6d958ed7916584e05caa2
URL: https://github.com/llvm/llvm-project/commit/0d32195c9f98ec27b3f6d958ed7916584e05caa2
DIFF: https://github.com/llvm/llvm-project/commit/0d32195c9f98ec27b3f6d958ed7916584e05caa2.diff
LOG: [lldb][test][NFC] PlatformDarwinTest.cpp: fix directory creation comment
To be consistent with the other comments in the same test.
Added:
Modified:
lldb/unittests/Platform/PlatformDarwinTest.cpp
Removed:
################################################################################
diff --git a/lldb/unittests/Platform/PlatformDarwinTest.cpp b/lldb/unittests/Platform/PlatformDarwinTest.cpp
index 5947ea6428f54..7dfb4987ca68b 100644
--- a/lldb/unittests/Platform/PlatformDarwinTest.cpp
+++ b/lldb/unittests/Platform/PlatformDarwinTest.cpp
@@ -153,7 +153,7 @@ TEST_F(PlatformDarwinTest, LocateExecutableScriptingResourcesFromDSYM) {
ASSERT_FALSE(llvm::sys::fs::create_directory(dsym_resource_dir))
<< "Failed to create test dSYM root directory.";
- // Create .dSYM/Contents/Resources/DWARF
+ // Create <test-root>/.dSYM/Contents/Resources/DWARF
llvm::SmallString<128> dwarf_dir(dsym_resource_dir);
llvm::sys::path::append(dwarf_dir, "DWARF");
ASSERT_FALSE(llvm::sys::fs::create_directory(dwarf_dir))
@@ -164,7 +164,7 @@ TEST_F(PlatformDarwinTest, LocateExecutableScriptingResourcesFromDSYM) {
FileSpec dsym_module_fpec(CreateFile("TestModule.o", dwarf_dir));
ASSERT_TRUE(dsym_module_fpec);
- // Create .dSYM/Contents/Resources/Python
+ // Create <test-root>/.dSYM/Contents/Resources/Python
llvm::SmallString<128> python_dir(dsym_resource_dir);
llvm::sys::path::append(python_dir, "Python");
ASSERT_FALSE(llvm::sys::fs::create_directory(python_dir))
More information about the lldb-commits
mailing list