[Lldb-commits] [lldb] r351490 - Don't run TestBreakpointThumbCodesection.py on darwin systems;

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 17 14:26:25 PST 2019


Author: jmolenda
Date: Thu Jan 17 14:26:25 2019
New Revision: 351490

URL: http://llvm.org/viewvc/llvm-project?rev=351490&view=rev
Log:
Don't run TestBreakpointThumbCodesection.py on darwin systems;
we don't use a thumb code section.

Don't run Test128BitsInteger.py on armv7k; it's not a supported
type on that target.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
    lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py?rev=351490&r1=351489&r2=351490&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py Thu Jan 17 14:26:25 2019
@@ -18,6 +18,7 @@ class TestBreakpointThumbCodesection(Tes
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIf(archs=no_match(["arm"]))
+    @skipIfDarwinEmbedded   # codegen on darwin always defaults to thumb for armv7/armv7k targets
     def test_breakpoint(self):
         self.build()
         exe = self.getBuildArtifact("a.out")

Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py?rev=351490&r1=351489&r2=351490&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py Thu Jan 17 14:26:25 2019
@@ -1,4 +1,6 @@
 from lldbsuite.test import lldbinline
 from lldbsuite.test import decorators
 
-lldbinline.MakeInlineTest(__file__, globals())
+lldbinline.MakeInlineTest(__file__, globals(),
+        decorators.skipIf(archs=["armv7k"]))
+




More information about the lldb-commits mailing list