diff options
author | Enrico Granata <egranata@apple.com> | 2014-10-06 21:42:22 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-10-06 21:42:22 +0000 |
commit | 91c2d6d642193dab0e9bd93dc63bf0992fb6fe7e (patch) | |
tree | c40fd1043db56c5108744fad7501ff441685ba62 /lldb/test | |
parent | b633e43d2b498ef696c00cac813a950f324bf1ef (diff) | |
download | bcm5719-llvm-91c2d6d642193dab0e9bd93dc63bf0992fb6fe7e.tar.gz bcm5719-llvm-91c2d6d642193dab0e9bd93dc63bf0992fb6fe7e.zip |
This test also relies on the SB API headers. Same logic
llvm-svn: 219147
Diffstat (limited to 'lldb/test')
-rw-r--r-- | lldb/test/api/multithreaded/TestMultithreaded.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/api/multithreaded/TestMultithreaded.py b/lldb/test/api/multithreaded/TestMultithreaded.py index 2ba90f4e267..11ddeaaa034 100644 --- a/lldb/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/test/api/multithreaded/TestMultithreaded.py @@ -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', |