1
0
Разклоняване 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 14:54:47 -05:00
denoland-deno/tests/specs/permission/proc_self_fd/main.js

19 реда
393 Б
JavaScript
Директно Normal View История

// This test is Linux/Darwin only
if (Deno.build.os !== "linux" && Deno.build.os !== "darwin") {
console.log("hi\n\n0");
Deno.exit(123);
}
const cmd = new Deno.Command("/usr/bin/env", {
args: [
"bash",
"-c",
[Deno.execPath(), "run", "--allow-read", "reader.ts", '<(echo "hi")'].join(
" ",
),
],
}).spawn();
console.log((await cmd.status).code);
Deno.exit(123);