Enable TestDebugBreak on x86_64 as well
authorPavel Labath <labath@google.com>
Thu, 7 Apr 2016 09:25:04 +0000 (09:25 +0000)
committerPavel Labath <labath@google.com>
Thu, 7 Apr 2016 09:25:04 +0000 (09:25 +0000)
Test passes there, and this would have helped me catch the snafu in the previous commit.

llvm-svn: 265650

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

index 702e26d..1e195c8 100644 (file)
@@ -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."""