소스 검색

Add note about not getting full output from iasl in aml_tester

Isaac Woods 4 년 전
부모
커밋
a93cfa2453
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  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(),