diff options
| author | Greg Clayton <gclayton@apple.com> | 2012-10-16 22:58:25 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2012-10-16 22:58:25 +0000 |
| commit | cced1566e228674f03d9e93e076439d4f82b9f91 (patch) | |
| tree | b5716a088c03e82de97d30458c5a12738e0d4905 /lldb/test/expression_command/timeout | |
| parent | eb7d598cec1564d33e47e3950d736d766eb918cf (diff) | |
| download | bcm5719-llvm-cced1566e228674f03d9e93e076439d4f82b9f91.tar.gz bcm5719-llvm-cced1566e228674f03d9e93e076439d4f82b9f91.zip | |
API cleanup.
llvm-svn: 166070
Diffstat (limited to 'lldb/test/expression_command/timeout')
| -rw-r--r-- | lldb/test/expression_command/timeout/TestCallWithTimeout.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/expression_command/timeout/TestCallWithTimeout.py b/lldb/test/expression_command/timeout/TestCallWithTimeout.py index fb9b7d04002..6ca21bca223 100644 --- a/lldb/test/expression_command/timeout/TestCallWithTimeout.py +++ b/lldb/test/expression_command/timeout/TestCallWithTimeout.py @@ -57,7 +57,7 @@ class ExprCommandWithTimeoutsTestCase(TestBase): # First set the timeout too short, and make sure we fail. options = lldb.SBExpressionOptions() - options.SetTimeoutUsec(100) + options.SetTimeoutInMicroSeconds(100) options.SetUnwindOnError(True) frame = thread.GetFrameAtIndex(0) @@ -75,7 +75,7 @@ class ExprCommandWithTimeoutsTestCase(TestBase): # Okay, now do it again with long enough time outs: - options.SetTimeoutUsec(1000000) + options.SetTimeoutInMicroSeconds(1000000) value = frame.EvaluateExpression ("wait_a_while (1000)", options) self.assertTrue(value.IsValid()) self.assertTrue (value.GetError().Success() == True) |

