diff options
author | Frederic Riss <friss@apple.com> | 2018-02-21 06:20:03 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2018-02-21 06:20:03 +0000 |
commit | 9c4db3bc2bcb13bd00c9ad047f8a0bb72e239573 (patch) | |
tree | 370486c7f3476591d20e369cb97322c5aec0be34 /lldb/packages/Python/lldbsuite | |
parent | 0d9c9bef4e903b4b369d50c9952e056a3c4508ae (diff) | |
download | bcm5719-llvm-9c4db3bc2bcb13bd00c9ad047f8a0bb72e239573.tar.gz bcm5719-llvm-9c4db3bc2bcb13bd00c9ad047f8a0bb72e239573.zip |
Fix TestAppleTypesIsProduced after r324226
This test was accessing self.debug_info, which doesn't exist anymore. For
some reason the macOS bots are skipping this test because they think the
compiler is not clang. We'll look into this separately.
llvm-svn: 325666
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py b/lldb/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py index 54ad70545ef..cd6dd92c706 100644 --- a/lldb/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py +++ b/lldb/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py @@ -27,7 +27,7 @@ class AppleTypesTestCase(TestBase): self.skipTest("clang compiler only test") self.build() - if self.debug_info == "dsym": + if self.getDebugInfo() == "dsym": exe = self.getBuildArtifact( "a.out.dSYM/Contents/Resources/DWARF/a.out") else: |