1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

fix(cli/bench): strace numeric format (#16055)

This commit is contained in:
Marcos Casagrande 2022-09-27 21:33:17 +02:00 committed by GitHub
parent 9bb3ccbab2
commit 980d65b4d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -523,6 +523,7 @@ async fn main() -> Result<()> {
]) ])
.args(args.iter()) .args(args.iter())
.stdout(Stdio::null()) .stdout(Stdio::null())
.env("LC_NUMERIC", "C")
.spawn()? .spawn()?
.wait()?; .wait()?;
let expected_exit_code = expected_exit_code.unwrap_or(0); let expected_exit_code = expected_exit_code.unwrap_or(0);