Skip to content

Commit

Permalink
Bug 1870945 - Mark various gc tests as slow r=sfink
Browse files Browse the repository at this point in the history
Depends on D196921

Differential Revision: https://phabricator.services.mozilla.com/D196922
  • Loading branch information
mgaudet committed Jan 8, 2024
1 parent 24831f0 commit f3e130b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/src/jit-test/tests/gc/bug-1303015.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// |jit-test| skip-if: !('oomTest' in this)
// |jit-test| slow; skip-if: !('oomTest' in this)

var x = ``.split();
oomTest(function() {
Expand Down
2 changes: 2 additions & 0 deletions js/src/jit-test/tests/gc/bug-1607495.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// |jit-test| slow;

gczeal(14, 2);
var g32 = newGlobal();
let wr6 = new g32.WeakRef(newGlobal({
Expand Down
2 changes: 2 additions & 0 deletions js/src/jit-test/tests/gc/bug-1620213.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// |jit-test| slow;

for (var i = 0; i < 32768; i++) {
new ArrayBuffer(1024*1024);
}
2 changes: 1 addition & 1 deletion js/src/jit-test/tests/gc/bug-1667336.js
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
3 changes: 2 additions & 1 deletion js/src/jit-test/tests/gc/bug-1851619.js
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit f3e130b

Please sign in to comment.