diff options
author | Pavel Labath <labath@google.com> | 2015-12-01 17:59:56 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-12-01 17:59:56 +0000 |
commit | 00fea6362739271e3fc76854f12a5f26a292c082 (patch) | |
tree | 0f8b2e1f12d01deddd286dc0e8470a6900bf7b35 /lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py | |
parent | b8bfd25239a68b8cf99af4d04796e90027cdca2e (diff) | |
download | bcm5719-llvm-00fea6362739271e3fc76854f12a5f26a292c082.tar.gz bcm5719-llvm-00fea6362739271e3fc76854f12a5f26a292c082.zip |
Revert "Fix race during process interruption"
The android buildbot gets quite flaky after this change. I'm reverting it while I investigate.
llvm-svn: 254430
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 a602afc47ed..2f16cb49a95 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 (200000)", options) + value = frame.EvaluateExpression ("wait_a_while (50000)", 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(200000)", result) + return_value = interp.HandleCommand ("expr -t 100 -u true -- wait_a_while(50000)", result) self.assertTrue (return_value == lldb.eReturnStatusFailed) # Okay, now do it again with long enough time outs: |