loro/crates/loro-internal/scripts/fuzz.ts
Zixuan Chen 7561448323
refactor: replace "local" and "fromCheckout" in event with "triggeredBy" (#312)
* refactor: replace "local" and "fromCheckout" in event with "triggeredBy"

* refactor: simplify the name to `by`
2024-04-03 17:56:01 +08:00

36 lines
865 B
TypeScript

import * as path from "https://deno.land/std@0.105.0/path/mod.ts";
const __dirname = path.dirname(path.fromFileUrl(import.meta.url));
import { resolve } from "https://deno.land/std@0.198.0/path/mod.ts";
const validTargets = Array.from(
Deno.readDirSync(resolve(__dirname, "../fuzz/fuzz_targets")),
).map((x) => x.name.replace(/.rs$/, ""));
const targets =
Deno.args.length === 0
? validTargets
: Deno.args.filter((x) => validTargets.includes(x));
const promises = [];
for (const target of targets) {
const cmd = [
"cargo",
"+nightly",
"fuzz",
"run",
target,
"--",
"-max_total_time=1",
];
console.log("🔨" + cmd.join(" "));
promises.push(
Deno.run({
cmd,
stdout: "inherit",
stderr: "inherit",
cwd: resolve(__dirname, ".."),
}).status(),
);
}
await Promise.allSettled(promises);