Skip to content

Commit

Permalink
Remove prof flag
Browse files Browse the repository at this point in the history
  • Loading branch information
hansott committed Jan 9, 2025
1 parent 8d27ef5 commit 967bcfd
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions benchmarks/operations/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,9 @@ const modules = [
process.exit(1);
}

let flags = [];
if (module === "ssrf") {
flags.push("--prof");
}
const withZen = spawnSync(
"node",
flags.concat(["run.js", module, "true"]),
{
cwd: __dirname,
}
);
const withZen = spawnSync("node", ["run.js", module, "true"], {
cwd: __dirname,
});

if (withZen.status !== 0) {
console.error(withZen.stderr.toString());
Expand Down

0 comments on commit 967bcfd

Please sign in to comment.