mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
95 lines
2 KiB
Rust
95 lines
2 KiB
Rust
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);+) => {
|
|
$(
|
|
#[cfg(unix)]
|
|
#[cfg(feature = $fea)]
|
|
mod $m;
|
|
)+
|
|
};
|
|
}
|
|
unix_only! {
|
|
"chmod", test_chmod;
|
|
"mv", test_mv;
|
|
"pathchk", test_pathchk;
|
|
"stdbuf", test_stdbuf;
|
|
"touch", test_touch;
|
|
"unlink", test_unlink;
|
|
// Be aware of the trailing semicolon after the last item
|
|
"stat", test_stat
|
|
}
|
|
|
|
|
|
macro_rules! generic {
|
|
($($fea:expr, $m:ident);+) => {
|
|
$(
|
|
#[cfg(feature = $fea)]
|
|
mod $m;
|
|
)+
|
|
};
|
|
}
|
|
generic! {
|
|
"base64", test_base64;
|
|
"basename", test_basename;
|
|
"cat", test_cat;
|
|
"cksum", test_cksum;
|
|
"comm", test_comm;
|
|
"cp", test_cp;
|
|
"cut", test_cut;
|
|
"dircolors", test_dircolors;
|
|
"dirname", test_dirname;
|
|
"echo", test_echo;
|
|
"env", test_env;
|
|
"expr", test_expr;
|
|
"factor", test_factor;
|
|
"false", test_false;
|
|
"fold", test_fold;
|
|
"hashsum", test_hashsum;
|
|
"head", test_head;
|
|
"link", test_link;
|
|
"ln", test_ln;
|
|
"ls", test_ls;
|
|
"mkdir", test_mkdir;
|
|
"mktemp", test_mktemp;
|
|
"nl", test_nl;
|
|
"od", test_od;
|
|
"paste", test_paste;
|
|
"printf", test_printf;
|
|
"ptx", test_ptx;
|
|
"pwd", test_pwd;
|
|
"readlink", test_readlink;
|
|
"realpath", test_realpath;
|
|
"rm", test_rm;
|
|
"rmdir", test_rmdir;
|
|
"seq", test_seq;
|
|
"sort", test_sort;
|
|
"split", test_split;
|
|
"sum", test_sum;
|
|
"tac", test_tac;
|
|
"tail", test_tail;
|
|
"test", test_test;
|
|
"tr", test_tr;
|
|
"true", test_true;
|
|
"truncate", test_truncate;
|
|
"tsort", test_tsort;
|
|
"unexpand", test_unexpand;
|
|
"uniq", test_uniq;
|
|
// Be aware of the trailing semicolon after the last item
|
|
"wc", test_wc
|
|
}
|