[Lldb-commits] [lldb] r252703 - Bump up test timeout interval on Darwin from 4 to 6 minutes.

Todd Fiala via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 10 21:10:07 PST 2015


Author: tfiala
Date: Tue Nov 10 23:10:07 2015
New Revision: 252703

URL: http://llvm.org/viewvc/llvm-project?rev=252703&view=rev
Log:
Bump up test timeout interval on Darwin from 4 to 6 minutes.

We have several tests that TIMEOUT under heavy load but just need a bit
more time to complete.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/dosep.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/dosep.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/dosep.py?rev=252703&r1=252702&r2=252703&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/dosep.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/dosep.py Tue Nov 10 23:10:07 2015
@@ -1048,6 +1048,9 @@ def getDefaultTimeout(platform_name):
 
     if platform_name.startswith("remote-"):
         return "10m"
+    elif platform_name == 'darwin':
+        # We are consistently needing more time on a few tests.
+        return "6m"
     else:
         return "4m"
 




More information about the lldb-commits mailing list