From 9c4db3bc2bcb13bd00c9ad047f8a0bb72e239573 Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Wed, 21 Feb 2018 06:20:03 +0000 Subject: 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 --- .../test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite/test/macosx') 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: -- cgit v1.2.3