зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1183324 - Make infinite recursion test faster to fix intermittent timeouts r=terrence
This commit is contained in:
Родитель
21a8bef3f8
Коммит
c469478701
|
@ -1,4 +1,3 @@
|
|||
// |reftest| skip-if((xulRuntime.OS=="Darwin"||Android)&&isDebugBuild) -- this takes too long to over-recurse.
|
||||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
|
@ -44,10 +43,12 @@ function test()
|
|||
{
|
||||
for (var i in f());
|
||||
}
|
||||
catch (e) { }
|
||||
catch (e)
|
||||
{
|
||||
gc();
|
||||
}
|
||||
}
|
||||
foopy();
|
||||
gc();
|
||||
}
|
||||
test();
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче