diff options
author | Pavel Labath <labath@google.com> | 2016-02-16 09:58:50 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-02-16 09:58:50 +0000 |
commit | 91b1e19152f51330a9267f859374134d22206af3 (patch) | |
tree | 212106ef9f864e08163a1a8b5b5e9bee84e7443a /lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py | |
parent | 35f26f613a37a4e7894a92440d4f2f20539d9b79 (diff) | |
download | bcm5719-llvm-91b1e19152f51330a9267f859374134d22206af3.tar.gz bcm5719-llvm-91b1e19152f51330a9267f859374134d22206af3.zip |
Bump up timeout in TestChangeProcessGroup
The test fails very rarely. I suspect this is simply because the inferior does not have enough
time to create the file under heavy load.
llvm-svn: 260951
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py b/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py index fde93b771aa..5aa6e795491 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py @@ -45,7 +45,7 @@ class ChangeProcessGroupTestCase(TestBase): print(msg) if i < max_attempts: # Exponential backoff! - time.sleep(pow(2, i) * 0.25) + time.sleep(pow(2, i) * 0.30) else: self.fail("Child PID file %s not found even after %d attempts." % (pid_file_path, max_attempts)) |