Bug 1380387 - Disable gczeal in GC marking test r=me

This commit is contained in:
Jon Coppeard 2017-07-18 16:56:31 +01:00
Родитель 03d9b8eaa6
Коммит 9021f21c69
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -9,6 +9,9 @@ var summary =
print(BUGNUMBER + ": " + summary);
if (typeof gczeal !== 'undefined')
gczeal(0);
grayRoot().x = Object.create(null);
addMarkObservers([grayRoot(), grayRoot().x, this, Object.create(null)]);
gc();
@ -68,9 +71,6 @@ assertEq(marks[3], 'gray', 'black map, gray key => gray value');
// must be gray (unless otherwise reachable from black.) If neither a nor b is
// marked at all, then they will not keep x alive.
if (typeof gczeal !== 'undefined')
gczeal(0);
clearMarkObservers();
// Black map, gray delegate => gray key