Skip to content

Commit

Permalink
Also shim llvm-ar in the clang_android test on non-Windows (#1016)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaoliello committed Mar 21, 2024
1 parent 0195ebf commit bbae474
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,8 @@ fn clang_android() {
{
let test = Test::new();
test.shim("arm-linux-androideabi-clang")
.shim("arm-linux-androideabi-ar");
.shim("arm-linux-androideabi-ar")
.shim("llvm-ar");
test.gcc().target(target).file("foo.c").compile("foo");
test.cmd(0).must_not_have("--target=arm-linux-androideabi");
}
Expand Down

0 comments on commit bbae474

Please sign in to comment.