summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2022-07-03 10:21:49 -0700
committerJim Meyering <meyering@fb.com>2022-07-03 10:21:49 -0700
commitb47a3fb1554cd7d9d69b9c662e8a91438f30025a (patch)
treeb9e8a0988bb8da6b345bffea5d31a2dc1e58cb31
parent90bc5d93f167da68b78bc5e0797af1e9dfe17ce0 (diff)
downloadgrep-b47a3fb1554cd7d9d69b9c662e8a91438f30025a.tar.gz
tests: note that triple-backref is still not fixed
* tests/triple-backref: I noticed that our sole XFAIL is still required, in spite of a glibc comment that bug 11053 is fixed, so confirmed that it no longer evokes an abort, but still fails to produce the expected match. I.e., this prints nothing: echo a | grep -E '(.?)(.?)(.?)\3\2\1' -- it should print its input.
-rwxr-xr-xtests/triple-backref1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/triple-backref b/tests/triple-backref
index 80b6ddcc..d9de8010 100755
--- a/tests/triple-backref
+++ b/tests/triple-backref
@@ -24,6 +24,7 @@ MALLOC_CHECK_=
warn_ "$ME_: expect malfunction on glibc systems due to" \
"https://sourceware.org/bugzilla/show_bug.cgi?id=11053"
+# While with glibc-2.35, it no longer aborts, the empty result is still wrong:
timeout 10 grep -E '(.?)(.?)(.?)\3\2\1' in > out || fail=1
compare out in || fail=1