diff options
author | Pavel Labath <labath@google.com> | 2015-04-17 09:05:26 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-04-17 09:05:26 +0000 |
commit | 634b6029834ffd661ecedaf53e727a689959f0e2 (patch) | |
tree | 1882b8a7a3dd619ced97ad4c2c48ae1745a0777a | |
parent | 6b1997cdf561a3dd35a4bd6edad2303a8f610f57 (diff) | |
download | bcm5719-llvm-634b6029834ffd661ecedaf53e727a689959f0e2.tar.gz bcm5719-llvm-634b6029834ffd661ecedaf53e727a689959f0e2.zip |
XFAILing TestPrintStackTraces on linux to stabilize the build bot
llvm-svn: 235169
-rw-r--r-- | lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py b/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py index 13cca34e4d2..f8a94ee0454 100644 --- a/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py +++ b/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py @@ -18,10 +18,10 @@ class ThreadsStackTracesTestCase(TestBase): # Find the line number to break inside main(). self.line = line_number('main.cpp', '// Set break point at this line.') - # llvm.org/pr23043 - leaving the next two lines in so it's easy to find this - # test will appear when searching for expectedFailure(Linux|i386) - #@expectedFailureLinux - #@expectedFailurei386 + # fails on Linux i386 llvm.org/pr23043 + # fails 78/100 on Linux x86_64 when running against remote lldb-platform + # failed 11/200 on the linux build bot + @expectedFailureLinux @python_api_test def test_stack_traces(self): """Test SBprocess and SBThread APIs with printing of the stack traces.""" @@ -30,8 +30,6 @@ class ThreadsStackTracesTestCase(TestBase): def break_and_print_stacktraces(self): """Break at main.cpp:68 and do a threads dump""" - if self.getArchitecture() in ['i386'] and "linux" in sys.platform: - self.skipTest("Skipping because this test is known to fail on i386 Linux") exe = os.path.join(os.getcwd(), "a.out") |