diff options
author | Pavel Labath <labath@google.com> | 2016-07-07 15:45:57 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-07-07 15:45:57 +0000 |
commit | 613cce835f1f8ed58a3f116ae979ee196ca826b8 (patch) | |
tree | c3fa55691107c2017c6c895ef79cf10ef08f003e /lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py | |
parent | a5d60afc093c68ee2e48096d7fac05bd154db5ed (diff) | |
download | bcm5719-llvm-613cce835f1f8ed58a3f116ae979ee196ca826b8.tar.gz bcm5719-llvm-613cce835f1f8ed58a3f116ae979ee196ca826b8.zip |
Bump up timeout in TestCallWithTimeout
remote targets need a bit more time to get their act together
llvm-svn: 274762
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py b/lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py index ecab4a77a42..7cb4a647efb 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py @@ -57,7 +57,7 @@ class ExprCommandWithTimeoutsTestCase(TestBase): 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(TestBase): 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: |