mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
date: fix panic when input will cause overflow (#5160)
* fix issue 5149 * fix clippy style issue * fix spell issue * address comment * address comments * fix cspell
This commit is contained in:
parent
abffe6c768
commit
b5746f794c
2 changed files with 23 additions and 2 deletions
|
@ -395,3 +395,12 @@ fn test_invalid_date_string() {
|
|||
.no_stdout()
|
||||
.stderr_contains("invalid date");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_date_overflow() {
|
||||
new_ucmd!()
|
||||
.arg("-d68888888888888sms")
|
||||
.fails()
|
||||
.no_stdout()
|
||||
.stderr_contains("invalid date");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue