about summary refs log tree commit diff
path: root/tests/run-make/c-link-to-rust-va-list-fn/rmake.rs
blob: 7a450efff942a00d499af0fd30f5d78fd52c29d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// test.c and its static library checkrust.rs make use of variadic functions (VaList).
// This test checks that the use of this feature does not
// prevent the creation of a functional binary.
// See https://github.com/rust-lang/rust/pull/49878

//@ ignore-cross-compile

use run_make_support::{cc, extra_c_flags, run, rustc, static_lib};

fn main() {
    rustc().input("checkrust.rs").run();
    cc().input("test.c")
        .input(static_lib("checkrust"))
        .out_exe("test")
        .args(&extra_c_flags())
        .run();
    run("test");
}