summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/macosx
diff options
context:
space:
mode:
authorFrederic Riss <friss@apple.com>2018-02-21 06:20:03 +0000
committerFrederic Riss <friss@apple.com>2018-02-21 06:20:03 +0000
commit9c4db3bc2bcb13bd00c9ad047f8a0bb72e239573 (patch)
tree370486c7f3476591d20e369cb97322c5aec0be34 /lldb/packages/Python/lldbsuite/test/macosx
parent0d9c9bef4e903b4b369d50c9952e056a3c4508ae (diff)
downloadbcm5719-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/test/macosx')
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py2
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:
OpenPOWER on IntegriCloud