forked from OSchip/llvm-project
Lower the depth of the recursion in this test since it would on occasion timeout and add noise to test runs
llvm-svn: 251161
This commit is contained in:
parent
2ea0a23f18
commit
79c4ee4d98
|
@ -49,7 +49,7 @@ class ValueObjectRecursionTestCase(TestBase):
|
|||
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)
|
||||
|
|
Loading…
Reference in New Issue