1 /* Test for strerror, strerror_r, and strerror_l.
3 Copyright (C) 2020-2024 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
25 #include <array_length.h>
27 #include <support/support.h>
28 #include <support/check.h>
33 unsetenv ("LANGUAGE");
35 xsetlocale (LC_ALL
, "C");
37 TEST_COMPARE_STRING (strerror (EINVAL
), "Invalid argument");
38 TEST_COMPARE_STRING (strerror (-1), "Unknown error -1");
42 TEST_COMPARE_STRING (strerror_r (EINVAL
, buffer
, 8),
44 TEST_COMPARE_STRING (strerror_r (-1, buffer
, 8),
46 TEST_COMPARE_STRING (strerror_r (-1, buffer
, 16),
48 TEST_COMPARE_STRING (strerror_r (-1, buffer
, 32),
52 locale_t l
= xnewlocale (LC_ALL_MASK
, "pt_BR.UTF-8", NULL
);
54 TEST_COMPARE_STRING (strerror_l (EINVAL
, l
), "Argumento inv\303\241lido");
55 TEST_COMPARE_STRING (strerror_l (-1, l
), "Erro desconhecido -1");
59 TEST_COMPARE_STRING (strerror (EINVAL
), "Argumento inv\303\241lido");
60 TEST_COMPARE_STRING (strerror (-1), "Erro desconhecido -1");
64 TEST_COMPARE_STRING (strerror_r (EINVAL
, buffer
, 8),
65 "Argumento inv\303\241lido");
66 TEST_COMPARE_STRING (strerror_r (-1, buffer
, 8),
68 TEST_COMPARE_STRING (strerror_r (-1, buffer
, 16),
70 TEST_COMPARE_STRING (strerror_r (-1, buffer
, 32),
71 "Erro desconhecido -1");
79 #include <support/test-driver.c>