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. --- test/test.rs | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'test') diff --git a/test/test.rs b/test/test.rs index f4942d3d..42065694 100644 --- a/test/test.rs +++ b/test/test.rs @@ -9,8 +9,6 @@ extern crate rand; extern crate tempdir; extern crate tempfile; -extern crate nix_test as nixtest; - mod sys; mod test_fcntl; #[cfg(target_os = "linux")] @@ -24,7 +22,6 @@ mod test_sendfile; mod test_stat; mod test_unistd; -use nixtest::assert_size_of; use std::os::unix::io::RawFd; use std::sync::Mutex; use nix::unistd::read; @@ -54,10 +51,3 @@ lazy_static! { /// Any test that alters signal handling must grab this mutex. pub static ref SIGNAL_MTX: Mutex<()> = Mutex::new(()); } - -#[test] -pub fn test_size_of_long() { - // This test is mostly here to ensure that 32bit CI is correctly - // functioning - assert_size_of::("long"); -} -- cgit v1.2.3