diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-05-15 17:46:16 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-15 17:46:16 +0000 |
commit | 0a693d9d66f74533791d44c377298a4acc7cf787 (patch) | |
tree | e2ca0c75a98f8e6aff5e9a790316df65b345828e | |
parent | b4e7f4d841123e542a94429c4ec84503b6905da9 (diff) | |
download | bcm5719-llvm-0a693d9d66f74533791d44c377298a4acc7cf787.tar.gz bcm5719-llvm-0a693d9d66f74533791d44c377298a4acc7cf787.zip |
Disable test case that causes assertion failure on Linux
- filed llvm.org/pr16016
- fixed URL for llvm.org/pr16000
llvm-svn: 181902
-rw-r--r-- | lldb/test/api/multithreaded/TestMultithreaded.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/api/multithreaded/TestMultithreaded.py b/lldb/test/api/multithreaded/TestMultithreaded.py index 48471498edb..bb5c26271e5 100644 --- a/lldb/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/test/api/multithreaded/TestMultithreaded.py @@ -18,7 +18,7 @@ class SBBreakpointCallbackCase(TestBase): self.buildProgram('inferior.cpp', self.inferior) self.addTearDownHook(lambda: os.remove(self.inferior)) - @unittest2.expectedFailure # llvm.org/pr-1600: SBBreakpoint.SetCallback() does nothing + @unittest2.expectedFailure # llvm.org/pr16000: SBBreakpoint.SetCallback() does nothing @skipIfi386 @skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11 def test_breakpoint_callback(self): @@ -47,6 +47,7 @@ class SBBreakpointCallbackCase(TestBase): @skipIfi386 @skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11 + @skipIfLinux # llvm.org/pr16016 assertion failure in ProcessPOSIX.cpp. 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', |