[Lldb-commits] [lldb] r251161 - Lower the depth of the recursion in this test since it would on occasion timeout and add noise to test runs
Enrico Granata via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 23 17:15:57 PDT 2015
Author: enrico
Date: Fri Oct 23 19:15:57 2015
New Revision: 251161
URL: http://llvm.org/viewvc/llvm-project?rev=251161&view=rev
Log:
Lower the depth of the recursion in this test since it would on occasion timeout and add noise to test runs
Modified:
lldb/trunk/test/functionalities/recursion/TestValueObjectRecursion.py
Modified: lldb/trunk/test/functionalities/recursion/TestValueObjectRecursion.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/recursion/TestValueObjectRecursion.py?rev=251161&r1=251160&r2=251161&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/recursion/TestValueObjectRecursion.py (original)
+++ lldb/trunk/test/functionalities/recursion/TestValueObjectRecursion.py Fri Oct 23 19:15:57 2015
@@ -49,7 +49,7 @@ class ValueObjectRecursionTestCase(TestB
if self.TraceOn():
print(root)
print(child)
- for i in range(0,24500):
+ for i in range(0,15000):
child = child.GetChildAtIndex(1)
if self.TraceOn():
print(child)
More information about the lldb-commits
mailing list