Import Upstream version 0.8.2
[platform/upstream/mpc.git] / tests / tadd_fr.c
index 1f3b76a..b51f3ce 100644 (file)
@@ -1,22 +1,23 @@
-/* tadd_fr -- test file for mpc_add_fr.
+/* test file for mpc_add_fr.
 
-Copyright (C) 2008, 2010, 2012 INRIA
+Copyright (C) 2008 Philippe Th\'eveny, Andreas Enge
 
-This file is part of GNU MPC.
+This file is part of the MPC Library.
 
-GNU MPC is free software; you can redistribute it and/or modify it under
-the terms of the GNU Lesser General Public License as published by the
-Free Software Foundation; either version 3 of the License, or (at your
+The MPC Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
 option) any later version.
 
-GNU MPC 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 Lesser General Public License for
-more details.
+The MPC Library 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 Lesser General Public
+License for more details.
 
 You should have received a copy of the GNU Lesser General Public License
-along with this program. If not, see http://www.gnu.org/licenses/ .
-*/
+along with the MPC Library; see the file COPYING.LIB.  If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
 
 #include <stdlib.h>
 #include "mpc-tests.h"
@@ -45,7 +46,7 @@ check_ternary_value (mpfr_prec_t prec_max, mpfr_prec_t step)
         }
 
       mpc_set_ui (z, 1, MPC_RNDNN);
-      mpc_mul_2ui (z, z, (unsigned long int) prec, MPC_RNDNN);
+      mpc_mul_2exp (z, z, prec, MPC_RNDNN);
       if (mpc_add_fr (z, z, f, MPC_RNDNN) == 0)
         {
           fprintf (stderr, "Error in mpc_add_fr: 2^prec+1 cannot be exact\n");
@@ -65,7 +66,7 @@ main (void)
   check_ternary_value (1024, 1);
 
   data_check (f, "add_fr.dat");
-  tgeneric (f, 2, 1024, 7, 10);
+  tgeneric (f, 2, 1024, 7, -1);
 
   test_end ();
   return 0;