diff options
| author | Daniel Malea <daniel.malea@intel.com> | 2013-05-14 20:48:54 +0000 |
|---|---|---|
| committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-14 20:48:54 +0000 |
| commit | 4835990a6fc0925d29674d5662eeb13f265a04ed (patch) | |
| tree | a823b119db56c815d2407bdf015c8095ad0b7ebe /lldb/test/api/multithreaded/TestMultithreaded.py | |
| parent | 571f1af0bb658b36ec068ca9ec2c627568a4ce30 (diff) | |
| download | bcm5719-llvm-4835990a6fc0925d29674d5662eeb13f265a04ed.tar.gz bcm5719-llvm-4835990a6fc0925d29674d5662eeb13f265a04ed.zip | |
Skip C++ API/Multithreaded tests that are unsupported with Clang/libstdc++
- older versions of clang are unable to include <chrono> from libstdc++
- skipping tests until buildbots are updated
llvm-svn: 181829
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 4f5c039d32b..48471498edb 100644 --- a/lldb/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/test/api/multithreaded/TestMultithreaded.py @@ -20,12 +20,14 @@ class SBBreakpointCallbackCase(TestBase): @unittest2.expectedFailure # llvm.org/pr-1600: SBBreakpoint.SetCallback() does nothing @skipIfi386 + @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. """ self.build_and_test('driver.cpp test_breakpoint_callback.cpp', 'test_breakpoint_callback') @skipIfi386 + @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.""" self.build_and_test('driver.cpp listener_test.cpp test_listener_event_description.cpp', @@ -33,6 +35,7 @@ class SBBreakpointCallbackCase(TestBase): pass @skipIfi386 + @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 changes state. @@ -43,6 +46,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfi386 + @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. """ self.build_and_test('driver.cpp listener_test.cpp test_listener_resume.cpp', |

