From e91e7bab8d0679454a40ffe2272b05954fceeada Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Thu, 7 Apr 2016 09:25:04 +0000 Subject: [PATCH] Enable TestDebugBreak on x86_64 as well Test passes there, and this would have helped me catch the snafu in the previous commit. llvm-svn: 265650 --- .../test/functionalities/breakpoint/debugbreak/TestDebugBreak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py index 702e26d..1e195c8 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py @@ -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.""" -- 2.7.4