[Lldb-commits] [lldb] r265650 - Enable TestDebugBreak on x86_64 as well

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 7 02:25:06 PDT 2016


Author: labath
Date: Thu Apr  7 04:25:04 2016
New Revision: 265650

URL: http://llvm.org/viewvc/llvm-project?rev=265650&view=rev
Log:
Enable TestDebugBreak on x86_64 as well

Test passes there, and this would have helped me catch the snafu in the previous commit.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py?rev=265650&r1=265649&r2=265650&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py Thu Apr  7 04:25:04 2016
@@ -14,7 +14,7 @@ class DebugBreakTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
-    @skipIf(archs=no_match(["i386", "i686"]))
+    @skipIf(archs=no_match(["i386", "i686", "x86_64"]))
     @no_debug_info_test
     def test_asm_int_3(self):
         """Test that intrinsics like `__debugbreak();` and `asm {"int3"}` are treated like breakpoints."""




More information about the lldb-commits mailing list