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

15 lines
489 B
Rust
Raw Normal View History

2024-05-28 15:54:09 -04:00
// This test creates some fake dynamic libraries with nothing inside,
// and checks if rustc avoids them and successfully compiles as a result.
//@ ignore-cross-compile
use run_make_support::{dynamic_lib_name, rustc};
2024-05-28 15:54:09 -04:00
use std::fs::File;
fn main() {
rustc().input("foo.rs").arg("-Cprefer-dynamic").run();
File::create(dynamic_lib_name("foo-something-special")).unwrap();
File::create(dynamic_lib_name("foo-something-special2")).unwrap();
2024-05-28 15:54:09 -04:00
rustc().input("bar.rs").run();
}