diff options
author | Pavel Labath <labath@google.com> | 2016-09-02 09:25:42 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-09-02 09:25:42 +0000 |
commit | ce57a33e580daec47f09b21a46bed161aeb7dcc1 (patch) | |
tree | 3c26f49a8dc8815a584e7b6684970721f706c6a4 /lldb/packages/Python/lldbsuite/test/expression_command/timeout | |
parent | 21159ee68171686865d67823e8c61ecb43a302d5 (diff) | |
download | bcm5719-llvm-ce57a33e580daec47f09b21a46bed161aeb7dcc1.tar.gz bcm5719-llvm-ce57a33e580daec47f09b21a46bed161aeb7dcc1.zip |
Bump up TestCallWithTimeout timeout
Still a bit flaky on remote targets. Trying a larger bump this time. :/
llvm-svn: 280477
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/timeout')
-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 7cb4a647efb..82614319f2a 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(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(TestBase): 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: |