[Lldb-commits] [lldb] r236496 - Enable TestChangeValueAPI on Linux

Pavel Labath labath at google.com
Tue May 5 05:10:13 PDT 2015


Author: labath
Date: Tue May  5 07:10:13 2015
New Revision: 236496

URL: http://llvm.org/viewvc/llvm-project?rev=236496&view=rev
Log:
Enable TestChangeValueAPI on Linux

the test has passed in the last 300 runs, enabling to see what the build bot says. Also,
downgrading skipIfGcc to XFAIL, with plans of enabling it in the future if it shows to be
working.

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=236496&r1=236495&r2=236496&view=diff
==============================================================================
--- lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py (original)
+++ lldb/trunk/test/python_api/value/change_values/TestChangeValueAPI.py Tue May  5 07:10:13 2015
@@ -24,7 +24,6 @@ class ChangeValueAPITestCase(TestBase):
 
     @python_api_test
     @dwarf_test
-    @expectedFailureLinux # this test fails 6/100 dosep runs
     def test_change_value_with_dwarf(self):
         """Exercise the SBValue::SetValueFromCString API."""
         d = {'EXE': self.exe_name}
@@ -42,7 +41,7 @@ class ChangeValueAPITestCase(TestBase):
         self.check_line = line_number('main.c', '// Stop here and check values')
         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()
+    @expectedFailureGcc # 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."""





More information about the lldb-commits mailing list