Update run-make tests to no longer use aux_build

This commit is contained in:
Jieyou Xu 2025-04-02 15:39:34 +08:00
parent b591eb022d
commit f31bd747a9
No known key found for this signature in database
GPG key ID: 045B995028EA6AFC
2 changed files with 4 additions and 4 deletions

View file

@ -3,10 +3,10 @@
// Check that the `CURRENT_RUSTC_VERSION` placeholder is correctly replaced by the current // Check that the `CURRENT_RUSTC_VERSION` placeholder is correctly replaced by the current
// `rustc` version and the `since` property in feature stability gating is properly respected. // `rustc` version and the `since` property in feature stability gating is properly respected.
use run_make_support::{aux_build, rfs, rustc, source_root}; use run_make_support::{rfs, rustc, source_root};
fn main() { fn main() {
aux_build().input("stable.rs").emit("metadata").run(); rustc().crate_type("lib").input("stable.rs").emit("metadata").run();
let output = let output =
rustc().input("main.rs").emit("metadata").extern_("stable", "libstable.rmeta").run(); rustc().input("main.rs").emit("metadata").extern_("stable", "libstable.rmeta").run();

View file

@ -4,7 +4,7 @@ use std::path::Path;
#[cfg(unix)] #[cfg(unix)]
use run_make_support::libc; use run_make_support::libc;
use run_make_support::{aux_build, rfs}; use run_make_support::{rfs, rustc};
fn main() { fn main() {
#[cfg(unix)] #[cfg(unix)]
@ -12,7 +12,7 @@ fn main() {
libc::umask(0o002); libc::umask(0o002);
} }
aux_build().arg("foo.rs").run(); rustc().crate_type("lib").arg("foo.rs").run();
verify(Path::new("libfoo.rlib")); verify(Path::new("libfoo.rlib"));
} }