Sam James wrote:
> OpenMandriva Lx is what you want:
> * 
> https://github.com/OpenMandrivaAssociation/llvm/blob/master/clang-default-newer-gnuc-version.patch

OK. Here's what I found regarding this distro:

1) The web site makes it hard to download the OS. See:
- Go to https://www.openmandriva.org/
- Click the "Download" button.
- Now you are in a maze of twisty little hyperlinks that will not allow you
  to download anything:

  https://www.openmandriva.org/ -> Download -> ROCK
  -> https://www.openmandriva.org/info-rock -> OMLx 5.0 Plasma slim x86_64
  -> https://abf.openmandriva.org/platforms/5.0/products/149
  -> 
https://abf.openmandriva.org/platforms/5.0/products/149/product_build_lists/2956
  -> 
http://file-store.openmandriva.org/api/v1/file_stores/6b2dfea3589b2af05c6c9f772cbedabf0f01ecb9
  -> Internal Server Error

  https://www.openmandriva.org/ -> Download -> ROME
  -> https://www.openmandriva.org/info-rome -> ROME Plasma5 slim x86_64
  https://abf.openmandriva.org/platforms/rolling/products/23
  -> 
https://abf.openmandriva.org/platforms/rolling/products/23/product_build_lists/836
  Dead end.

2) The installer works fine (in a VirtualBox VM).

3) Changing the screen size has no persistent effect after reboot. See:
- Change it to 1024x768.
- Reboot.
- Now the screen size is again 800x600.

4) The bash / readline behaviour is broken: Upon pressing tab, it does not
   show the partial completion before asking "Display all NNN possibilities?"

5) Although this distro purports to have a focus on internationalization,
   the glibc's iconv converters are mostly not installed by default, leading
   to 61 test suite failures (see attached log). One has to install the package
   'locales-extra-charsets'.

6) A testdir, that compiles fine with gcc, produces many errors with clang,
   such as:

./stdlib.h:892:40: error: '__malloc__' attribute takes no arguments
  892 |                   _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
      |                                        ^

./time.h:1122:1: error: 'warning' attribute does not appear on the first 
declaration
 1122 | _GL_WARN_ON_USE (asctime_r, "asctime_r can overrun buffers in some 
cases - "
      | ^

There are also errors in C++ mode, such as:

  error: 'wmemchr' is missing exception specification 'noexcept(true)'

The patch below fixes the compilation errors.


2024-08-26  Bruno Haible  <br...@clisp.org>

        Fix compilation errors with clang that masquerades as gcc 13.
        Reported by Sam James and Paul Eggert.
        * m4/gnulib-common.m4 (gl_COMMON_BODY): For _GL_GNUC_PREREQ, ignore the
        values of __GNUC__ and __GNUC_MINOR__ defined by clang.
        * lib/warn-on-use.h (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Don't treat
        clang like GCC.
        * lib/wchar.in.h (wmemchr, wcschr, wcsrchr, wcspbrk, wcsstr): Disable
        the _GL_CXXALIASWARN1 and _GL_CXXALIASWARN invocations for masquerading
        clang++.

diff --git a/lib/warn-on-use.h b/lib/warn-on-use.h
index 701013a07f..e3b1fefe50 100644
--- a/lib/warn-on-use.h
+++ b/lib/warn-on-use.h
@@ -85,7 +85,7 @@
    */
 #ifndef _GL_WARN_ON_USE
 
-# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)
+# if (4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)) && !defined 
__clang__
 /* A compiler attribute is available in gcc versions 4.3.0 and later.  */
 #  define _GL_WARN_ON_USE(function, message) \
 _GL_WARN_EXTERN_C __typeof__ (function) function __attribute__ ((__warning__ 
(message)))
@@ -121,7 +121,7 @@ _GL_WARN_EXTERN_C int _gl_warn_on_use
 #  define 
_GL_WARN_ON_USE_CXX(function,rettype_gcc,rettype_clang,parameters_and_attributes,msg)
 \
      _GL_WARN_ON_USE (function, msg)
 # else
-#  if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)
+#  if (4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)) && !defined 
__clang__
 /* A compiler attribute is available in gcc versions 4.3.0 and later.  */
 #   define 
_GL_WARN_ON_USE_CXX(function,rettype_gcc,rettype_clang,parameters_and_attributes,msg)
 \
 extern rettype_gcc function parameters_and_attributes \
diff --git a/lib/wchar.in.h b/lib/wchar.in.h
index c08cf7299e..785e74787e 100644
--- a/lib/wchar.in.h
+++ b/lib/wchar.in.h
@@ -855,11 +855,12 @@ _GL_CXXALIAS_SYS_CAST2 (wmemchr,
                         wchar_t *, (const wchar_t *, wchar_t, size_t),
                         const wchar_t *, (const wchar_t *, wchar_t, size_t));
 # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \
-     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
+     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) \
+     && !defined __clang__
 _GL_CXXALIASWARN1 (wmemchr, wchar_t *, (wchar_t *s, wchar_t c, size_t n));
 _GL_CXXALIASWARN1 (wmemchr, const wchar_t *,
                    (const wchar_t *s, wchar_t c, size_t n));
-# elif __GLIBC__ >= 2
+# elif __GLIBC__ >= 2 && !defined __CORRECT_ISO_CPP_WCHAR_H_PROTO
 _GL_CXXALIASWARN (wmemchr);
 # endif
 #elif defined GNULIB_POSIXCHECK
@@ -1407,10 +1408,11 @@ _GL_CXXALIAS_SYS_CAST2 (wcschr,
                         wchar_t *, (const wchar_t *, wchar_t),
                         const wchar_t *, (const wchar_t *, wchar_t));
 # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \
-     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
+     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) \
+     && !defined __clang__
 _GL_CXXALIASWARN1 (wcschr, wchar_t *, (wchar_t *wcs, wchar_t wc));
 _GL_CXXALIASWARN1 (wcschr, const wchar_t *, (const wchar_t *wcs, wchar_t wc));
-# elif __GLIBC__ >= 2
+# elif __GLIBC__ >= 2 && !defined __CORRECT_ISO_CPP_WCHAR_H_PROTO
 _GL_CXXALIASWARN (wcschr);
 # endif
 #elif defined GNULIB_POSIXCHECK
@@ -1437,10 +1439,11 @@ _GL_CXXALIAS_SYS_CAST2 (wcsrchr,
                         wchar_t *, (const wchar_t *, wchar_t),
                         const wchar_t *, (const wchar_t *, wchar_t));
 # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \
-     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
+     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) \
+     && !defined __clang__
 _GL_CXXALIASWARN1 (wcsrchr, wchar_t *, (wchar_t *wcs, wchar_t wc));
 _GL_CXXALIASWARN1 (wcsrchr, const wchar_t *, (const wchar_t *wcs, wchar_t wc));
-# elif __GLIBC__ >= 2
+# elif __GLIBC__ >= 2 && !defined __CORRECT_ISO_CPP_WCHAR_H_PROTO
 _GL_CXXALIASWARN (wcsrchr);
 # endif
 #elif defined GNULIB_POSIXCHECK
@@ -1508,12 +1511,13 @@ _GL_CXXALIAS_SYS_CAST2 (wcspbrk,
                         wchar_t *, (const wchar_t *, const wchar_t *),
                         const wchar_t *, (const wchar_t *, const wchar_t *));
 # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \
-     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
+     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) \
+     && !defined __clang__
 _GL_CXXALIASWARN1 (wcspbrk, wchar_t *,
                    (wchar_t *wcs, const wchar_t *accept));
 _GL_CXXALIASWARN1 (wcspbrk, const wchar_t *,
                    (const wchar_t *wcs, const wchar_t *accept));
-# elif __GLIBC__ >= 2
+# elif __GLIBC__ >= 2 && !defined __CORRECT_ISO_CPP_WCHAR_H_PROTO
 _GL_CXXALIASWARN (wcspbrk);
 # endif
 #elif defined GNULIB_POSIXCHECK
@@ -1558,14 +1562,15 @@ _GL_CXXALIAS_SYS_CAST2 (wcsstr,
                         (const wchar_t *restrict, const wchar_t *restrict));
 # endif
 # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \
-     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
+     && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) \
+     && !defined __clang__
 _GL_CXXALIASWARN1 (wcsstr, wchar_t *,
                    (wchar_t *restrict haystack,
                     const wchar_t *restrict needle));
 _GL_CXXALIASWARN1 (wcsstr, const wchar_t *,
                    (const wchar_t *restrict haystack,
                     const wchar_t *restrict needle));
-# elif __GLIBC__ >= 2
+# elif __GLIBC__ >= 2 && !defined __CORRECT_ISO_CPP_WCHAR_H_PROTO
 _GL_CXXALIASWARN (wcsstr);
 # endif
 #elif defined GNULIB_POSIXCHECK
diff --git a/m4/gnulib-common.m4 b/m4/gnulib-common.m4
index b1b3758db8..0f0eb07c44 100644
--- a/m4/gnulib-common.m4
+++ b/m4/gnulib-common.m4
@@ -1,5 +1,5 @@
 # gnulib-common.m4
-# serial 101
+# serial 102
 dnl Copyright (C) 2007-2024 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -21,10 +21,22 @@ AC_DEFUN([gl_COMMON_BODY]
 #define _GL_CONFIG_H_INCLUDED 1
 ])
   AH_VERBATIM([_GL_GNUC_PREREQ],
-[/* True if the compiler says it groks GNU C version MAJOR.MINOR.  */
-#if defined __GNUC__ && defined __GNUC_MINOR__
+[/* True if the compiler says it groks GNU C version MAJOR.MINOR.
+    Except that
+      - clang groks GNU C 4.2, even on Windows, where it does not define
+        __GNUC__.
+      - The OpenMandriva-modified clang compiler pretends that it groks
+        GNU C version 13.1, but it doesn't: It does not support
+        __attribute__ ((__malloc__ (f, i))), nor does it support
+        __attribute__ ((__warning__ (message))) on a function redeclaration.
+      - Users can make clang lie as well, through the -fgnuc-version option.  
*/
+#if defined __GNUC__ && defined __GNUC_MINOR__ && !defined __clang__
 # define _GL_GNUC_PREREQ(major, minor) \
     ((major) < __GNUC__ + ((minor) <= __GNUC_MINOR__))
+#elif defined __clang__
+  /* clang really only groks GNU C 4.2.  */
+# define _GL_GNUC_PREREQ(major, minor) \
+    ((major) < 4 + ((minor) <= 2))
 #else
 # define _GL_GNUC_PREREQ(major, minor) 0
 #endif
=====================================
   dummy 0: gltests/test-suite.log
=====================================

# TOTAL: 1673
# PASS:  1461
# SKIP:  149
# XFAIL: 0
# FAIL:  63
# XPASS: 0
# ERROR: 0

System information (uname -a): Linux 6.6.2-desktop-1omv2390 #1 SMP PREEMPT_DYNAMIC Mon Nov 20 19:43:20 UTC 2023 x86_64 x86_64 x86_64
Distribution information (/etc/os-release):
NAME="OpenMandriva Lx"
VERSION="5.0 (Iodine) Rock"
ID="openmandriva"
VERSION_ID="5.0"
PRETTY_NAME="OpenMandriva Lx 5.0 (Iodine) Rock"
BUILD_ID="20231104.16"
VERSION_CODENAME="iodine"
ANSI_COLOR="1;43"

.. contents:: :depth: 2

FAIL: test-btoc32-2.sh
======================

../../gltests/test-btoc32.c:81: assertion 'btoc32 (c) != WEOF' failed
Stack trace:
./test-btoc32() [0x401401]
./test-btoc32(main+0x170) [0x4012a0]
/lib64/libc.so.6(+0x29c4a) [0x7ff514ecfc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7ff514ecfd05]
./test-btoc32(_start+0x21) [0x401311]
../../gltests/test-btoc32-2.sh: line 15: 146318 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-btoc32${EXEEXT} 2
FAIL test-btoc32-2.sh (exit status: 134)

FAIL: test-btowc-2.sh
=====================

../../gltests/test-btowc.c:78: assertion 'btowc (c) != WEOF' failed
Stack trace:
./test-btowc() [0x401401]
./test-btowc(main+0x170) [0x4012a0]
/lib64/libc.so.6(+0x29c4a) [0x7f84cc9a7c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f84cc9a7d05]
./test-btowc(_start+0x21) [0x401311]
../../gltests/test-btowc-2.sh: line 15: 146353 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-btowc${EXEEXT} 2
FAIL test-btowc-2.sh (exit status: 134)

FAIL: test-c32isalnum.sh
========================

../../gltests/test-c32isalnum.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isalnum() [0x401821]
./test-c32isalnum() [0x4017f6]
./test-c32isalnum(main+0x161) [0x4012b1]
/lib64/libc.so.6(+0x29c4a) [0x7f63ef8cfc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f63ef8cfd05]
./test-c32isalnum(_start+0x21) [0x4016b1]
../../gltests/test-c32isalnum.sh: line 13: 146708 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isalnum${EXEEXT} 1
FAIL test-c32isalnum.sh (exit status: 1)

FAIL: test-c32isalpha.sh
========================

../../gltests/test-c32isalpha.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isalpha() [0x4017b1]
./test-c32isalpha() [0x401786]
./test-c32isalpha(main+0x161) [0x4012b1]
/lib64/libc.so.6(+0x29c4a) [0x7f0020c89c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f0020c89d05]
./test-c32isalpha(_start+0x21) [0x401641]
../../gltests/test-c32isalpha.sh: line 13: 146726 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isalpha${EXEEXT} 1
FAIL test-c32isalpha.sh (exit status: 1)

FAIL: test-c32isblank.sh
========================

../../gltests/test-c32isblank.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isblank() [0x401641]
./test-c32isblank() [0x401616]
./test-c32isblank(main+0x22f) [0x40137f]
/lib64/libc.so.6(+0x29c4a) [0x7fa83de14c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa83de14d05]
./test-c32isblank(_start+0x21) [0x4014d1]
../../gltests/test-c32isblank.sh: line 13: 146766 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isblank${EXEEXT} 1
FAIL test-c32isblank.sh (exit status: 1)

FAIL: test-c32iscntrl.sh
========================

../../gltests/test-c32iscntrl.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32iscntrl() [0x401651]
./test-c32iscntrl() [0x401626]
./test-c32iscntrl(main+0x28a) [0x4013da]
/lib64/libc.so.6(+0x29c4a) [0x7fc1a7ae7c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fc1a7ae7d05]
./test-c32iscntrl(_start+0x21) [0x4014e1]
../../gltests/test-c32iscntrl.sh: line 13: 146797 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32iscntrl${EXEEXT} 1
FAIL test-c32iscntrl.sh (exit status: 1)

FAIL: test-c32isdigit.sh
========================

../../gltests/test-c32isdigit.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isdigit() [0x401841]
./test-c32isdigit() [0x401816]
./test-c32isdigit(main+0x31c) [0x40145c]
/lib64/libc.so.6(+0x29c4a) [0x7fdca8f8fc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fdca8f8fd05]
./test-c32isdigit(_start+0x21) [0x4016d1]
../../gltests/test-c32isdigit.sh: line 13: 146826 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isdigit${EXEEXT} 1
FAIL test-c32isdigit.sh (exit status: 1)

FAIL: test-c32isgraph.sh
========================

../../gltests/test-c32isgraph.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isgraph() [0x401701]
./test-c32isgraph() [0x4016d6]
./test-c32isgraph(main+0x181) [0x4012d1]
/lib64/libc.so.6(+0x29c4a) [0x7fc5e0b3cc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fc5e0b3cd05]
./test-c32isgraph(_start+0x21) [0x401591]
../../gltests/test-c32isgraph.sh: line 13: 146855 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isgraph${EXEEXT} 1
FAIL test-c32isgraph.sh (exit status: 1)

FAIL: test-c32islower.sh
========================

../../gltests/test-c32islower.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32islower() [0x401b31]
./test-c32islower() [0x401b06]
./test-c32islower(main+0x130) [0x401280]
/lib64/libc.so.6(+0x29c4a) [0x7f01a50a5c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f01a50a5d05]
./test-c32islower(_start+0x21) [0x4019c1]
../../gltests/test-c32islower.sh: line 13: 146878 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32islower${EXEEXT} 1
FAIL test-c32islower.sh (exit status: 1)

FAIL: test-c32isprint.sh
========================

../../gltests/test-c32isprint.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isprint() [0x401711]
./test-c32isprint() [0x4016e6]
./test-c32isprint(main+0x1c1) [0x401311]
/lib64/libc.so.6(+0x29c4a) [0x7fa296256c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa296256d05]
./test-c32isprint(_start+0x21) [0x4015a1]
../../gltests/test-c32isprint.sh: line 13: 146913 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isprint${EXEEXT} 1
FAIL test-c32isprint.sh (exit status: 1)

FAIL: test-c32ispunct.sh
========================

../../gltests/test-c32ispunct.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32ispunct() [0x401a41]
./test-c32ispunct() [0x401a16]
./test-c32ispunct(main+0x48e) [0x4015de]
/lib64/libc.so.6(+0x29c4a) [0x7fc5dd14dc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fc5dd14dd05]
./test-c32ispunct(_start+0x21) [0x4018d1]
../../gltests/test-c32ispunct.sh: line 13: 146931 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32ispunct${EXEEXT} 1
FAIL test-c32ispunct.sh (exit status: 1)

FAIL: test-c32isspace.sh
========================

../../gltests/test-c32isspace.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isspace() [0x401661]
./test-c32isspace() [0x401636]
./test-c32isspace(main+0x174) [0x4012c4]
/lib64/libc.so.6(+0x29c4a) [0x7f92110afc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f92110afd05]
./test-c32isspace(_start+0x21) [0x4014f1]
../../gltests/test-c32isspace.sh: line 13: 146965 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isspace${EXEEXT} 1
FAIL test-c32isspace.sh (exit status: 1)

FAIL: test-c32isupper.sh
========================

../../gltests/test-c32isupper.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isupper() [0x401bb1]
./test-c32isupper() [0x401b86]
./test-c32isupper(main+0x138) [0x401288]
/lib64/libc.so.6(+0x29c4a) [0x7ff86f432c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7ff86f432d05]
./test-c32isupper(_start+0x21) [0x401a41]
../../gltests/test-c32isupper.sh: line 13: 147000 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isupper${EXEEXT} 1
FAIL test-c32isupper.sh (exit status: 1)

FAIL: test-c32isxdigit.sh
=========================

../../gltests/test-c32isxdigit.c:42: assertion 'ret == n' failed
Stack trace:
./test-c32isxdigit() [0x4019a1]
./test-c32isxdigit() [0x401976]
./test-c32isxdigit(main+0x3f5) [0x401545]
/lib64/libc.so.6(+0x29c4a) [0x7f5102c13c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f5102c13d05]
./test-c32isxdigit(_start+0x21) [0x401831]
../../gltests/test-c32isxdigit.sh: line 13: 147024 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32isxdigit${EXEEXT} 1
FAIL test-c32isxdigit.sh (exit status: 1)

FAIL: test-c32rtomb.sh
======================

../../gltests/test-c32rtomb.c:45: assertion 'iret == n' failed
Stack trace:
./test-c32rtomb() [0x401621]
./test-c32rtomb() [0x4015d5]
./test-c32rtomb(main+0x1db) [0x40134b]
/lib64/libc.so.6(+0x29c4a) [0x7f0d2b9f0c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f0d2b9f0d05]
./test-c32rtomb(_start+0x21) [0x401451]
../../gltests/test-c32rtomb.sh: line 13: 147054 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32rtomb${EXEEXT} 2
FAIL test-c32rtomb.sh (exit status: 1)

FAIL: test-c32snrtombs-2.sh
===========================

../../gltests/test-c32snrtombs.c:63: assertion 'ret == 5' failed
Stack trace:
./test-c32snrtombs() [0x401c41]
./test-c32snrtombs(main+0x374) [0x4014f4]
/lib64/libc.so.6(+0x29c4a) [0x7f00dcbc9c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f00dcbc9d05]
./test-c32snrtombs(_start+0x21) [0x401b51]
../../gltests/test-c32snrtombs-2.sh: line 15: 147128 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32snrtombs${EXEEXT} 2
FAIL test-c32snrtombs-2.sh (exit status: 134)

FAIL: test-c32srtombs-2.sh
==========================

../../gltests/test-c32srtombs.c:63: assertion 'ret == 5' failed
Stack trace:
./test-c32srtombs() [0x401c01]
./test-c32srtombs(main+0x360) [0x4014d0]
/lib64/libc.so.6(+0x29c4a) [0x7f4337f60c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f4337f60d05]
./test-c32srtombs(_start+0x21) [0x401b11]
../../gltests/test-c32srtombs-2.sh: line 15: 147165 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32srtombs${EXEEXT} 2
FAIL test-c32srtombs-2.sh (exit status: 134)

FAIL: test-c32stombs-2.sh
=========================

../../gltests/test-c32stombs.c:62: assertion 'ret == 5' failed
Stack trace:
./test-c32stombs() [0x401991]
./test-c32stombs(main+0x1c9) [0x401339]
/lib64/libc.so.6(+0x29c4a) [0x7fb44bb25c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fb44bb25d05]
./test-c32stombs(_start+0x21) [0x4018a1]
../../gltests/test-c32stombs-2.sh: line 15: 147218 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32stombs${EXEEXT} 2
FAIL test-c32stombs-2.sh (exit status: 134)

FAIL: test-c32tolower.sh
========================

+ LC_ALL=C
+ ./test-c32tolower 0
+ LC_ALL=POSIX
+ ./test-c32tolower 0
+ : fr_FR
+ test fr_FR '!=' none
+ LC_ALL=fr_FR
+ ./test-c32tolower 1
../../gltests/test-c32tolower.c:52: assertion 'ret == n' failed
Stack trace:
./test-c32tolower() [0x4039a1]
./test-c32tolower() [0x40395a]
./test-c32tolower(main+0x170) [0x4012e0]
/lib64/libc.so.6(+0x29c4a) [0x7f5ce0423c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f5ce0423d05]
./test-c32tolower(_start+0x21) [0x403791]
../../gltests/test-c32tolower.sh: line 16: 147272 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32tolower${EXEEXT} 1
+ exit 1
FAIL test-c32tolower.sh (exit status: 1)

FAIL: test-c32toupper.sh
========================

+ LC_ALL=C
+ ./test-c32toupper 0
+ LC_ALL=POSIX
+ ./test-c32toupper 0
+ : fr_FR
+ test fr_FR '!=' none
+ LC_ALL=fr_FR
+ ./test-c32toupper 1
../../gltests/test-c32toupper.c:52: assertion 'ret == n' failed
Stack trace:
./test-c32toupper() [0x403771]
./test-c32toupper() [0x40372a]
./test-c32toupper(main+0x175) [0x4012e5]
/lib64/libc.so.6(+0x29c4a) [0x7fbc051a5c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fbc051a5d05]
./test-c32toupper(_start+0x21) [0x403561]
../../gltests/test-c32toupper.sh: line 16: 147290 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-c32toupper${EXEEXT} 1
+ exit 1
FAIL test-c32toupper.sh (exit status: 1)

FAIL: test-mbrlen-2.sh
======================

../../gltests/test-mbrlen.c:158: assertion 'ret == 1' failed
Stack trace:
./test-mbrlen() [0x401c31]
./test-mbrlen(main+0x771) [0x4018b1]
/lib64/libc.so.6(+0x29c4a) [0x7f8beea3fc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f8beea3fd05]
./test-mbrlen(_start+0x21) [0x401b41]
../../gltests/test-mbrlen-2.sh: line 15: 153507 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbrlen${EXEEXT} 2
FAIL test-mbrlen-2.sh (exit status: 134)

FAIL: test-mbrtoc16-2.sh
========================

../../gltests/test-mbrtoc16.c:192: assertion 'ret == 1' failed
Stack trace:
./test-mbrtoc16() [0x403751]
./test-mbrtoc16(main+0x1792) [0x4028f2]
/lib64/libc.so.6(+0x29c4a) [0x7f85cc805c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f85cc805d05]
./test-mbrtoc16(_start+0x21) [0x403661]
../../gltests/test-mbrtoc16-2.sh: line 15: 153608 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbrtoc16${EXEEXT} 2
FAIL test-mbrtoc16-2.sh (exit status: 134)

FAIL: test-mbrtoc32-2.sh
========================

../../gltests/test-mbrtoc32.c:192: assertion 'ret == 1' failed
Stack trace:
./test-mbrtoc32() [0x403cd1]
./test-mbrtoc32(main+0x27e5) [0x403945]
/lib64/libc.so.6(+0x29c4a) [0x7f88c0f9bc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f88c0f9bd05]
./test-mbrtoc32(_start+0x21) [0x403be1]
../../gltests/test-mbrtoc32-2.sh: line 15: 153724 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbrtoc32${EXEEXT} 2
FAIL test-mbrtoc32-2.sh (exit status: 134)

FAIL: test-mbrtowc-2.sh
=======================

../../gltests/test-mbrtowc.c:189: assertion 'ret == 1' failed
Stack trace:
./test-mbrtowc() [0x4038a1]
./test-mbrtowc(main+0x15bb) [0x40270b]
/lib64/libc.so.6(+0x29c4a) [0x7f35056a5c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f35056a5d05]
./test-mbrtowc(_start+0x21) [0x4037b1]
../../gltests/test-mbrtowc-2.sh: line 15: 153835 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbrtowc${EXEEXT} 2
FAIL test-mbrtowc-2.sh (exit status: 134)

FAIL: test-mbsnrtoc32s-2.sh
===========================

../../gltests/test-mbsnrtoc32s.c:187: assertion 'ret == 1' failed
Stack trace:
./test-mbsnrtoc32s() [0x403451]
./test-mbsnrtoc32s(main+0x2152) [0x4032d2]
/lib64/libc.so.6(+0x29c4a) [0x7fa8f8bfec4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa8f8bfed05]
./test-mbsnrtoc32s(_start+0x21) [0x403361]
../../gltests/test-mbsnrtoc32s-2.sh: line 15: 154009 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbsnrtoc32s${EXEEXT} 2
FAIL test-mbsnrtoc32s-2.sh (exit status: 134)

FAIL: test-mbsnrtowcs-2.sh
==========================

../../gltests/test-mbsnrtowcs.c:184: assertion 'ret == 1' failed
Stack trace:
./test-mbsnrtowcs() [0x403421]
./test-mbsnrtowcs(main+0x2103) [0x403273]
/lib64/libc.so.6(+0x29c4a) [0x7fdd65504c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fdd65504d05]
./test-mbsnrtowcs(_start+0x21) [0x403331]
../../gltests/test-mbsnrtowcs-2.sh: line 15: 154068 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbsnrtowcs${EXEEXT} 2
FAIL test-mbsnrtowcs-2.sh (exit status: 134)

FAIL: test-mbsrtoc32s-2.sh
==========================

../../gltests/test-mbsrtoc32s.c:187: assertion 'ret == 1' failed
Stack trace:
./test-mbsrtoc32s() [0x4033f1]
./test-mbsrtoc32s(main+0x20fa) [0x40327a]
/lib64/libc.so.6(+0x29c4a) [0x7f550f7a2c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f550f7a2d05]
./test-mbsrtoc32s(_start+0x21) [0x403301]
../../gltests/test-mbsrtoc32s-2.sh: line 15: 154132 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbsrtoc32s${EXEEXT} 2
FAIL test-mbsrtoc32s-2.sh (exit status: 134)

FAIL: test-mbsrtowcs-2.sh
=========================

../../gltests/test-mbsrtowcs.c:184: assertion 'ret == 1' failed
Stack trace:
./test-mbsrtowcs() [0x4033d1]
./test-mbsrtowcs(main+0x20b3) [0x403223]
/lib64/libc.so.6(+0x29c4a) [0x7f7b248e0c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f7b248e0d05]
./test-mbsrtowcs(_start+0x21) [0x4032e1]
../../gltests/test-mbsrtowcs-2.sh: line 15: 154197 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbsrtowcs${EXEEXT} 2
FAIL test-mbsrtowcs-2.sh (exit status: 134)

FAIL: test-mbstoc32s-2.sh
=========================

../../gltests/test-mbstoc32s.c:164: assertion 'ret == 1' failed
Stack trace:
./test-mbstoc32s() [0x401f01]
./test-mbstoc32s(main+0x833) [0x401993]
/lib64/libc.so.6(+0x29c4a) [0x7fa002b3cc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa002b3cd05]
./test-mbstoc32s(_start+0x21) [0x401e11]
../../gltests/test-mbstoc32s-2.sh: line 15: 154271 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbstoc32s${EXEEXT} 2
FAIL test-mbstoc32s-2.sh (exit status: 134)

FAIL: test-mbstowcs-2.sh
========================

../../gltests/test-mbstowcs.c:157: assertion 'ret == 4' failed
Stack trace:
./test-mbstowcs() [0x401c51]
./test-mbstowcs(main+0x3db) [0x40153b]
/lib64/libc.so.6(+0x29c4a) [0x7f9562650c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f9562650d05]
./test-mbstowcs(_start+0x21) [0x401b61]
../../gltests/test-mbstowcs-2.sh: line 15: 154319 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-mbstowcs${EXEEXT} 2
FAIL test-mbstowcs-2.sh (exit status: 134)

FAIL: test-snprintf-posix
=========================

../../gltests/test-snprintf-posix.h:3191: assertion 'retval == 6' failed
Stack trace:
./test-snprintf-posix() [0x412d71]
./test-snprintf-posix() [0x40b0cc]
./test-snprintf-posix() [0x401159]
/lib64/libc.so.6(+0x29c4a) [0x7f9aafecbc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f9aafecbd05]
./test-snprintf-posix(_start+0x21) [0x401181]
FAIL test-snprintf-posix (exit status: 134)

FAIL: test-sprintf-posix
========================

../../gltests/test-sprintf-posix.h:3172: assertion 'retval == 6' failed
Stack trace:
./test-sprintf-posix() [0x4125a1]
./test-sprintf-posix() [0x40aa70]
./test-sprintf-posix() [0x401159]
/lib64/libc.so.6(+0x29c4a) [0x7f88fd747c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f88fd747d05]
./test-sprintf-posix(_start+0x21) [0x401181]
FAIL test-sprintf-posix (exit status: 134)

FAIL: test-u16-casecoll
=======================

../../gltests/unicase/test-casecmp.h:34: assertion 'my_casecmp (input, SIZEOF (input), NULL, 0, NULL, nf, &cmp) == 0' failed
Stack trace:
./test-u16-casecoll() [0x4015a1]
./test-u16-casecoll(main+0x20f) [0x4013af]
/lib64/libc.so.6(+0x29c4a) [0x7fdcc8904c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fdcc8904d05]
./test-u16-casecoll(_start+0x21) [0x4014b1]
FAIL test-u16-casecoll (exit status: 134)

FAIL: test-u32-casecoll
=======================

../../gltests/unicase/test-casecmp.h:34: assertion 'my_casecmp (input, SIZEOF (input), NULL, 0, NULL, nf, &cmp) == 0' failed
Stack trace:
./test-u32-casecoll() [0x4015a1]
./test-u32-casecoll(main+0x20f) [0x4013af]
/lib64/libc.so.6(+0x29c4a) [0x7f815b3b4c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f815b3b4d05]
./test-u32-casecoll(_start+0x21) [0x4014b1]
FAIL test-u32-casecoll (exit status: 134)

FAIL: test-u8-casecoll
======================

../../gltests/unicase/test-casecmp.h:34: assertion 'my_casecmp (input, SIZEOF (input), NULL, 0, NULL, nf, &cmp) == 0' failed
Stack trace:
./test-u8-casecoll() [0x4015a1]
./test-u8-casecoll(main+0x20f) [0x4013af]
/lib64/libc.so.6(+0x29c4a) [0x7f1933e76c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f1933e76d05]
./test-u8-casecoll(_start+0x21) [0x4014b1]
FAIL test-u8-casecoll (exit status: 134)

FAIL: unicase/test-ulc-casecmp1.sh
==================================

../../gltests/unicase/test-casecmp.h:34: assertion 'my_casecmp (input, SIZEOF (input), NULL, 0, NULL, nf, &cmp) == 0' failed
Stack trace:
./test-ulc-casecmp() [0x4039a1]
./test-ulc-casecmp(main+0xee4) [0x402094]
/lib64/libc.so.6(+0x29c4a) [0x7f5efba09c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f5efba09d05]
./test-ulc-casecmp(_start+0x21) [0x4038b1]
../../gltests/unicase/test-ulc-casecmp1.sh: line 15: 161372 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-ulc-casecmp${EXEEXT} 1
FAIL unicase/test-ulc-casecmp1.sh (exit status: 134)

FAIL: unicase/test-ulc-casecoll1.sh
===================================

../../gltests/unicase/test-casecmp.h:34: assertion 'my_casecmp (input, SIZEOF (input), NULL, 0, NULL, nf, &cmp) == 0' failed
Stack trace:
./test-ulc-casecoll() [0x4015e1]
./test-ulc-casecoll(main+0x232) [0x4013f2]
/lib64/libc.so.6(+0x29c4a) [0x7fa38802cc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa38802cd05]
./test-ulc-casecoll(_start+0x21) [0x4014f1]
../../gltests/unicase/test-ulc-casecoll1.sh: line 15: 161410 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-ulc-casecoll${EXEEXT}
FAIL unicase/test-ulc-casecoll1.sh (exit status: 134)

FAIL: test-u16-normcoll
=======================

../../gltests/uninorm/test-u16-normcmp.h:34: assertion 'my_normcmp (input, SIZEOF (input), NULL, 0, nf, &cmp) == 0' failed
Stack trace:
./test-u16-normcoll() [0x401571]
./test-u16-normcoll(main+0x1db) [0x40137b]
/lib64/libc.so.6(+0x29c4a) [0x7f775dc6cc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f775dc6cd05]
./test-u16-normcoll(_start+0x21) [0x401481]
FAIL test-u16-normcoll (exit status: 134)

FAIL: test-u32-normcoll
=======================

../../gltests/uninorm/test-u32-normcmp.h:34: assertion 'my_normcmp (input, SIZEOF (input), NULL, 0, nf, &cmp) == 0' failed
Stack trace:
./test-u32-normcoll() [0x401571]
./test-u32-normcoll(main+0x1db) [0x40137b]
/lib64/libc.so.6(+0x29c4a) [0x7fc40aa00c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fc40aa00d05]
./test-u32-normcoll(_start+0x21) [0x401481]
FAIL test-u32-normcoll (exit status: 134)

FAIL: test-u8-normcoll
======================

../../gltests/uninorm/test-u8-normcmp.h:34: assertion 'my_normcmp (input, SIZEOF (input), NULL, 0, nf, &cmp) == 0' failed
Stack trace:
./test-u8-normcoll() [0x401571]
./test-u8-normcoll(main+0x1db) [0x40137b]
/lib64/libc.so.6(+0x29c4a) [0x7f63ca506c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f63ca506d05]
./test-u8-normcoll(_start+0x21) [0x401481]
FAIL test-u8-normcoll (exit status: 134)

FAIL: test-u16-vasnprintf1
==========================

../../gltests/unistdio/test-u16-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u16-vasnprintf1() [0x4064a1]
./test-u16-vasnprintf1() [0x40479d]
./test-u16-vasnprintf1(main+0x233) [0x4013d3]
/lib64/libc.so.6(+0x29c4a) [0x7fb222489c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fb222489d05]
./test-u16-vasnprintf1(_start+0x21) [0x401561]
FAIL test-u16-vasnprintf1 (exit status: 134)

FAIL: unistdio/test-u16-vasnprintf2.sh
======================================

../../gltests/unistdio/test-u16-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u16-vasnprintf1() [0x4064a1]
./test-u16-vasnprintf1() [0x40479d]
./test-u16-vasnprintf1(main+0x233) [0x4013d3]
/lib64/libc.so.6(+0x29c4a) [0x7fe89f93dc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fe89f93dd05]
./test-u16-vasnprintf1(_start+0x21) [0x401561]
../../gltests/unistdio/test-u16-vasnprintf2.sh: line 18: 163148 Aborted                 (core dumped) LC_ALL=$testlocale ${CHECKER} ./test-u16-vasnprintf1${EXEEXT}
FAIL unistdio/test-u16-vasnprintf2.sh (exit status: 1)

FAIL: test-u16-vasprintf1
=========================

../../gltests/unistdio/test-u16-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u16-vasprintf1() [0x406091]
./test-u16-vasprintf1() [0x40438d]
./test-u16-vasprintf1(main+0x9) [0x4011a9]
/lib64/libc.so.6(+0x29c4a) [0x7fa19f144c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa19f144d05]
./test-u16-vasprintf1(_start+0x21) [0x4011e1]
FAIL test-u16-vasprintf1 (exit status: 134)

FAIL: test-u16-vsnprintf1
=========================

../../gltests/unistdio/test-u16-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u16-vsnprintf1() [0x406471]
./test-u16-vsnprintf1() [0x40476d]
./test-u16-vsnprintf1(main+0x9) [0x401579]
/lib64/libc.so.6(+0x29c4a) [0x7ff6149afc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7ff6149afd05]
./test-u16-vsnprintf1(_start+0x21) [0x4015b1]
FAIL test-u16-vsnprintf1 (exit status: 134)

FAIL: test-u16-vsprintf1
========================

../../gltests/unistdio/test-u16-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u16-vsprintf1() [0x406471]
./test-u16-vsprintf1() [0x40476d]
./test-u16-vsprintf1(main+0x9) [0x401579]
/lib64/libc.so.6(+0x29c4a) [0x7f1161b36c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f1161b36d05]
./test-u16-vsprintf1(_start+0x21) [0x4015b1]
FAIL test-u16-vsprintf1 (exit status: 134)

FAIL: test-u32-vasnprintf1
==========================

../../gltests/unistdio/test-u32-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u32-vasnprintf1() [0x4064a1]
./test-u32-vasnprintf1() [0x40479c]
./test-u32-vasnprintf1(main+0x233) [0x4013d3]
/lib64/libc.so.6(+0x29c4a) [0x7ff8342d9c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7ff8342d9d05]
./test-u32-vasnprintf1(_start+0x21) [0x401561]
FAIL test-u32-vasnprintf1 (exit status: 134)

FAIL: unistdio/test-u32-vasnprintf2.sh
======================================

../../gltests/unistdio/test-u32-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u32-vasnprintf1() [0x4064a1]
./test-u32-vasnprintf1() [0x40479c]
./test-u32-vasnprintf1(main+0x233) [0x4013d3]
/lib64/libc.so.6(+0x29c4a) [0x7f818bc54c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f818bc54d05]
./test-u32-vasnprintf1(_start+0x21) [0x401561]
../../gltests/unistdio/test-u32-vasnprintf2.sh: line 18: 163289 Aborted                 (core dumped) LC_ALL=$testlocale ${CHECKER} ./test-u32-vasnprintf1${EXEEXT}
FAIL unistdio/test-u32-vasnprintf2.sh (exit status: 1)

FAIL: test-u32-vasprintf1
=========================

../../gltests/unistdio/test-u32-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u32-vasprintf1() [0x406091]
./test-u32-vasprintf1() [0x40438c]
./test-u32-vasprintf1(main+0x9) [0x4011a9]
/lib64/libc.so.6(+0x29c4a) [0x7f7e1b3c0c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f7e1b3c0d05]
./test-u32-vasprintf1(_start+0x21) [0x4011e1]
FAIL test-u32-vasprintf1 (exit status: 134)

FAIL: test-u32-vsnprintf1
=========================

../../gltests/unistdio/test-u32-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u32-vsnprintf1() [0x406471]
./test-u32-vsnprintf1() [0x40476c]
./test-u32-vsnprintf1(main+0x9) [0x401579]
/lib64/libc.so.6(+0x29c4a) [0x7fa1449d6c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fa1449d6d05]
./test-u32-vsnprintf1(_start+0x21) [0x4015b1]
FAIL test-u32-vsnprintf1 (exit status: 134)

FAIL: test-u32-vsprintf1
========================

../../gltests/unistdio/test-u32-printf1.h:332: assertion 'result != NULL' failed
Stack trace:
./test-u32-vsprintf1() [0x406471]
./test-u32-vsprintf1() [0x40476c]
./test-u32-vsprintf1(main+0x9) [0x401579]
/lib64/libc.so.6(+0x29c4a) [0x7ffbb26e8c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7ffbb26e8d05]
./test-u32-vsprintf1(_start+0x21) [0x4015b1]
FAIL test-u32-vsprintf1 (exit status: 134)

FAIL: test-u8-vasnprintf1
=========================

../../gltests/unistdio/test-u8-printf1.h:288: assertion 'result != NULL' failed
Stack trace:
./test-u8-vasnprintf1() [0x406491]
./test-u8-vasnprintf1() [0x40478c]
./test-u8-vasnprintf1(main+0x20f) [0x4013cf]
/lib64/libc.so.6(+0x29c4a) [0x7f933e6a3c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f933e6a3d05]
./test-u8-vasnprintf1(_start+0x21) [0x401551]
FAIL test-u8-vasnprintf1 (exit status: 134)

FAIL: unistdio/test-u8-vasnprintf2.sh
=====================================

../../gltests/unistdio/test-u8-printf1.h:288: assertion 'result != NULL' failed
Stack trace:
./test-u8-vasnprintf1() [0x406491]
./test-u8-vasnprintf1() [0x40478c]
./test-u8-vasnprintf1(main+0x20f) [0x4013cf]
/lib64/libc.so.6(+0x29c4a) [0x7fcf1f39fc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fcf1f39fd05]
./test-u8-vasnprintf1(_start+0x21) [0x401551]
../../gltests/unistdio/test-u8-vasnprintf2.sh: line 18: 163426 Aborted                 (core dumped) LC_ALL=$testlocale ${CHECKER} ./test-u8-vasnprintf1${EXEEXT}
FAIL unistdio/test-u8-vasnprintf2.sh (exit status: 1)

FAIL: test-u8-vasprintf1
========================

../../gltests/unistdio/test-u8-printf1.h:288: assertion 'result != NULL' failed
Stack trace:
./test-u8-vasprintf1() [0x4060a1]
./test-u8-vasprintf1() [0x40439c]
./test-u8-vasprintf1(main+0x9) [0x4011b9]
/lib64/libc.so.6(+0x29c4a) [0x7f328be39c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f328be39d05]
./test-u8-vasprintf1(_start+0x21) [0x4011f1]
FAIL test-u8-vasprintf1 (exit status: 134)

FAIL: test-u8-vsnprintf1
========================

../../gltests/unistdio/test-u8-printf1.h:288: assertion 'result != NULL' failed
Stack trace:
./test-u8-vsnprintf1() [0x406481]
./test-u8-vsnprintf1() [0x40477c]
./test-u8-vsnprintf1(main+0x9) [0x401589]
/lib64/libc.so.6(+0x29c4a) [0x7f80a0c87c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f80a0c87d05]
./test-u8-vsnprintf1(_start+0x21) [0x4015c1]
FAIL test-u8-vsnprintf1 (exit status: 134)

FAIL: test-u8-vsprintf1
=======================

../../gltests/unistdio/test-u8-printf1.h:288: assertion 'result != NULL' failed
Stack trace:
./test-u8-vsprintf1() [0x406471]
./test-u8-vsprintf1() [0x40476c]
./test-u8-vsprintf1(main+0x9) [0x401589]
/lib64/libc.so.6(+0x29c4a) [0x7ff8c7520c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7ff8c7520d05]
./test-u8-vsprintf1(_start+0x21) [0x4015c1]
FAIL test-u8-vsprintf1 (exit status: 134)

FAIL: test-ulc-vasnprintf1
==========================

../../gltests/unistdio/test-ulc-printf1.h:63: assertion 'result != NULL' failed
Stack trace:
./test-ulc-vasnprintf1() [0x405641]
./test-ulc-vasnprintf1(main+0x25b4) [0x4037a4]
/lib64/libc.so.6(+0x29c4a) [0x7fac58b4bc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fac58b4bd05]
./test-ulc-vasnprintf1(_start+0x21) [0x4053d1]
FAIL test-ulc-vasnprintf1 (exit status: 134)

FAIL: unistdio/test-ulc-vasnprintf2.sh
======================================

../../gltests/unistdio/test-ulc-printf1.h:63: assertion 'result != NULL' failed
Stack trace:
./test-ulc-vasnprintf1() [0x405641]
./test-ulc-vasnprintf1(main+0x25b4) [0x4037a4]
/lib64/libc.so.6(+0x29c4a) [0x7f8321f9ec4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f8321f9ed05]
./test-ulc-vasnprintf1(_start+0x21) [0x4053d1]
../../gltests/unistdio/test-ulc-vasnprintf2.sh: line 18: 163564 Aborted                 (core dumped) LC_ALL=$testlocale ${CHECKER} ./test-ulc-vasnprintf1${EXEEXT}
FAIL unistdio/test-ulc-vasnprintf2.sh (exit status: 1)

FAIL: test-ulc-vasprintf1
=========================

../../gltests/unistdio/test-ulc-printf1.h:63: assertion 'result != NULL' failed
Stack trace:
./test-ulc-vasprintf1() [0x404f61]
./test-ulc-vasprintf1(main+0x2774) [0x403954]
/lib64/libc.so.6(+0x29c4a) [0x7f3db8e20c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f3db8e20d05]
./test-ulc-vasprintf1(_start+0x21) [0x404d91]
FAIL test-ulc-vasprintf1 (exit status: 134)

FAIL: test-ulc-vsnprintf1
=========================

../../gltests/unistdio/test-ulc-printf1.h:63: assertion 'result != NULL' failed
Stack trace:
./test-ulc-vsnprintf1() [0x406331]
./test-ulc-vsnprintf1(main+0x2774) [0x404d24]
/lib64/libc.so.6(+0x29c4a) [0x7f681a1f1c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f681a1f1d05]
./test-ulc-vsnprintf1(_start+0x21) [0x406161]
FAIL test-ulc-vsnprintf1 (exit status: 134)

FAIL: test-ulc-vsprintf1
========================

../../gltests/unistdio/test-ulc-printf1.h:63: assertion 'result != NULL' failed
Stack trace:
./test-ulc-vsprintf1() [0x406321]
./test-ulc-vsprintf1(main+0x2774) [0x404d24]
/lib64/libc.so.6(+0x29c4a) [0x7f157a65ec4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f157a65ed05]
./test-ulc-vsprintf1(_start+0x21) [0x406161]
FAIL test-ulc-vsprintf1 (exit status: 134)

FAIL: test-wcrtomb.sh
=====================

../../gltests/test-wcrtomb.c:43: assertion 'iret == n' failed
Stack trace:
./test-wcrtomb() [0x4015e1]
./test-wcrtomb() [0x401597]
./test-wcrtomb(main+0x1c4) [0x401324]
/lib64/libc.so.6(+0x29c4a) [0x7f1702b7fc4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f1702b7fd05]
./test-wcrtomb(_start+0x21) [0x401421]
../../gltests/test-wcrtomb.sh: line 13: 165381 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-wcrtomb${EXEEXT} 2
FAIL test-wcrtomb.sh (exit status: 1)

FAIL: test-wcsnrtombs-2.sh
==========================

../../gltests/test-wcsnrtombs.c:63: assertion 'ret == 5' failed
Stack trace:
./test-wcsnrtombs() [0x401b81]
./test-wcsnrtombs(main+0x36c) [0x4014ec]
/lib64/libc.so.6(+0x29c4a) [0x7fd237f02c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7fd237f02d05]
./test-wcsnrtombs(_start+0x21) [0x401a91]
../../gltests/test-wcsnrtombs-2.sh: line 15: 165465 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-wcsnrtombs${EXEEXT} 2
FAIL test-wcsnrtombs-2.sh (exit status: 134)

FAIL: test-wcsrtombs-2.sh
=========================

../../gltests/test-wcsrtombs.c:63: assertion 'ret == 5' failed
Stack trace:
./test-wcsrtombs() [0x401b41]
./test-wcsrtombs(main+0x358) [0x4014c8]
/lib64/libc.so.6(+0x29c4a) [0x7f8eb70b3c4a]
/lib64/libc.so.6(__libc_start_main+0x85) [0x7f8eb70b3d05]
./test-wcsrtombs(_start+0x21) [0x401a51]
../../gltests/test-wcsrtombs-2.sh: line 15: 165512 Aborted                 (core dumped) LC_ALL=$LOCALE_FR ${CHECKER} ./test-wcsrtombs${EXEEXT} 2
FAIL test-wcsrtombs-2.sh (exit status: 134)

Reply via email to