rust/tests/run-make/suspicious-library/rmake.rs

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

16 lines
490 B
Rust
Raw Normal View History

2024-05-28 14:54:09 -05: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 std::fs::File;
use run_make_support::{dynamic_lib_name, rustc};
2024-05-28 14:54:09 -05:00
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 14:54:09 -05:00
rustc().input("bar.rs").run();
}