diff options
| author | Greg Clayton <gclayton@apple.com> | 2014-09-18 21:32:05 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2014-09-18 21:32:05 +0000 |
| commit | ee3be91995078d45ba47aa9d8a31ce3301211e62 (patch) | |
| tree | 2566622b38168e36065fb29c1af9ace79d5cc504 /lldb/test/api/multithreaded/TestMultithreaded.py | |
| parent | 10039c02ea1d34d39fb3b66f522c53bb50751da5 (diff) | |
| download | bcm5719-llvm-ee3be91995078d45ba47aa9d8a31ce3301211e62.tar.gz bcm5719-llvm-ee3be91995078d45ba47aa9d8a31ce3301211e62.zip | |
Add some tests to be skipped when run remotely and also fixed a test to be more reliable when it comes to stopping on a specific line.
llvm-svn: 218079
Diffstat (limited to 'lldb/test/api/multithreaded/TestMultithreaded.py')
| -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 9af46174c6c..2ba90f4e267 100644 --- a/lldb/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/test/api/multithreaded/TestMultithreaded.py @@ -20,6 +20,7 @@ class SBBreakpointCallbackCase(TestBase): @unittest2.expectedFailure # llvm.org/pr16000: SBBreakpoint.SetCallback() does nothing @skipIfi386 + @skipIfRemote @skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11 def test_breakpoint_callback(self): """Test the that SBBreakpoint callback is invoked when a breakpoint is hit. """ @@ -27,6 +28,7 @@ class SBBreakpointCallbackCase(TestBase): 'test_breakpoint_callback') @skipIfi386 + @skipIfRemote @skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11 def test_sb_api_listener_event_description(self): """ Test the description of an SBListener breakpoint event is valid.""" @@ -35,6 +37,7 @@ class SBBreakpointCallbackCase(TestBase): pass @skipIfi386 + @skipIfRemote @skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11 def test_sb_api_listener_event_process_state(self): """ Test that a registered SBListener receives events when a process @@ -46,6 +49,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfi386 + @skipIfRemote @skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11 def test_sb_api_listener_resume(self): """ Test that a process can be resumed from a non-main thread. """ |

