[Lldb-commits] [lldb] r274762 - Bump up timeout in TestCallWithTimeout

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 7 08:45:57 PDT 2016


Author: labath
Date: Thu Jul  7 10:45:57 2016
New Revision: 274762

URL: http://llvm.org/viewvc/llvm-project?rev=274762&view=rev
Log:
Bump up timeout in TestCallWithTimeout

remote targets need a bit more time to get their act together

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py?rev=274762&r1=274761&r2=274762&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py Thu Jul  7 10:45:57 2016
@@ -57,7 +57,7 @@ class ExprCommandWithTimeoutsTestCase(Te
 
         frame = thread.GetFrameAtIndex(0)
         
-        value = frame.EvaluateExpression("wait_a_while(250000)", options)
+        value = frame.EvaluateExpression("wait_a_while(300000)", options)
         self.assertTrue (value.IsValid())
         self.assertFalse (value.GetError().Success())
 
@@ -65,7 +65,7 @@ class ExprCommandWithTimeoutsTestCase(Te
         interp = self.dbg.GetCommandInterpreter()
 
         result = lldb.SBCommandReturnObject()
-        return_value = interp.HandleCommand("expr -t 100 -u true -- wait_a_while(250000)", result)
+        return_value = interp.HandleCommand("expr -t 100 -u true -- wait_a_while(300000)", result)
         self.assertTrue (return_value == lldb.eReturnStatusFailed)
 
         # Okay, now do it again with long enough time outs:




More information about the lldb-commits mailing list