[Lldb-commits] [lldb] r247190 - For now skip ThreadSpecificBreakTestCase on FreeBSD
Ed Maste via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 9 14:00:11 PDT 2015
Author: emaste
Date: Wed Sep 9 16:00:10 2015
New Revision: 247190
URL: http://llvm.org/viewvc/llvm-project?rev=247190&view=rev
Log:
For now skip ThreadSpecificBreakTestCase on FreeBSD
It often hangs or times out, and obscures issues with other tests.
Just skip it for now (until the FreeBSD test suite is producing
consistent results) so that we can get a buildbot back.
Previous investigation (for failures) in llvm.org/pr18522
Modified:
lldb/trunk/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
Modified: lldb/trunk/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py?rev=247190&r1=247189&r2=247190&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py (original)
+++ lldb/trunk/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py Wed Sep 9 16:00:10 2015
@@ -20,6 +20,7 @@ class ThreadSpecificBreakTestCase(TestBa
self.buildDsym()
self.do_thread_specific_break()
+ @skipIfFreeBSD # test frequently times out or hangs
@expectedFailureFreeBSD('llvm.org/pr18522') # hits break in another thread in testrun
@python_api_test
@dwarf_test
More information about the lldb-commits
mailing list