[Lldb-commits] [lldb] r236749 - Extend r236708 to skip tests also failing on FreeBSD

Ed Maste emaste at freebsd.org
Thu May 7 10:14:56 PDT 2015


Author: emaste
Date: Thu May  7 12:14:56 2015
New Revision: 236749

URL: http://llvm.org/viewvc/llvm-project?rev=236749&view=rev
Log:
Extend r236708 to skip tests also failing on FreeBSD

Modified:
    lldb/trunk/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py

Modified: lldb/trunk/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py?rev=236749&r1=236748&r2=236749&view=diff
==============================================================================
--- lldb/trunk/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py (original)
+++ lldb/trunk/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py Thu May  7 12:14:56 2015
@@ -130,6 +130,7 @@ class MiStartupOptionsTestCase(lldbmi_te
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
+    @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
     @skipIfLinux # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots
     def test_lldbmi_source_option_start_script(self):
         """Test that 'lldb-mi --interpreter' can execute user's commands after initial commands were executed."""
@@ -170,6 +171,7 @@ class MiStartupOptionsTestCase(lldbmi_te
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
+    @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
     @skipIfLinux # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots
     def test_lldbmi_source_option_start_script_exit(self):
         """Test that 'lldb-mi --interpreter' can execute a prepared file which passed via --source option."""
@@ -210,6 +212,7 @@ class MiStartupOptionsTestCase(lldbmi_te
 
     @lldbmi_test
     @expectedFailureWindows("llvm.org/pr22274: need a pexpect replacement for windows")
+    @skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
     def test_lldbmi_source_option_start_script_error(self):
         """Test that 'lldb-mi --interpreter' stops execution of initial commands in case of error."""
 





More information about the lldb-commits mailing list