[Lldb-commits] [lldb] r222134 - Add decorator for intermittently failing test on FreeBSD

Ed Maste emaste at freebsd.org
Mon Nov 17 07:27:10 PST 2014


Author: emaste
Date: Mon Nov 17 09:27:09 2014
New Revision: 222134

URL: http://llvm.org/viewvc/llvm-project?rev=222134&view=rev
Log:
Add decorator for intermittently failing test on FreeBSD

This test has intermittently failed on FreeBSD for quite some time when
run as part of the full test suite.  It generally passes when run by
itself.  Mark as expected failure for now to reduce buildbot noise.

llvm.org/pr15039 test fails intermittently on FreeBSD

Modified:
    lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py

Modified: lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py?rev=222134&r1=222133&r2=222134&view=diff
==============================================================================
--- lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py (original)
+++ lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py Mon Nov 17 09:27:09 2014
@@ -42,6 +42,7 @@ class ChangeValueAPITestCase(TestBase):
         self.end_line = line_number ('main.c', '// Set a breakpoint here at the end')
 
     @skipIfGcc # llvm.org/pr15039: If GCC is the test compiler, stdout is not available via lldb.SBProcess.GetSTDOUT()
+    @expectedFailureFreeBSD("llvm.org/pr15039 test fails intermittently on FreeBSD")
     def change_value_api(self, exe_name):
         """Exercise some SBValue APIs."""
         exe = os.path.join(os.getcwd(), exe_name)





More information about the lldb-commits mailing list