1
0
mirror of https://github.com/nushell/nushell.git synced 2025-07-12 20:35:18 +02:00

remove cfg_atter tarpaulin ()

# Description

Remove the `#[cfg_attr(tarpaulin, ignore)]` code coverage attributes to
get rid warnings when compiling plugins with a more recent rust version
than nushell.
This commit is contained in:
Darren Schroeder
2024-08-31 09:45:15 -05:00
committed by GitHub
parent 0119534f61
commit 3f31ca7b8e
2 changed files with 0 additions and 21 deletions
crates/nu-system/src

@ -27,7 +27,6 @@ pub struct ProcessInfo {
pub interval: Duration, pub interval: Duration,
} }
#[cfg_attr(tarpaulin, ignore)]
pub fn collect_proc(interval: Duration, _with_thread: bool) -> Vec<ProcessInfo> { pub fn collect_proc(interval: Duration, _with_thread: bool) -> Vec<ProcessInfo> {
let mut base_procs = Vec::new(); let mut base_procs = Vec::new();
let mut ret = Vec::new(); let mut ret = Vec::new();
@ -116,7 +115,6 @@ pub fn collect_proc(interval: Duration, _with_thread: bool) -> Vec<ProcessInfo>
ret ret
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_arg_max() -> size_t { fn get_arg_max() -> size_t {
let mut mib: [c_int; 2] = [libc::CTL_KERN, libc::KERN_ARGMAX]; let mut mib: [c_int; 2] = [libc::CTL_KERN, libc::KERN_ARGMAX];
let mut arg_max = 0i32; let mut arg_max = 0i32;
@ -144,14 +142,12 @@ pub struct PathInfo {
pub cwd: PathBuf, pub cwd: PathBuf,
} }
#[cfg_attr(tarpaulin, ignore)]
unsafe fn get_unchecked_str(cp: *mut u8, start: *mut u8) -> String { unsafe fn get_unchecked_str(cp: *mut u8, start: *mut u8) -> String {
let len = (cp as usize).saturating_sub(start as usize); let len = (cp as usize).saturating_sub(start as usize);
let part = std::slice::from_raw_parts(start, len); let part = std::slice::from_raw_parts(start, len);
String::from_utf8_unchecked(part.to_vec()) String::from_utf8_unchecked(part.to_vec())
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_path_info(pid: i32, mut size: size_t) -> Option<PathInfo> { fn get_path_info(pid: i32, mut size: size_t) -> Option<PathInfo> {
let mut proc_args = Vec::with_capacity(size); let mut proc_args = Vec::with_capacity(size);
let ptr: *mut u8 = proc_args.as_mut_slice().as_mut_ptr(); let ptr: *mut u8 = proc_args.as_mut_slice().as_mut_ptr();
@ -252,7 +248,6 @@ fn get_path_info(pid: i32, mut size: size_t) -> Option<PathInfo> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn clone_task_all_info(src: &TaskAllInfo) -> TaskAllInfo { fn clone_task_all_info(src: &TaskAllInfo) -> TaskAllInfo {
let pbsd = BSDInfo { let pbsd = BSDInfo {
pbi_flags: src.pbsd.pbi_flags, pbi_flags: src.pbsd.pbi_flags,

@ -109,7 +109,6 @@ pub struct CpuInfo {
pub curr_user: u64, pub curr_user: u64,
} }
#[cfg_attr(tarpaulin, ignore)]
pub fn collect_proc(interval: Duration, _with_thread: bool) -> Vec<ProcessInfo> { pub fn collect_proc(interval: Duration, _with_thread: bool) -> Vec<ProcessInfo> {
let mut base_procs = Vec::new(); let mut base_procs = Vec::new();
let mut ret = Vec::new(); let mut ret = Vec::new();
@ -257,7 +256,6 @@ pub fn collect_proc(interval: Duration, _with_thread: bool) -> Vec<ProcessInfo>
ret ret
} }
#[cfg_attr(tarpaulin, ignore)]
fn set_privilege() -> bool { fn set_privilege() -> bool {
unsafe { unsafe {
let handle = GetCurrentProcess(); let handle = GetCurrentProcess();
@ -284,7 +282,6 @@ fn set_privilege() -> bool {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_pids() -> Vec<i32> { fn get_pids() -> Vec<i32> {
let dword_size = size_of::<u32>(); let dword_size = size_of::<u32>();
let mut pids: Vec<u32> = Vec::with_capacity(10192); let mut pids: Vec<u32> = Vec::with_capacity(10192);
@ -307,7 +304,6 @@ fn get_pids() -> Vec<i32> {
pids.iter().map(|x| *x as i32).collect() pids.iter().map(|x| *x as i32).collect()
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_ppid_threads() -> (HashMap<i32, i32>, HashMap<i32, i32>) { fn get_ppid_threads() -> (HashMap<i32, i32>, HashMap<i32, i32>) {
let mut ppids = HashMap::new(); let mut ppids = HashMap::new();
let mut threads = HashMap::new(); let mut threads = HashMap::new();
@ -332,7 +328,6 @@ fn get_ppid_threads() -> (HashMap<i32, i32>, HashMap<i32, i32>) {
(ppids, threads) (ppids, threads)
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_handle(pid: i32) -> Option<HANDLE> { fn get_handle(pid: i32) -> Option<HANDLE> {
if pid == 0 { if pid == 0 {
return None; return None;
@ -353,7 +348,6 @@ fn get_handle(pid: i32) -> Option<HANDLE> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_times(handle: HANDLE) -> Option<(u64, u64, u64, u64)> { fn get_times(handle: HANDLE) -> Option<(u64, u64, u64, u64)> {
unsafe { unsafe {
let mut start: FILETIME = zeroed(); let mut start: FILETIME = zeroed();
@ -382,7 +376,6 @@ fn get_times(handle: HANDLE) -> Option<(u64, u64, u64, u64)> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_memory_info(handle: HANDLE) -> Option<MemoryInfo> { fn get_memory_info(handle: HANDLE) -> Option<MemoryInfo> {
unsafe { unsafe {
let mut pmc: PROCESS_MEMORY_COUNTERS_EX = zeroed(); let mut pmc: PROCESS_MEMORY_COUNTERS_EX = zeroed();
@ -413,7 +406,6 @@ fn get_memory_info(handle: HANDLE) -> Option<MemoryInfo> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_command(handle: HANDLE) -> Option<String> { fn get_command(handle: HANDLE) -> Option<String> {
unsafe { unsafe {
let mut exe_buf = [0u16; MAX_PATH as usize + 1]; let mut exe_buf = [0u16; MAX_PATH as usize + 1];
@ -780,7 +772,6 @@ fn get_cwd<T: RtlUserProcessParameters>(params: &T, handle: HANDLE) -> PathBuf {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_io(handle: HANDLE) -> Option<(u64, u64)> { fn get_io(handle: HANDLE) -> Option<(u64, u64)> {
unsafe { unsafe {
let mut io: IO_COUNTERS = zeroed(); let mut io: IO_COUNTERS = zeroed();
@ -801,7 +792,6 @@ pub struct SidName {
pub domainname: Option<String>, pub domainname: Option<String>,
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_user(handle: HANDLE) -> Option<SidName> { fn get_user(handle: HANDLE) -> Option<SidName> {
unsafe { unsafe {
let mut token: HANDLE = zeroed(); let mut token: HANDLE = zeroed();
@ -854,7 +844,6 @@ fn get_user(handle: HANDLE) -> Option<SidName> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_groups(handle: HANDLE) -> Option<Vec<SidName>> { fn get_groups(handle: HANDLE) -> Option<Vec<SidName>> {
unsafe { unsafe {
let mut token: HANDLE = zeroed(); let mut token: HANDLE = zeroed();
@ -914,7 +903,6 @@ fn get_groups(handle: HANDLE) -> Option<Vec<SidName>> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_sid(psid: PSID) -> Vec<u64> { fn get_sid(psid: PSID) -> Vec<u64> {
unsafe { unsafe {
let mut ret = Vec::new(); let mut ret = Vec::new();
@ -945,7 +933,6 @@ thread_local!(
RefCell::new(HashMap::new()); RefCell::new(HashMap::new());
); );
#[cfg_attr(tarpaulin, ignore)]
fn get_name_cached(psid: PSID) -> Option<(String, String)> { fn get_name_cached(psid: PSID) -> Option<(String, String)> {
NAME_CACHE.with(|c| { NAME_CACHE.with(|c| {
let mut c = c.borrow_mut(); let mut c = c.borrow_mut();
@ -959,7 +946,6 @@ fn get_name_cached(psid: PSID) -> Option<(String, String)> {
}) })
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_name(psid: PSID) -> Option<(String, String)> { fn get_name(psid: PSID) -> Option<(String, String)> {
unsafe { unsafe {
let mut cc_name = 0; let mut cc_name = 0;
@ -1003,7 +989,6 @@ fn get_name(psid: PSID) -> Option<(String, String)> {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn from_wide_ptr(ptr: *const u16) -> String { fn from_wide_ptr(ptr: *const u16) -> String {
unsafe { unsafe {
assert!(!ptr.is_null()); assert!(!ptr.is_null());
@ -1015,7 +1000,6 @@ fn from_wide_ptr(ptr: *const u16) -> String {
} }
} }
#[cfg_attr(tarpaulin, ignore)]
fn get_priority(handle: HANDLE) -> u32 { fn get_priority(handle: HANDLE) -> u32 {
unsafe { GetPriorityClass(handle) } unsafe { GetPriorityClass(handle) }
} }