From: Pavel Labath Date: Thu, 7 Apr 2016 09:25:04 +0000 (+0000) Subject: Enable TestDebugBreak on x86_64 as well X-Git-Tag: llvmorg-3.9.0-rc1~9763 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e91e7bab8d0679454a40ffe2272b05954fceeada;p=platform%2Fupstream%2Fllvm.git 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 --- 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."""