aboutsummaryrefslogtreecommitdiff
path: root/systest/src/main.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-10-14 11:39:43 -0700
committerGitHub <[email protected]>2016-10-14 11:39:43 -0700
commit98e71596fb48ce7cdabd46e581f32a9a54398cce (patch)
tree7d600055248d58edfccd4ed5577c32c86bac3ff2 /systest/src/main.rs
parentRename NoPadding to None (diff)
parentIgnore DTLS tests on Windows/ARM for now (diff)
downloadrust-openssl-98e71596fb48ce7cdabd46e581f32a9a54398cce.tar.xz
rust-openssl-98e71596fb48ce7cdabd46e581f32a9a54398cce.zip
Merge pull request #464 from alexcrichton/systest
Add support for OpenSSL 1.1.0
Diffstat (limited to 'systest/src/main.rs')
-rw-r--r--systest/src/main.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/systest/src/main.rs b/systest/src/main.rs
new file mode 100644
index 00000000..39d31b2f
--- /dev/null
+++ b/systest/src/main.rs
@@ -0,0 +1,9 @@
+#![allow(bad_style)]
+
+extern crate openssl_sys;
+extern crate libc;
+
+use libc::*;
+use openssl_sys::*;
+
+include!(concat!(env!("OUT_DIR"), "/all.rs"));