1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

csplit: only allow ASCII digits as offset

This commit is contained in:
Daniel Hofstetter 2025-05-28 16:07:45 +02:00
parent 7439050d85
commit d5b6af5216
2 changed files with 10 additions and 1 deletions

View file

@ -176,6 +176,15 @@ fn test_up_to_match_offset_repeat_twice() {
assert_eq!(at.read("xx03"), generate(32, 51));
}
#[test]
fn test_up_to_match_non_ascii_offset() {
// we use a different error message than GNU
new_ucmd!()
.args(&["numbers50.txt", "/9$/𝟚"])
.fails()
.stderr_contains("invalid pattern");
}
#[test]
fn test_up_to_match_negative_offset() {
let (at, mut ucmd) = at_and_ucmd!();