summaryrefslogtreecommitdiff
path: root/tests/tsin.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-08 13:01:31 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-08 13:01:31 +0000
commite6db0fe6bd359c65b8fdd87b6c6af610e802ce4b (patch)
tree446f19646d4be3f9fa1b194c8f896dcd04956d1d /tests/tsin.c
parent50315d13d79d6a7fe8e60b2865bc89eae81f7c08 (diff)
downloadmpfr-e6db0fe6bd359c65b8fdd87b6c6af610e802ce4b.tar.gz
fixed bug in mpfr_sin (possible wrong inexact flag for rounding to nearest)
added items in NEWS and TODO git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3705 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsin.c')
-rw-r--r--tests/tsin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tsin.c b/tests/tsin.c
index 5d8bfe65d..6919bc9f4 100644
--- a/tests/tsin.c
+++ b/tests/tsin.c
@@ -21,6 +21,7 @@ MA 02110-1301, USA. */
#include <stdio.h>
#include <stdlib.h>
+#include <string.h> /* for strlen */
#include "mpfr-test.h"
@@ -185,7 +186,7 @@ check_regression ()
mp_prec_t p;
int i;
- p = strlen (xs) -2 - 3;
+ p = strlen (xs) - 2 - 3;
mpfr_inits2 (p, x, y, NULL);
mpfr_set_str (x, xs, 2, GMP_RNDN);
@@ -208,6 +209,7 @@ main (int argc, char *argv[])
tests_start_mpfr ();
+ check_regression ();
check_nans ();
/* worst case from PhD thesis of Vincent Lefe`vre: x=8980155785351021/2^54 */
@@ -280,7 +282,6 @@ main (int argc, char *argv[])
test_generic (2, 100, 20);
test_sign ();
- check_regression ();
tests_end_mpfr ();
return 0;