Skip to content

Remove custom run methods #78

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 1 addition & 92 deletions JetStreamDriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -2382,99 +2382,8 @@ function processTestList(testList)
}
}

let runOctane = true;
let runARES = true;
let runWSL = true;
let runRexBench = true;
let runWTB = true;
let runSunSpider = true;
let runBigIntNoble = true;
let runBigIntMisc = true;
let runProxy = true;
let runClassFields = true;
let runGenerators = true;
let runSimple = true;
let runCDJS = true;
let runWorkerTests = !!isInBrowser;
let runSeaMonster = true;
let runCodeLoad = true;
let runWasm = true;
if (typeof WebAssembly === "undefined")
runWasm = false;

if (false) {
runOctane = false;
runARES = false;
runWSL = false;
runRexBench = false;
runWTB = false;
runSunSpider = false;
runBigIntNoble = false;
runBigIntMisc = false;
runProxy = false;
runClassFields = false;
runGenerators = false;
runSimple = false;
runCDJS = false;
runWorkerTests = false;
runSeaMonster = false;
runCodeLoad = false;
runWasm = false;
}

if (typeof testList !== "undefined") {
processTestList(testList);
} else if (customTestList.length) {
processTestList(customTestList);
} else {
if (runARES)
enableBenchmarksByTag("ARES");

if (runCDJS)
enableBenchmarksByTag("CDJS");

if (runCodeLoad)
enableBenchmarksByTag("CodeLoad");

if (runOctane)
enableBenchmarksByTag("Octane");

if (runRexBench)
enableBenchmarksByTag("RexBench");

if (runSeaMonster)
enableBenchmarksByTag("SeaMonster");

if (runSimple)
enableBenchmarksByTag("Simple");

if (runSunSpider)
enableBenchmarksByTag("SunSpider");

if (runBigIntNoble)
enableBenchmarksByTag("BigIntNoble");

if (runBigIntMisc)
enableBenchmarksByTag("BigIntMisc");

if (runProxy)
enableBenchmarksByTag("Proxy");

if (runClassFields)
enableBenchmarksByTag("ClassFields");

if (runGenerators)
enableBenchmarksByTag("Generators");

if (runWasm)
enableBenchmarksByTag("Wasm");

if (runWorkerTests)
enableBenchmarksByTag("WorkerTests");

if (runWSL)
enableBenchmarksByTag("WSL");

if (runWTB)
enableBenchmarksByTag("WTB");
}
}
Loading