Bump up TestCallWithTimeout timeout

Still a bit flaky on remote targets. Trying a larger bump this time. :/

llvm-svn: 280477
This commit is contained in:
Pavel Labath 2016-09-02 09:25:42 +00:00
parent 21159ee681
commit ce57a33e58
1 changed files with 2 additions and 2 deletions

View File

@ -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: