aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2013-03-08 09:50:38 +0100
committerThomas Schwinge <thomas@codesourcery.com>2013-03-15 19:13:53 +0100
commitaf00a34d085eae098349671c7d753a681b90c78f (patch)
treee6380239b2805e3a1260c5cba6738dd412497caf
parent495ded2c8c1eb8c0ac4b54add2dd397852e19cba (diff)
downloadglibc-af00a34d085eae098349671c7d753a681b90c78f.zip
glibc-af00a34d085eae098349671c7d753a681b90c78f.tar.gz
glibc-af00a34d085eae098349671c7d753a681b90c78f.tar.bz2
* math/libm-test.inc (ldexp_test): Add missing START/END markers.
-rw-r--r--ChangeLog2
-rw-r--r--math/libm-test.inc4
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d445e60..0ef7625 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2013-03-15 Thomas Schwinge <thomas@codesourcery.com>
+ * math/libm-test.inc (ldexp_test): Add missing START/END markers.
+
* sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
math/test-snan.c.
* math/test-snan.c: Renamed from
diff --git a/math/libm-test.inc b/math/libm-test.inc
index 00e3d6e..c85bdcb 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -6381,6 +6381,8 @@ jn_test (void)
static void
ldexp_test (void)
{
+ START (ldexp);
+
TEST_ff_f (ldexp, 0, 0, 0);
TEST_ff_f (ldexp, minus_zero, 0, minus_zero);
@@ -6393,6 +6395,8 @@ ldexp_test (void)
/* ldexp (x, 0) == x. */
TEST_ff_f (ldexp, 1.0L, 0L, 1.0L);
+
+ END (ldexp);
}