mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
timeout: support long form of --kill-after arg
Add support for the long form of the `--kill-after` argument. Previously only the short form `-k` was supported.
This commit is contained in:
committed by
jfinkels
parent
98376d8fd5
commit
c43ef8b704
@@ -134,7 +134,9 @@ pub fn uu_app<'a>() -> Command<'a> {
|
|||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new(options::KILL_AFTER)
|
Arg::new(options::KILL_AFTER)
|
||||||
|
.long(options::KILL_AFTER)
|
||||||
.short('k')
|
.short('k')
|
||||||
|
.help("also send a KILL signal if COMMAND is still running this long after the initial signal was sent")
|
||||||
.takes_value(true))
|
.takes_value(true))
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new(options::PRESERVE_STATUS)
|
Arg::new(options::PRESERVE_STATUS)
|
||||||
|
|||||||
@@ -105,3 +105,13 @@ fn test_invalid_signal() {
|
|||||||
.fails()
|
.fails()
|
||||||
.usage_error("'invalid': invalid signal");
|
.usage_error("'invalid': invalid signal");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Test that the long form of the `--kill-after` argument is recognized.
|
||||||
|
#[test]
|
||||||
|
fn test_kill_after_long() {
|
||||||
|
new_ucmd!()
|
||||||
|
.args(&["--kill-after=1", "1", "sleep", "0"])
|
||||||
|
.succeeds()
|
||||||
|
.no_stdout()
|
||||||
|
.no_stderr();
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user