diff options
author | Marcos Casagrande <marcoscvp90@gmail.com> | 2022-09-27 21:33:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 21:33:17 +0200 |
commit | 980d65b4d0f26a841230acd662a1dcb3cf9c0247 (patch) | |
tree | 7b34b1ae69afe2f448b992508e518dd25fa4e90e /cli/bench/main.rs | |
parent | 9bb3ccbab25121119d1a05627c9d695bc09d615a (diff) |
fix(cli/bench): strace numeric format (#16055)
Diffstat (limited to 'cli/bench/main.rs')
-rw-r--r-- | cli/bench/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/bench/main.rs b/cli/bench/main.rs index c1d8ba2e4..224e2d167 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -523,6 +523,7 @@ async fn main() -> Result<()> { ]) .args(args.iter()) .stdout(Stdio::null()) + .env("LC_NUMERIC", "C") .spawn()? .wait()?; let expected_exit_code = expected_exit_code.unwrap_or(0); |