Bug 1009788 followup, make the test not fail when parallelJS is off, r=jonco

This commit is contained in:
Phil Ringnalda 2014-05-19 07:12:33 -07:00
parent 588e376d82
commit 87bd433cda

View File

@ -1,5 +1,7 @@
for (var a = 0; a < 2000; a++) {
Array.buildPar(500, (function() {
return {}
}))
if (getBuildConfiguration().parallelJS) {
for (var a = 0; a < 2000; a++) {
Array.buildPar(500, (function() {
return {}
}))
}
}