Bug 1870945 - Mark various gc tests as slow r=sfink

Depends on D196921

Differential Revision: https://phabricator.services.mozilla.com/D196922
This commit is contained in:
Matthew Gaudet 2024-01-08 20:38:12 +00:00
Родитель 24831f0813
Коммит f3e130bced
5 изменённых файлов: 8 добавлений и 3 удалений

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

@ -1,4 +1,4 @@
// |jit-test| skip-if: !('oomTest' in this)
// |jit-test| slow; skip-if: !('oomTest' in this)
var x = ``.split();
oomTest(function() {

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

@ -1,3 +1,5 @@
// |jit-test| slow;
gczeal(14, 2);
var g32 = newGlobal();
let wr6 = new g32.WeakRef(newGlobal({

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

@ -1,3 +1,5 @@
// |jit-test| slow;
for (var i = 0; i < 32768; i++) {
new ArrayBuffer(1024*1024);
}

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

@ -1,4 +1,4 @@
// |jit-test| --ion-offthread-compile=off; skip-if: helperThreadCount() === 0
// |jit-test| slow; --ion-offthread-compile=off; skip-if: helperThreadCount() === 0
var g = newGlobal();
gczeal(9, 1);

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

@ -1,4 +1,5 @@
// Bug 1851619: Shouldn't crash. |jit-test| exitstatus: 3
// |jit-test| slow; exitstatus: 3
// Bug 1851619: Shouldn't crash.
// This test triggers a stack overflow, then calls a finalization registry
// cleanup callback that previously used data that had already been discarded.