Bug 1293127 - Fix testcode to handle zeal builds r=me

This commit is contained in:
Jon Coppeard 2016-08-19 18:04:47 +01:00
Родитель 19b246a586
Коммит 509ffe40c1
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,6 @@
// Test that we can create 1000 cross compartment wrappers to nursery objects
// without trigger a minor GC.
gczeal(0);
let g = newGlobal();
evalcx("function f(x) { return {x: x}; }", g);
gc();
@ -7,4 +8,4 @@ let initial = gcparam("gcNumber");
for (let i = 0; i < 1000; i++)
g.f(i);
let final = gcparam("gcNumber");
assertEq(initial, final);
assertEq(final, initial);