rust-libc/libc-test/test/semver.rs
Thomas de Zeeuw 418c48139b Output PASSED 1 tests in semver test
Testing on Android (in ci/runtest-android.rs) seems to depend on the
test outputting it was successful.
2021-04-02 13:24:28 +02:00

13 lines
255 B
Rust

#![allow(unused_imports)]
#![allow(deprecated)]
extern crate libc;
// Generated in `build.rs`.
include!(concat!(env!("OUT_DIR"), "/semver.rs"));
fn main() {
// The test is about the imports created in `semver.rs`.
println!("PASSED 1 tests");
}