xref: /minix3/tests/lib/libm/t_precision.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc /* $NetBSD: t_precision.c,v 1.2 2014/11/04 00:20:19 justin Exp $ */
284d9c625SLionel Sambuc 
384d9c625SLionel Sambuc /*-
484d9c625SLionel Sambuc  * Copyright (c) 2013 The NetBSD Foundation, Inc.
584d9c625SLionel Sambuc  * All rights reserved.
684d9c625SLionel Sambuc  *
784d9c625SLionel Sambuc  * This code is derived from software contributed to The NetBSD Foundation
884d9c625SLionel Sambuc  * by Joerg Sonnenberger.
984d9c625SLionel Sambuc  *
1084d9c625SLionel Sambuc  * Redistribution and use in source and binary forms, with or without
1184d9c625SLionel Sambuc  * modification, are permitted provided that the following conditions
1284d9c625SLionel Sambuc  * are met:
1384d9c625SLionel Sambuc  * 1. Redistributions of source code must retain the above copyright
1484d9c625SLionel Sambuc  *    notice, this list of conditions and the following disclaimer.
1584d9c625SLionel Sambuc  * 2. Redistributions in binary form must reproduce the above copyright
1684d9c625SLionel Sambuc  *    notice, this list of conditions and the following disclaimer in the
1784d9c625SLionel Sambuc  *    documentation and/or other materials provided with the distribution.
1884d9c625SLionel Sambuc  *
1984d9c625SLionel Sambuc  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2084d9c625SLionel Sambuc  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2184d9c625SLionel Sambuc  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2284d9c625SLionel Sambuc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2384d9c625SLionel Sambuc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2484d9c625SLionel Sambuc  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2584d9c625SLionel Sambuc  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2684d9c625SLionel Sambuc  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2784d9c625SLionel Sambuc  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2884d9c625SLionel Sambuc  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2984d9c625SLionel Sambuc  * POSSIBILITY OF SUCH DAMAGE.
3084d9c625SLionel Sambuc  */
3184d9c625SLionel Sambuc #include <sys/cdefs.h>
32*0a6a1f1dSLionel Sambuc __RCSID("$NetBSD: t_precision.c,v 1.2 2014/11/04 00:20:19 justin Exp $");
3384d9c625SLionel Sambuc 
3484d9c625SLionel Sambuc #include <atf-c.h>
3584d9c625SLionel Sambuc 
3684d9c625SLionel Sambuc #include <float.h>
3784d9c625SLionel Sambuc #include <stdlib.h>
3884d9c625SLionel Sambuc 
3984d9c625SLionel Sambuc ATF_TC(t_precision);
4084d9c625SLionel Sambuc 
ATF_TC_HEAD(t_precision,tc)4184d9c625SLionel Sambuc ATF_TC_HEAD(t_precision, tc)
4284d9c625SLionel Sambuc {
4384d9c625SLionel Sambuc 	atf_tc_set_md_var(tc, "descr",
4484d9c625SLionel Sambuc 	    "Basic precision test for double and long double");
4584d9c625SLionel Sambuc }
4684d9c625SLionel Sambuc 
4784d9c625SLionel Sambuc volatile double x = 1;
4884d9c625SLionel Sambuc volatile long double y = 1;
4984d9c625SLionel Sambuc 
ATF_TC_BODY(t_precision,tc)5084d9c625SLionel Sambuc ATF_TC_BODY(t_precision, tc)
5184d9c625SLionel Sambuc {
5284d9c625SLionel Sambuc 	x += DBL_EPSILON;
5384d9c625SLionel Sambuc 	ATF_CHECK(x != 1.0);
5484d9c625SLionel Sambuc 	x -= 1;
5584d9c625SLionel Sambuc 	ATF_CHECK(x == DBL_EPSILON);
5684d9c625SLionel Sambuc 
5784d9c625SLionel Sambuc 	x = 2;
5884d9c625SLionel Sambuc 	x += DBL_EPSILON;
5984d9c625SLionel Sambuc 	ATF_CHECK(x == 2.0);
6084d9c625SLionel Sambuc 
6184d9c625SLionel Sambuc 	y += LDBL_EPSILON;
6284d9c625SLionel Sambuc 	ATF_CHECK(y != 1.0L);
6384d9c625SLionel Sambuc 	y -= 1;
6484d9c625SLionel Sambuc 	ATF_CHECK(y == LDBL_EPSILON);
6584d9c625SLionel Sambuc 	y = 2;
6684d9c625SLionel Sambuc 	y += LDBL_EPSILON;
6784d9c625SLionel Sambuc 	ATF_CHECK(y == 2.0L);
6884d9c625SLionel Sambuc }
6984d9c625SLionel Sambuc 
ATF_TP_ADD_TCS(tp)7084d9c625SLionel Sambuc ATF_TP_ADD_TCS(tp)
7184d9c625SLionel Sambuc {
7284d9c625SLionel Sambuc 	ATF_TP_ADD_TC(tp, t_precision);
7384d9c625SLionel Sambuc 
7484d9c625SLionel Sambuc 	return atf_no_error();
7584d9c625SLionel Sambuc }
76