Bug 988522 - Temporarily disable jit-test parallel timeout.js and timeout-gc.js tests until Bug 906525 is resolved; r=terrence

This commit is contained in:
Dan Minor 2014-03-26 16:19:51 -04:00
parent 5842aa58f9
commit 07494741dd
2 changed files with 0 additions and 44 deletions

View File

@ -1,27 +0,0 @@
// |jit-test| exitstatus: 6;
// One sneaky way to run GC during a parallel section is to invoke the
// gc() function during the parallel timeout!
load(libdir + "parallelarray-helpers.js");
function iterate(x) {
while (x == 2046) {
// for exactly one index, this infinitely loops!
// this ensures that the warmup doesn't loop.
}
return 22;
}
function timeoutfunc() {
print("Timed out, invoking the GC");
gc();
return false;
}
timeout(1, timeoutfunc);
if (getBuildConfiguration().parallelJS)
Array.buildPar(2048, iterate);
else
while(true);

View File

@ -1,17 +0,0 @@
// |jit-test| exitstatus: 6;
load(libdir + "parallelarray-helpers.js");
function iterate(x) {
while (x == 2046) {
// for exactly one index, this infinitely loops!
// this ensures that the warmup doesn't loop.
}
return 22;
}
timeout(1);
if (getBuildConfiguration().parallelJS)
Array.buildPar(2048, iterate);
else
while (true);