[Lldb-commits] [lldb] r236986 - Skip and XFAIL TestThreadStepOut as it times out on the Linux build bot

Tamas Berghammer tberghammer at google.com
Mon May 11 05:42:57 PDT 2015


Author: tberghammer
Date: Mon May 11 07:42:56 2015
New Revision: 236986

URL: http://llvm.org/viewvc/llvm-project?rev=236986&view=rev
Log:
Skip and XFAIL TestThreadStepOut as it times out on the Linux build bot

Modified:
    lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py

Modified: lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py?rev=236986&r1=236985&r2=236986&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py (original)
+++ lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py Mon May 11 07:42:56 2015
@@ -18,6 +18,8 @@ class ThreadStepOutTestCase(TestBase):
         self.buildDsym(dictionary=self.getBuildFlags())
         self.step_out_test(self.step_out_single_thread_with_cmd)
 
+    @skipIfLinux                              # Test occasionally times out on the Linux build bot
+    @expectedFailureLinux("llvm.org/pr23477") # Test occasionally times out on the Linux build bot
     @expectedFailureFreeBSD("llvm.org/pr18066") # inferior does not exit
     @dwarf_test
     def test_step_single_thread_with_dwarf(self):
@@ -31,6 +33,8 @@ class ThreadStepOutTestCase(TestBase):
         self.buildDsym(dictionary=self.getBuildFlags())
         self.step_out_test(self.step_out_all_threads_with_cmd)
 
+    @skipIfLinux                              # Test occasionally times out on the Linux build bot
+    @expectedFailureLinux("llvm.org/pr23477") # Test occasionally times out on the Linux build bot
     @expectedFailureFreeBSD("llvm.org/pr19347") # 2nd thread stops at breakpoint
     @dwarf_test
     def test_step_all_threads_with_dwarf(self):
@@ -44,6 +48,8 @@ class ThreadStepOutTestCase(TestBase):
         self.buildDsym(dictionary=self.getBuildFlags())
         self.step_out_test(self.step_out_with_python)
 
+    @skipIfLinux                              # Test occasionally times out on the Linux build bot
+    @expectedFailureLinux("llvm.org/pr23477") # Test occasionally times out on the Linux build bot
     @expectedFailureFreeBSD("llvm.org/pr19347")
     @dwarf_test
     def test_python_with_dwarf(self):





More information about the lldb-commits mailing list