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

expr: Fix error message for too big range quantifier index

This commit is contained in:
Teemu Pätsi 2025-05-27 14:02:24 +03:00
parent 6aeae43f3c
commit 07caa4867b
No known key found for this signature in database
3 changed files with 78 additions and 30 deletions

View file

@ -1210,7 +1210,7 @@ mod gnu_expr {
.args(&["_", ":", "a\\{32768\\}"])
.fails_with_code(2)
.no_stdout()
.stderr_contains("Invalid content of \\{\\}");
.stderr_contains("Regular expression too big\n");
}
#[test]