Skip to content

Commit 1a61b7a

Browse files
author
git apple-llvm automerger
committed
Merge commit '4a55c98fa7be' from llvm.org/master into apple/main
2 parents 5f4f145 + 4a55c98 commit 1a61b7a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/test/API/functionalities/postmortem/minidump-new/TestMiniDumpNew.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,5 +479,6 @@ def test_minidump_sysroot(self):
479479
# Check that we loaded the module from the sysroot
480480
self.assertEqual(self.target.GetNumModules(), 1)
481481
module = self.target.GetModuleAtIndex(0)
482-
spec = module.GetFileSpec()
483-
self.assertEqual(spec.GetDirectory(), exe_dir)
482+
spec_dir_norm = os.path.normcase(module.GetFileSpec().GetDirectory())
483+
exe_dir_norm = os.path.normcase(exe_dir)
484+
self.assertEqual(spec_dir_norm, exe_dir_norm)

0 commit comments

Comments
 (0)