summaryrefslogtreecommitdiff
path: root/libc-test/test/linux_elf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'libc-test/test/linux_elf.rs')
-rw-r--r--libc-test/test/linux_elf.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/libc-test/test/linux_elf.rs b/libc-test/test/linux_elf.rs
new file mode 100644
index 0000000000..8744200e82
--- /dev/null
+++ b/libc-test/test/linux_elf.rs
@@ -0,0 +1,10 @@
+#![allow(bad_style, improper_ctypes, unused, deprecated)]
+
+extern crate libc;
+use libc::*;
+
+#[cfg(target_os = "linux")]
+include!(concat!(env!("OUT_DIR"), "/linux_elf.rs"));
+
+#[cfg(not(target_os = "linux"))]
+fn main() { println!("PASSED 0 tests"); }