Peter Fales wrote: > I'm seeing the following gnulib test failure while building > coreutils-6.9.91 on RedHat Linux 7.3. ... the failure > is at line 63 of gnulib-tests/test-wcwidth.c which says: > > 63 ASSERT (wcwidth (0x2060) == 0); > > The value that is actually being returned is -1.
When you replace that line with ASSERT (wcwidth (0x2060) <= 0); does the test then pass, or are there other failures? Bruno