bank_leak_mac_os (#7209)

This commit is contained in:
Rob Walker
2019-12-03 00:09:05 -08:00
committed by GitHub
parent d38f3f664f
commit d5c8b26a45

View File

@ -3949,7 +3949,7 @@ mod tests {
let pid = std::process::id(); let pid = std::process::id();
#[cfg(not(target_os = "linux"))] #[cfg(not(target_os = "linux"))]
error!( error!(
"\nYou can run this to watch RAM:\n while read -p 'banks: '; do echo $(( $(ps -h -o %z --pid={})/$REPLY));done", pid "\nYou can run this to watch RAM:\n while read -p 'banks: '; do echo $(( $(ps -o vsize= -p {})/$REPLY));done", pid
); );
loop { loop {
num_banks += 1; num_banks += 1;
@ -3973,11 +3973,7 @@ mod tests {
} }
#[cfg(not(target_os = "linux"))] #[cfg(not(target_os = "linux"))]
{ {
error!( error!("{} banks, sleeping for 5 sec", num_banks);
"{} banks, get mem usage for pid {} from ps or activity monitor, sleeping for 5 sec",
num_banks,
pid
);
std::thread::sleep(Duration::new(5, 0)); std::thread::sleep(Duration::new(5, 0));
} }
} }