mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
a1b50ae0f4
- changed some error return codes to match GNU implementation - changed warning/error messages to match GNU nohup - replaced getopts dependency with clap - added a test
19 lines
618 B
Rust
19 lines
618 B
Rust
use crate::common::util::*;
|
|
use std::thread::sleep;
|
|
|
|
// General observation: nohup.out will not be created in tests run by cargo test
|
|
// because stdin/stdout is not attached to a TTY.
|
|
// All that can be tested is the side-effects.
|
|
|
|
#[test]
|
|
#[cfg(any(target_os = "linux", target_os = "freebsd", target_vendor = "apple"))]
|
|
fn test_nohup_multiple_args_and_flags() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
|
|
ucmd.args(&["touch", "-t", "1006161200", "file1", "file2"])
|
|
.succeeds();
|
|
sleep(std::time::Duration::from_millis(10));
|
|
|
|
assert!(at.file_exists("file1"));
|
|
assert!(at.file_exists("file2"));
|
|
}
|