We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--mini-tests
--std-tests
1 parent bb4fd2c commit 984e045Copy full SHA for 984e045
build_system/src/test.rs
@@ -304,7 +304,7 @@ fn maybe_run_command_in_vm(
304
args: &TestArg,
305
) -> Result<(), String> {
306
if !args.config_info.run_in_vm {
307
- run_command_with_env(command, None, Some(env))?;
+ run_command_with_output_and_env(command, None, Some(env))?;
308
return Ok(());
309
}
310
let vm_parent_dir = match env.get("CG_GCC_VM_DIR") {
@@ -330,7 +330,7 @@ fn maybe_run_command_in_vm(
330
&inside_vm_exe_path,
331
];
332
vm_command.extend_from_slice(command);
333
- run_command_with_env(&vm_command, Some(&vm_parent_dir), Some(env))?;
+ run_command_with_output_and_env(&vm_command, Some(&vm_parent_dir), Some(env))?;
334
Ok(())
335
336
0 commit comments