fixed valgrind crate

This commit is contained in:
Anton-4 2024-10-21 17:43:22 +02:00
parent c64160ac73
commit 0e28199b49
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
4 changed files with 32 additions and 10 deletions

View file

@ -1378,9 +1378,11 @@ pub fn preprocess_host_wasm32(host_input_path: &Path, host_output_path: &Path) {
fn run_build_command(mut command: Command, file_to_build: &str, flaky_fail_counter: usize) {
let command_string = stringify_command(&command, false);
let cmd_str = &command_string;
roc_debug_flags::dbg_do!(roc_debug_flags::ROC_PRINT_BUILD_COMMANDS, {
print_command_str(cmd_str);
});
let cmd_output = command.output().unwrap();
let max_flaky_fail_count = 10;