浏览代码

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(),