[Lldb-commits] [lldb] r280477 - Bump up TestCallWithTimeout timeout
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 2 02:25:43 PDT 2016
Author: labath
Date: Fri Sep 2 04:25:42 2016
New Revision: 280477
URL: http://llvm.org/viewvc/llvm-project?rev=280477&view=rev
Log:
Bump up TestCallWithTimeout timeout
Still a bit flaky on remote targets. Trying a larger bump this time. :/
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=280477&r1=280476&r2=280477&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 Fri Sep 2 04:25:42 2016
@@ -57,7 +57,7 @@ class ExprCommandWithTimeoutsTestCase(Te
frame = thread.GetFrameAtIndex(0)
- value = frame.EvaluateExpression("wait_a_while(300000)", options)
+ value = frame.EvaluateExpression("wait_a_while(1000000)", 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(300000)", result)
+ return_value = interp.HandleCommand("expr -t 100 -u true -- wait_a_while(1000000)", 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