[Lldb-commits] [lldb] r219147 - This test also relies on the SB API headers. Same logic
Enrico Granata
egranata at apple.com
Mon Oct 6 14:42:22 PDT 2014
Author: enrico
Date: Mon Oct 6 16:42:22 2014
New Revision: 219147
URL: http://llvm.org/viewvc/llvm-project?rev=219147&view=rev
Log:
This test also relies on the SB API headers. Same logic
Modified:
lldb/trunk/test/api/multithreaded/TestMultithreaded.py
Modified: lldb/trunk/test/api/multithreaded/TestMultithreaded.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/api/multithreaded/TestMultithreaded.py?rev=219147&r1=219146&r2=219147&view=diff
==============================================================================
--- lldb/trunk/test/api/multithreaded/TestMultithreaded.py (original)
+++ lldb/trunk/test/api/multithreaded/TestMultithreaded.py Mon Oct 6 16:42:22 2014
@@ -22,6 +22,7 @@ class SBBreakpointCallbackCase(TestBase)
@skipIfi386
@skipIfRemote
@skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11
+ @skipIfNoSBHeaders
def test_breakpoint_callback(self):
"""Test the that SBBreakpoint callback is invoked when a breakpoint is hit. """
self.build_and_test('driver.cpp test_breakpoint_callback.cpp',
@@ -30,6 +31,7 @@ class SBBreakpointCallbackCase(TestBase)
@skipIfi386
@skipIfRemote
@skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11
+ @skipIfNoSBHeaders
def test_sb_api_listener_event_description(self):
""" Test the description of an SBListener breakpoint event is valid."""
self.build_and_test('driver.cpp listener_test.cpp test_listener_event_description.cpp',
@@ -39,6 +41,7 @@ class SBBreakpointCallbackCase(TestBase)
@skipIfi386
@skipIfRemote
@skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11
+ @skipIfNoSBHeaders
def test_sb_api_listener_event_process_state(self):
""" Test that a registered SBListener receives events when a process
changes state.
@@ -51,6 +54,7 @@ class SBBreakpointCallbackCase(TestBase)
@skipIfi386
@skipIfRemote
@skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11
+ @skipIfNoSBHeaders
def test_sb_api_listener_resume(self):
""" Test that a process can be resumed from a non-main thread. """
self.build_and_test('driver.cpp listener_test.cpp test_listener_resume.cpp',
More information about the lldb-commits
mailing list