diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-01-17 23:21:58 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-01-17 23:21:58 +0000 |
commit | 4863b0a75d59d22143c3070eaf1251f3be487ab8 (patch) | |
tree | cc490222e21bd5c5d5d136c492e01944173141b5 /tests | |
parent | 78530e04a4e4125f35613cc27aa2ea3c258307da (diff) | |
download | mpfr-4863b0a75d59d22143c3070eaf1251f3be487ab8.tar.gz |
missing \n in error messages
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8770 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tfms.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/tfms.c b/tests/tfms.c index 9fd6c0f82..b8a7889ff 100644 --- a/tests/tfms.c +++ b/tests/tfms.c @@ -383,7 +383,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p (s)) { - printf ("evaluation of function in x=NAN does not return NAN"); + printf ("evaluation of function in x=NAN does not return NAN\n"); exit (1); } @@ -393,7 +393,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p(s)) { - printf ("evaluation of function in y=NAN does not return NAN"); + printf ("evaluation of function in y=NAN does not return NAN\n"); exit (1); } @@ -403,7 +403,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p (s)) { - printf ("evaluation of function in z=NAN does not return NAN"); + printf ("evaluation of function in z=NAN does not return NAN\n"); exit (1); } @@ -453,7 +453,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p (s)) { - printf ("evaluation of function in x=INF y=0 does not return NAN"); + printf ("evaluation of function in x=INF y=0 does not return NAN\n"); exit (1); } @@ -463,7 +463,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p (s)) { - printf ("evaluation of function in x=0 y=INF does not return NAN"); + printf ("evaluation of function in x=0 y=INF does not return NAN\n"); exit (1); } @@ -473,7 +473,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p (s)) { - printf ("evaluation of function in x=INF y>0 z=INF does not return NAN"); + printf ("evaluation of function in x=INF y>0 z=INF does not return NAN\n"); exit (1); } @@ -483,7 +483,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_nan_p (s)) { - printf ("evaluation of function in x>0 y=INF z=INF does not return NAN"); + printf ("evaluation of function in x>0 y=INF z=INF does not return NAN\n"); exit (1); } @@ -493,7 +493,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_inf_p (s) || mpfr_sgn (s) < 0) { - printf ("evaluation of function in x=INF does not return INF"); + printf ("evaluation of function in x=INF does not return INF\n"); exit (1); } @@ -503,7 +503,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_inf_p (s) || mpfr_sgn (s) < 0) { - printf ("evaluation of function in y=INF does not return INF"); + printf ("evaluation of function in y=INF does not return INF\n"); exit (1); } @@ -513,7 +513,7 @@ main (int argc, char *argv[]) mpfr_fms (s, x, y, z, MPFR_RNDN); if (!mpfr_inf_p (s) || mpfr_sgn (s) < 0) { - printf ("evaluation of function in z=-INF does not return INF"); + printf ("evaluation of function in z=-INF does not return INF\n"); exit (1); } |