diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 19:11:58 +0100 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 19:11:58 +0100 | 
| commit | 9853b168f68cbb09b75a817343cedde2aca4c76c (patch) | |
| tree | db628840acea83dbccaf5676b89579a80e02ef51 /tests/test-stdlib.c | |
| parent | d83e85a2e6064c36f6ad3c848e39d8b8c101c4f7 (diff) | |
| parent | 7cf710f6587e71a193a55d84dd6d8ae1a8a69ce0 (diff) | |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'tests/test-stdlib.c')
| -rw-r--r-- | tests/test-stdlib.c | 15 | 
1 files changed, 13 insertions, 2 deletions
| diff --git a/tests/test-stdlib.c b/tests/test-stdlib.c index 4fdafc99..cb6db802 100644 --- a/tests/test-stdlib.c +++ b/tests/test-stdlib.c @@ -1,5 +1,5 @@  /* Test of <stdlib.h> substitute. -   Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. +   Copyright (C) 2007, 2009-2024 Free Software Foundation, Inc.     This program is free software: you can redistribute it and/or modify     it under the terms of the GNU General Public License as published by @@ -45,8 +45,19 @@ static_assert (sizeof NULL == sizeof (void *));  int  main (void)  { -  if (test_sys_wait_macros ()) +  /* POSIX:2018 says: +     "In the POSIX locale the value of MB_CUR_MAX shall be 1."  */ +  /* On Android ≥ 5.0, the default locale is the "C.UTF-8" locale, not the +     "C" locale.  Furthermore, when you attempt to set the "C" or "POSIX" +     locale via setlocale(), what you get is a "C" locale with UTF-8 encoding, +     that is, effectively the "C.UTF-8" locale.  */ +#ifndef __ANDROID__ +  if (MB_CUR_MAX != 1)      return 1; +#endif + +  if (test_sys_wait_macros ()) +    return 2;    return exitcode;  } | 
