diff options
author | Davide Italiano <davide@freebsd.org> | 2019-03-05 17:21:55 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2019-03-05 17:21:55 +0000 |
commit | 70b082e85cb9cc78448acb0007f81fbeca61e6d8 (patch) | |
tree | 63140ea0dcdcd2263be970b787aa9be8af207219 /lldb/packages/Python/lldbsuite/test | |
parent | 34d3b80dbab7f89f5f59d506b8447af6cfe3379d (diff) | |
download | bcm5719-llvm-70b082e85cb9cc78448acb0007f81fbeca61e6d8.tar.gz bcm5719-llvm-70b082e85cb9cc78448acb0007f81fbeca61e6d8.zip |
Revert "[lldbtest] Check against the correct name for libcxxabi (macOS)."
This passes locally but breaks on the bots. Maybe an SDK difference.
Reverting while I investigate.
llvm-svn: 355415
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index d488250f455..96924524bb7 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -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.1.dylib'] + return ['libc++.1.dylib', 'libc++abi.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 |