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

expr: Fix parsing range quantifiers in regex

This commit is contained in:
Teemu Pätsi 2025-05-26 09:40:42 +03:00
parent be77e142aa
commit aae62072d8
No known key found for this signature in database
2 changed files with 49 additions and 10 deletions

View file

@ -875,7 +875,6 @@ mod gnu_expr {
.stdout_only("\n");
}
#[ignore]
#[test]
fn test_bre17() {
new_ucmd!()
@ -884,7 +883,6 @@ mod gnu_expr {
.stdout_only("{1}a\n");
}
#[ignore]
#[test]
fn test_bre18() {
new_ucmd!()
@ -893,7 +891,6 @@ mod gnu_expr {
.stdout_only("1\n");
}
#[ignore]
#[test]
fn test_bre19() {
new_ucmd!()
@ -1105,7 +1102,6 @@ mod gnu_expr {
.stderr_contains("Invalid content of \\{\\}");
}
#[ignore]
#[test]
fn test_bre45() {
new_ucmd!()
@ -1114,7 +1110,6 @@ mod gnu_expr {
.stdout_only("1\n");
}
#[ignore]
#[test]
fn test_bre46() {
new_ucmd!()