t_fpsetround.c revision 1.2 1 /* $NetBSD: t_fpsetround.c,v 1.2 2011/09/30 17:44:58 christos Exp $ */
2
3 /*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Christos Zoulas.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
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.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38 #include <sys/cdefs.h>
39 __RCSID("$NetBSD: t_fpsetround.c,v 1.2 2011/09/30 17:44:58 christos Exp $");
40
41 #include <float.h>
42 #include <math.h>
43 #include <stdlib.h>
44 #include <string.h>
45
46 #if !defined(__mc68000__) && !defined(__vax__)
47 #include <ieeefp.h>
48 #endif
49
50 #ifdef DEBUG
51 #include <stdio.h>
52 #define DPRINTF(a) printf a
53 #else
54 #define DPRINTF(a)
55 #endif
56
57 #include <atf-c.h>
58
59 ATF_TC(fpsetround_basic);
60 ATF_TC_HEAD(fpsetround_basic, tc)
61 {
62
63 atf_tc_set_md_var(tc, "descr",
64 "Minimal testing of fpgetround(3) and fpsetround(3)");
65 }
66
67 static const struct {
68 const char *n;
69 int v[4];
70 } tst[] = { /* RN RP RM RZ */
71 { "1.1", { 1, 1, 2, 1 } },
72 { "1.5", { 1, 2, 2, 1 } },
73 { "1.9", { 1, 2, 2, 1 } },
74 { "-1.1", { -1, -1, -1, -2 } },
75 { "-1.5", { -1, -2, -1, -2 } },
76 { "-1.9", { -1, -2, -1, -2 } },
77 };
78
79 static void
80 test(int r)
81 {
82 for (size_t i = 0; i < __arraycount(tst); i++) {
83 double d = strtod(tst[i].n, NULL);
84 ATF_CHECK_EQ((int)rint(d), tst[i].v[r]);
85 DPRINTF(("%s %d %d\n", tst[i].n, (int)rint(d), tst[i].v[r]));
86 }
87 }
88
89 static const struct {
90 int rm;
91 int rf;
92 } rnd[] = {
93 { FP_RN, 1 },
94 { FP_RP, 2 },
95 { FP_RM, 3 },
96 { FP_RZ, 0 },
97
98 };
99
100 ATF_TC_BODY(fpsetround_basic, tc)
101 {
102
103 #if defined(__mc68000__) || defined(__vax__)
104 atf_tc_skip("Test not applicable on this architecture.");
105 #else
106 int r;
107
108 ATF_CHECK_EQ(r = fpgetround(), FP_RN);
109 ATF_CHECK_EQ(FLT_ROUNDS, 1);
110
111 for (size_t i = 0; i < __arraycount(rnd); i++) {
112 size_t j = (i + 1) & 3;
113 int o = rnd[i].rm;
114 int n = rnd[j].rm;
115
116 ATF_CHECK_EQ(r = fpsetround(n), o);
117 DPRINTF(("s o=%x r=%x\n", o, r));
118 ATF_CHECK_EQ(r = fpgetround(), n);
119 DPRINTF(("g n=%x r=%x\n", n, r));
120 ATF_CHECK_EQ(FLT_ROUNDS, rnd[j].rf);
121 test(rnd[j].rf);
122 }
123 #endif /* defined(__mc68000__) || defined(__vax__) */
124 }
125
126 ATF_TP_ADD_TCS(tp)
127 {
128
129 ATF_TP_ADD_TC(tp, fpsetround_basic);
130
131 return atf_no_error();
132 }
133