From 4013fa48487ea9ae917932488858b95d626c611e Mon Sep 17 00:00:00 2001 From: Bryant Mairs Date: Sun, 3 Dec 2017 13:26:52 -0800 Subject: Remove nix-test subcrate This was doing testing for errno constants and a few other types that is no longer necessary now that these types are all tested within the libc project itself. --- nix-test/src/lib.rs | 61 ----------------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 nix-test/src/lib.rs (limited to 'nix-test/src/lib.rs') diff --git a/nix-test/src/lib.rs b/nix-test/src/lib.rs deleted file mode 100644 index cfe7b798..00000000 --- a/nix-test/src/lib.rs +++ /dev/null @@ -1,61 +0,0 @@ -extern crate libc; - -use std::fmt; -use std::ffi::CString; -use libc::{c_int, c_char}; - -mod ffi { - use libc::{c_int, c_char, size_t}; - - #[link(name = "nixtest", kind = "static")] - extern { - pub fn get_int_const(errno: *const c_char) -> c_int; - pub fn size_of(ty: *const c_char) -> size_t; - } -} - -pub fn assert_const_eq(name: &str, actual: T) { - unsafe { - let cstr = CString::new(name).unwrap(); - let expect = GetConst::get_const(cstr.as_ptr()); - - if actual != expect { - panic!("incorrect value for errno {}; expect={}; actual={}", - name, expect, actual); - } - } -} - -pub fn assert_size_of(name: &str) { - use std::mem; - - unsafe { - let cstr = CString::new(name).unwrap(); - let expect = ffi::size_of(cstr.as_ptr()) as usize; - - assert!(expect > 0, "undefined type {}", name); - - if mem::size_of::() != expect { - panic!("incorrectly sized type; expect={}; actual={}", - expect, mem::size_of::()); - } - } -} - -pub use ffi::get_int_const; - -pub trait GetConst : PartialEq + fmt::Display { - unsafe fn get_const(name: *const c_char) -> Self; -} - -impl GetConst for c_int { - unsafe fn get_const(name: *const c_char) -> c_int { - ffi::get_int_const(name) - } -} - -impl GetConst for u32 { - unsafe fn get_const(name: *const c_char) -> u32 { - ffi::get_int_const(name) as u32 - } -} -- cgit v1.2.3