rust/tests/run-make/alloc-no-oom-handling/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
450 B
Rust
Raw Permalink Normal View History

// This test checks that alloc can still compile successfully
2024-05-11 14:54:18 -05:00
// when the unstable no_global_oom_handling feature is turned on.
2024-05-11 14:35:49 -05:00
// See https://github.com/rust-lang/rust/pull/84266
use run_make_support::{rustc, source_root};
2024-05-11 14:35:49 -05:00
fn main() {
rustc()
.edition("2021")
.arg("-Dwarnings")
.crate_type("rlib")
.input(source_root().join("library/alloc/src/lib.rs"))
2024-05-11 14:35:49 -05:00
.cfg("no_global_oom_handling")
.run();
}