Explorar o código

Add note about not getting full output from iasl in aml_tester

Isaac Woods %!s(int64=4) %!d(string=hai) anos
pai
achega
a93cfa2453
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      aml_tester/src/main.rs

+ 3 - 0
aml_tester/src/main.rs

@@ -111,6 +111,9 @@ fn compile_asl_files(dir_path: &Path) -> std::io::Result<()> {
         let output = Command::new("iasl").arg(file.path()).output()?;
 
         if !output.status.success() {
+            // TODO: this doesn't print the whole output of `iasl` for some reason (no actual error messages), but
+            // it doesn't seem to be on stdout either. No idea how it ends up at the shell tbh; would be good to
+            // find it and print it here.
             println!(
                 "Failed to compile ASL file: {}. Output from iasl: {}",
                 file.path().to_str().unwrap(),