about summary refs log tree commit diff
path: root/tests/run-make/dylib-chain/rmake.rs
blob: 54d53d47092015b4aee2bef798085d5874ef0c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// In this test, m4 depends on m3, which depends on m2, which depends on m1.
// Even though dependencies are chained like this and there is no direct mention
// of m1 or m2 in m4.rs, compilation and execution should still succeed. Unlike the
// rlib-chain test, dynamic libraries contain upstream dependencies, and breaking
// the chain by removing the dylibs causes execution to fail.
// See https://github.com/rust-lang/rust/issues/10434

//@ ignore-cross-compile
// Reason: the compiled binary is executed

use run_make_support::{dynamic_lib_name, rfs, run, run_fail, rustc};

fn main() {
    rustc().input("m1.rs").arg("-Cprefer-dynamic").run();
    rustc().input("m2.rs").arg("-Cprefer-dynamic").run();
    rustc().input("m3.rs").arg("-Cprefer-dynamic").run();
    rustc().input("m4.rs").run();
    run("m4");
    rfs::remove_file(dynamic_lib_name("m1"));
    rfs::remove_file(dynamic_lib_name("m2"));
    rfs::remove_file(dynamic_lib_name("m3"));
    run_fail("m4");
}