[Lldb-commits] [lldb] r235169 - XFAILing TestPrintStackTraces on linux to stabilize the build bot

Pavel Labath labath at google.com
Fri Apr 17 02:05:26 PDT 2015


Author: labath
Date: Fri Apr 17 04:05:26 2015
New Revision: 235169

URL: http://llvm.org/viewvc/llvm-project?rev=235169&view=rev
Log:
XFAILing TestPrintStackTraces on linux to stabilize the build bot

Modified:
    lldb/trunk/test/python_api/lldbutil/process/TestPrintStackTraces.py

Modified: lldb/trunk/test/python_api/lldbutil/process/TestPrintStackTraces.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/lldbutil/process/TestPrintStackTraces.py?rev=235169&r1=235168&r2=235169&view=diff
==============================================================================
--- lldb/trunk/test/python_api/lldbutil/process/TestPrintStackTraces.py (original)
+++ lldb/trunk/test/python_api/lldbutil/process/TestPrintStackTraces.py Fri Apr 17 04:05:26 2015
@@ -18,10 +18,10 @@ class ThreadsStackTracesTestCase(TestBas
         # 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(TestBas
 
     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")
 





More information about the lldb-commits mailing list