Author: labath
Date: Tue Feb 16 03:58:50 2016
New Revision: 260951

URL: http://llvm.org/viewvc/llvm-project?rev=260951&view=rev
Log:
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.

Modified:
    
lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py

Modified: 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py?rev=260951&r1=260950&r2=260951&view=diff
==============================================================================
--- 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
 (original)
+++ 
lldb/trunk/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
 Tue Feb 16 03:58:50 2016
@@ -45,7 +45,7 @@ class ChangeProcessGroupTestCase(TestBas
                 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))
 


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to