Allow benchmarks to use the FS and to use additional JARs

This commit is contained in:
Marco Castelluccio 2015-03-20 23:52:50 +01:00
Родитель e3af4429b2
Коммит 7b298ef043
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -213,6 +213,11 @@ function start() {
jvm.startIsolate0(config.main, config.args);
}
// If we're not running a MIDlet, we need to wait everything to be loaded.
if (!config.midletClassName || config.midletClassName == "RunTests") {
loadingPromises = loadingPromises.concat(loadingMIDletPromises);
}
Promise.all(loadingPromises).then(start, function (reason) {
console.error("Loading failed: \"" + reason + "\"");
});