js/src/jit-test/tests/gc/multi-03.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:4b7b327d12a3
1 /* Exercise the path where we want to collect a new compartment in the middle of incremental GC. */
2
3 var g1 = newGlobal();
4 var g2 = newGlobal();
5
6 schedulegc(g1);
7 schedulegc(g2);
8 gcslice(0);
9 schedulegc(g1);
10 gcslice(1);
11 gcslice();

mercurial