1 /* $NetBSD: t_strerror.c,v 1.3 2011/05/10 06:55:27 jruoho Exp $ */
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_strerror.c,v 1.3 2011/05/10 06:55:27 jruoho Exp $");
40 ATF_TC(strerror_basic
);
41 ATF_TC_HEAD(strerror_basic
, tc
)
43 atf_tc_set_md_var(tc
, "descr", "A basic test of strerror(3)");
46 ATF_TC_BODY(strerror_basic
, tc
)
50 for (i
= 1; i
< sys_nerr
; i
++)
51 ATF_REQUIRE(strstr(strerror(i
), "Unknown error:") == NULL
);
53 for (; i
< sys_nerr
+ 10; i
++)
54 ATF_REQUIRE(strstr(strerror(i
), "Unknown error:") != NULL
);
58 ATF_TC_HEAD(strerror_err
, tc
)
60 atf_tc_set_md_var(tc
, "descr", "Test errors from strerror(3)");
63 ATF_TC_BODY(strerror_err
, tc
)
68 ATF_REQUIRE(strstr(strerror(INT_MAX
), "Unknown error:") != NULL
);
69 ATF_REQUIRE(errno
== EINVAL
);
73 ATF_REQUIRE(strstr(strerror(INT_MIN
), "Unknown error:") != NULL
);
74 ATF_REQUIRE(errno
== EINVAL
);
77 ATF_TC(strerror_r_basic
);
78 ATF_TC_HEAD(strerror_r_basic
, tc
)
80 atf_tc_set_md_var(tc
, "descr", "A basic test of strerror_r(3)");
83 ATF_TC_BODY(strerror_r_basic
, tc
)
88 for (i
= 1; i
< sys_nerr
; i
++) {
89 ATF_REQUIRE(strerror_r(i
, buf
, sizeof(buf
)) == 0);
90 ATF_REQUIRE(strstr(buf
, "Unknown error:") == NULL
);
93 for (; i
< sys_nerr
+ 10; i
++) {
94 ATF_REQUIRE(strerror_r(i
, buf
, sizeof(buf
)) == EINVAL
);
95 ATF_REQUIRE(strstr(buf
, "Unknown error:") != NULL
);
99 ATF_TC(strerror_r_err
);
100 ATF_TC_HEAD(strerror_r_err
, tc
)
102 atf_tc_set_md_var(tc
, "descr", "Test errors from strerror_r(3)");
105 ATF_TC_BODY(strerror_r_err
, tc
)
110 rv
= strerror_r(EPERM
, buf
, 1);
111 ATF_REQUIRE(rv
== ERANGE
);
113 rv
= strerror_r(INT_MAX
, buf
, sizeof(buf
));
115 ATF_REQUIRE(rv
== EINVAL
);
116 ATF_REQUIRE(strstr(buf
, "Unknown error:") != NULL
);
118 rv
= strerror_r(INT_MIN
, buf
, sizeof(buf
));
120 ATF_REQUIRE(rv
== EINVAL
);
121 ATF_REQUIRE(strstr(buf
, "Unknown error:") != NULL
);
127 (void)setlocale(LC_ALL
, "C");
129 ATF_TP_ADD_TC(tp
, strerror_basic
);
130 ATF_TP_ADD_TC(tp
, strerror_err
);
131 ATF_TP_ADD_TC(tp
, strerror_r_basic
);
132 ATF_TP_ADD_TC(tp
, strerror_r_err
);
134 return atf_no_error();