From cecd5115b408a0c0d04af38206d897a627bded76 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 29 Feb 2012 13:24:23 +0100 Subject: [PATCH] Tests for module 'hypotf'. * modules/hypotf-tests: New file. * tests/test-hypotf.c: New file. --- ChangeLog | 4 ++++ modules/hypotf-tests | 13 +++++++++++ tests/test-hypotf.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 modules/hypotf-tests create mode 100644 tests/test-hypotf.c diff --git a/ChangeLog b/ChangeLog index a566d06f6..66d8c98a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2012-02-29 Bruno Haible + Tests for module 'hypotf'. + * modules/hypotf-tests: New file. + * tests/test-hypotf.c: New file. + New module 'hypotf'. * lib/math.in.h (hypotf): New declaration. * lib/hypotf.c: New file. diff --git a/modules/hypotf-tests b/modules/hypotf-tests new file mode 100644 index 000000000..e84a62469 --- /dev/null +++ b/modules/hypotf-tests @@ -0,0 +1,13 @@ +Files: +tests/test-hypotf.c +tests/signature.h +tests/macros.h + +Depends-on: + +configure.ac: + +Makefile.am: +TESTS += test-hypotf +check_PROGRAMS += test-hypotf +test_hypotf_LDADD = $(LDADD) @HYPOTF_LIBM@ diff --git a/tests/test-hypotf.c b/tests/test-hypotf.c new file mode 100644 index 000000000..f1b0c17a3 --- /dev/null +++ b/tests/test-hypotf.c @@ -0,0 +1,62 @@ +/* Test of hypotf() function. + Copyright (C) 2010-2012 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +/* Written by Bruno Haible , 2010. */ + +#include + +#include + +#include "signature.h" +SIGNATURE_CHECK (hypotf, float, (float, float)); + +#include + +#include "macros.h" + +volatile float x; +volatile float y; +float z; + +int +main () +{ + /* A particular value. */ + x = 0.4f; + y = 0.6f; + z = hypot (x, y); + ASSERT (z >= 0.7211102f && z <= 0.7211103f); + + /* Overflow. */ + x = FLT_MAX; + y = FLT_MAX * 0.5f; + z = hypotf (x, y); + ASSERT (z == HUGE_VALF); + + /* No underflow. */ + x = FLT_MIN; + y = 0.0f; + z = hypotf (x, y); + ASSERT (z == FLT_MIN); + + /* No underflow. */ + x = FLT_MIN * 2.0f; + y = FLT_MIN * 3.0f; + z = hypotf (x, y); + ASSERT (z >= FLT_MIN * 2.0f && z <= FLT_MIN * 4.0f); + + return 0; +} -- 2.11.0