1cdebaff8SEnji Cooper /* $NetBSD: t_precision.c,v 1.3 2016/08/27 10:07:05 christos Exp $ */
257718be8SEnji Cooper
357718be8SEnji Cooper /*-
457718be8SEnji Cooper * Copyright (c) 2013 The NetBSD Foundation, Inc.
557718be8SEnji Cooper * All rights reserved.
657718be8SEnji Cooper *
757718be8SEnji Cooper * This code is derived from software contributed to The NetBSD Foundation
857718be8SEnji Cooper * by Joerg Sonnenberger.
957718be8SEnji Cooper *
1057718be8SEnji Cooper * Redistribution and use in source and binary forms, with or without
1157718be8SEnji Cooper * modification, are permitted provided that the following conditions
1257718be8SEnji Cooper * are met:
1357718be8SEnji Cooper * 1. Redistributions of source code must retain the above copyright
1457718be8SEnji Cooper * notice, this list of conditions and the following disclaimer.
1557718be8SEnji Cooper * 2. Redistributions in binary form must reproduce the above copyright
1657718be8SEnji Cooper * notice, this list of conditions and the following disclaimer in the
1757718be8SEnji Cooper * documentation and/or other materials provided with the distribution.
1857718be8SEnji Cooper *
1957718be8SEnji Cooper * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2057718be8SEnji Cooper * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2157718be8SEnji Cooper * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2257718be8SEnji Cooper * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2357718be8SEnji Cooper * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2457718be8SEnji Cooper * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2557718be8SEnji Cooper * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2657718be8SEnji Cooper * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2757718be8SEnji Cooper * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2857718be8SEnji Cooper * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2957718be8SEnji Cooper * POSSIBILITY OF SUCH DAMAGE.
3057718be8SEnji Cooper */
3157718be8SEnji Cooper #include <sys/cdefs.h>
32cdebaff8SEnji Cooper __RCSID("$NetBSD: t_precision.c,v 1.3 2016/08/27 10:07:05 christos Exp $");
3357718be8SEnji Cooper
3457718be8SEnji Cooper #include <atf-c.h>
3557718be8SEnji Cooper
3657718be8SEnji Cooper #include <float.h>
3757718be8SEnji Cooper #include <stdlib.h>
3857718be8SEnji Cooper
3957718be8SEnji Cooper ATF_TC(t_precision);
4057718be8SEnji Cooper
ATF_TC_HEAD(t_precision,tc)4157718be8SEnji Cooper ATF_TC_HEAD(t_precision, tc)
4257718be8SEnji Cooper {
4357718be8SEnji Cooper atf_tc_set_md_var(tc, "descr",
4457718be8SEnji Cooper "Basic precision test for double and long double");
4557718be8SEnji Cooper }
4657718be8SEnji Cooper
47*87d65c74SAlex Richardson static volatile double x = 1;
48cdebaff8SEnji Cooper #if __HAVE_LONG_DOUBLE
49*87d65c74SAlex Richardson static volatile long double y = 1;
50cdebaff8SEnji Cooper #endif
5157718be8SEnji Cooper
ATF_TC_BODY(t_precision,tc)5257718be8SEnji Cooper ATF_TC_BODY(t_precision, tc)
5357718be8SEnji Cooper {
54cad71489SEnji Cooper #ifdef __FreeBSD__
55cad71489SEnji Cooper #ifdef __i386__
56cad71489SEnji Cooper atf_tc_expect_fail("the __HAVE_LONG_DOUBLE checks fail on i386");
57cad71489SEnji Cooper #endif
58cad71489SEnji Cooper #endif
5957718be8SEnji Cooper x += DBL_EPSILON;
6057718be8SEnji Cooper ATF_CHECK(x != 1.0);
6157718be8SEnji Cooper x -= 1;
6257718be8SEnji Cooper ATF_CHECK(x == DBL_EPSILON);
6357718be8SEnji Cooper
6457718be8SEnji Cooper x = 2;
6557718be8SEnji Cooper x += DBL_EPSILON;
6657718be8SEnji Cooper ATF_CHECK(x == 2.0);
6757718be8SEnji Cooper
68cdebaff8SEnji Cooper #if __HAVE_LONG_DOUBLE
6957718be8SEnji Cooper y += LDBL_EPSILON;
7057718be8SEnji Cooper ATF_CHECK(y != 1.0L);
7157718be8SEnji Cooper y -= 1;
7257718be8SEnji Cooper ATF_CHECK(y == LDBL_EPSILON);
7357718be8SEnji Cooper y = 2;
7457718be8SEnji Cooper y += LDBL_EPSILON;
7557718be8SEnji Cooper ATF_CHECK(y == 2.0L);
7666152388SEnji Cooper #endif
7757718be8SEnji Cooper }
7857718be8SEnji Cooper
ATF_TP_ADD_TCS(tp)7957718be8SEnji Cooper ATF_TP_ADD_TCS(tp)
8057718be8SEnji Cooper {
8157718be8SEnji Cooper ATF_TP_ADD_TC(tp, t_precision);
8257718be8SEnji Cooper
8357718be8SEnji Cooper return atf_no_error();
8457718be8SEnji Cooper }
85