This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] math/libm-test.inc (ldexp_test): Add missing START/END markers.


>From a quick look at the libm-test-ulps files, no errors seem to have
been attributed falsely to the preceding jn tests.

	* math/libm-test.inc (ldexp_test): Add missing START/END markers.

---
 math/libm-test.inc |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git math/libm-test.inc math/libm-test.inc
index 19aa203..88d9b05 100644
--- math/libm-test.inc
+++ math/libm-test.inc
@@ -6382,6 +6382,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);
 
@@ -6394,6 +6396,8 @@ ldexp_test (void)
 
   /* ldexp (x, 0) == x.  */
   TEST_ff_f (ldexp, 1.0L, 0L, 1.0L);
+
+  END (ldexp);
 }
 
 
-- 
1.7.4.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]