瀏覽代碼

integration-test: allow llvm-objcopy env override

Allows integration tests to run where llvm-objcopy is versioned.

Closes: https://github.com/aya-rs/aya/issues/1142
Ignacy 2 月之前
父節點
當前提交
3edac6153e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test/integration-test/build.rs

+ 1 - 1
test/integration-test/build.rs

@@ -165,7 +165,7 @@ fn main() -> Result<()> {
                 output.push(dst);
                 exec(
                     // NB: objcopy doesn't support reading from stdin, so we have to use llvm-objcopy.
-                    Command::new("llvm-objcopy")
+                    Command::new(env::var_os("LLVM_OBJCOPY").unwrap_or("llvm-objcopy".into()))
                         .arg("--dump-section")
                         .arg(output)
                         .arg("-")