Auto merge of #8301 - ehuss:disable-strip-macos, r=alexcrichton

Disable strip_works test on macos.

This feature doesn't work on macOS, because it uses ld64 with clang.  See https://github.com/rust-lang/rust/issues/72110#issuecomment-636609419.
This commit is contained in:
bors 2020-06-01 13:39:22 +00:00
commit 1afe225e9f

View file

@ -470,6 +470,8 @@ fn thin_lto_works() {
}
#[cargo_test]
// Strip doesn't work on macos.
#[cfg_attr(target_os = "macos", ignore)]
fn strip_works() {
if !is_nightly() {
return;