On Mon, Feb 06, 2023 at 01:17:29AM +0000, Bjarni Ingi Gislason wrote: [...] > > FAIL: test-c-stack2.sh > ====================== > > FAIL test-c-stack2.sh (exit status: 1) > > FAIL: test-localeconv > ===================== > > ../../gnulib-tests/test-localeconv.c:53: assertion 'l->frac_digits == > CHAR_MAX' failed > FAIL test-localeconv (exit status: 134) >
l->frac_digits is 127 and CHAR_MAX is 255. This is due to the CFLAG "-funsigned-char", which I always use having compiled "less", which produced a lot of warnings without this flag. The other two "FAIL" and opcode issues are still there. [...]