diff options
author | Greg Clayton <gclayton@apple.com> | 2019-04-02 16:36:34 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2019-04-02 16:36:34 +0000 |
commit | 5050586860140b55a0cc68c77dd1438f44a23ca5 (patch) | |
tree | b28451a9e8869a5137af8c09d3942c78a985c04a /lldb/packages/Python/lldbsuite/test/functionalities/postmortem | |
parent | a3b71018d9f335c2c78893f0c3517f0f723e5b91 (diff) | |
download | bcm5719-llvm-5050586860140b55a0cc68c77dd1438f44a23ca5.tar.gz bcm5719-llvm-5050586860140b55a0cc68c77dd1438f44a23ca5.zip |
Fix buildbot where paths were not matching up.
llvm-svn: 357491
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/postmortem')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py index da93a03c30a..2ed7cb769c0 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py @@ -30,7 +30,10 @@ class MiniDumpUUIDTestCase(TestBase): def verify_module(self, module, verify_path, verify_uuid): uuid = module.GetUUIDString() - self.assertEqual(verify_path, module.GetFileSpec().fullpath) + fullpath = module.GetFileSpec().fullpath + msg = 'Verify path ("%s") is contained in the fullpath ("%s")' % ( + verify_path, fullpath) + self.assertTrue(verify_path in fullpath, msg) self.assertEqual(verify_uuid, uuid) def test_zero_uuid_modules(self): |