[Lldb-commits] [lldb] r355356 - [lldbtest] Check against the correct name for libcxxabi (macOS).

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 4 16:47:15 PST 2019


Author: davide
Date: Mon Mar  4 16:47:15 2019
New Revision: 355356

URL: http://llvm.org/viewvc/llvm-project?rev=355356&view=rev
Log:
[lldbtest] Check against the correct name for libcxxabi (macOS).

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py?rev=355356&r1=355355&r2=355356&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py Mon Mar  4 16:47:15 2019
@@ -1703,7 +1703,7 @@ class Base(unittest2.TestCase):
         if self.getPlatform() in ('freebsd', 'linux', 'netbsd', 'openbsd'):
             return ['libc++.so.1']
         else:
-            return ['libc++.1.dylib', 'libc++abi.dylib']
+            return ['libc++.1.dylib', 'libc++abi.1.dylib']
 
 # Metaclass for TestBase to change the list of test metods when a new TestCase is loaded.
 # We change the test methods to create a new test method for each test for each debug info we are




More information about the lldb-commits mailing list