Skip to content

Commit

Permalink
test: disable build-std test to unblock beta-1.81 backport
Browse files Browse the repository at this point in the history
  • Loading branch information
weihanglo committed Aug 14, 2024
1 parent aa37b51 commit a2ee632
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/build-std/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ fn basic() {
assert_eq!(p.glob(deps_dir.join("*.dylib")).count(), 0);
}

#[allow(unused_attributes)]
#[ignore = "to unblock beta-1.81 backport"]
#[cargo_test(build_std_real)]
fn cross_custom() {
let p = project()
Expand Down Expand Up @@ -176,6 +178,8 @@ fn cross_custom() {
.run();
}

#[allow(unused_attributes)]
#[ignore = "to unblock beta-1.81 backport"]
#[cargo_test(build_std_real)]
fn custom_test_framework() {
let p = project()
Expand Down Expand Up @@ -237,6 +241,8 @@ fn custom_test_framework() {
// Fixing rust-lang/rust#117839.
// on macOS it never gets remapped.
// Might be a separate issue, so only run on Linux.
#[allow(unused_attributes)]
#[ignore = "to unblock beta-1.81 backport"]
#[cargo_test(build_std_real)]
#[cfg(target_os = "linux")]
fn remap_path_scope() {
Expand Down

0 comments on commit a2ee632

Please sign in to comment.