We've seen gnulib's new strtoll and strtoull tests for 0x and 0b failing on too many systems, so I've just disabled them for grep, to avoid the noise of failure reports. Also, this would block the process by which we build release tarballs on e.g., Fedora 38.
>From 2ea921979769dc49865931f82f5e1d75b957ee83 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyer...@fb.com> Date: Sun, 30 Apr 2023 02:55:16 -0700 Subject: [PATCH] tests: temporarily omit gnulib's strtoll and strtoull tests * bootstrap.conf (avoided_gnulib_modules): Omit strtoll and strtoull tests, because the edge-case 0[bx] tests fail on recent systems. --- bootstrap.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.conf b/bootstrap.conf index ec48c37..b03d5d2 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -19,6 +19,8 @@ avoided_gnulib_modules=' --avoid=lock-tests --avoid=mbrtowc-tests --avoid=update-copyright-tests + --avoid=strtoll-tests + --avoid=strtoull-tests ' # gnulib modules used by this package. -- 2.40.1.459.g48d89b51b3