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.

llvm-svn: 236496
This commit is contained in:
Pavel Labath 2015-05-05 12:10:13 +00:00
parent 4647c5964b
commit c23ba555c2
1 changed files with 1 additions and 2 deletions

View File

@ -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."""