Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e52945e

Browse files
author
git apple-llvm automerger
committed
Merge commit '98fa273339a4' from llvm.org/release/11.x into apple/stable/20200714
2 parents 54dca4d + 98fa273 commit e52945e

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

+3-2
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)