[Lldb-commits] [lldb] r344633 - Don't run TestBreakpointIt.py on arm64 devices;
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 16 11:11:17 PDT 2018
Author: jmolenda
Date: Tue Oct 16 11:11:17 2018
New Revision: 344633
URL: http://llvm.org/viewvc/llvm-project?rev=344633&view=rev
Log:
Don't run TestBreakpointIt.py on arm64 devices;
it is armv7 specific.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py?rev=344633&r1=344632&r2=344633&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py Tue Oct 16 11:11:17 2018
@@ -19,6 +19,7 @@ class TestBreakpointIt(TestBase):
NO_DEBUG_INFO_TESTCASE = True
@skipIf(archs=no_match(["arm"]))
+ @skipIf(archs=["arm64", "arm64e"])
def test_false(self):
self.build()
exe = self.getBuildArtifact("a.out")
@@ -32,6 +33,7 @@ class TestBreakpointIt(TestBase):
"Breakpoint does not get hit")
@skipIf(archs=no_match(["arm"]))
+ @skipIf(archs=["arm64", "arm64e"])
def test_true(self):
self.build()
exe = self.getBuildArtifact("a.out")
More information about the lldb-commits
mailing list