Bug 1183324 - Make infinite recursion test faster to fix intermittent timeouts r=terrence

This commit is contained in:
Jon Coppeard 2015-07-23 09:47:09 +01:00
parent 438d6bdd4a
commit 5f19b40cd2

View File

@ -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();