[Lldb-commits] [lldb] r325666 - Fix TestAppleTypesIsProduced after r324226
Frederic Riss via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 20 22:20:03 PST 2018
Author: friss
Date: Tue Feb 20 22:20:03 2018
New Revision: 325666
URL: http://llvm.org/viewvc/llvm-project?rev=325666&view=rev
Log:
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.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py?rev=325666&r1=325665&r2=325666&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/debug-info/apple_types/TestAppleTypesIsProduced.py Tue Feb 20 22:20:03 2018
@@ -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:
More information about the lldb-commits
mailing list