1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

tests: extern crates in separated test modules

This commit is contained in:
Knight 2016-08-06 11:18:34 +08:00
parent 2eeb7b77cc
commit cfc28ebc05
6 changed files with 17 additions and 23 deletions

View file

@ -1,19 +1,6 @@
extern crate filetime;
extern crate libc;
extern crate rand;
extern crate regex;
extern crate tempdir;
extern crate time;
#[cfg(windows)] extern crate kernel32;
#[cfg(windows)] extern crate winapi;
#[macro_use]
mod common;
#[path="../src/factor/sieve.rs"]
mod sieve;
// For conditional compilation
macro_rules! unix_only {
($($fea:expr, $m:ident);+) => {