summaryrefslogtreecommitdiff
path: root/tests/tdiv_fr.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tdiv_fr.c')
-rw-r--r--tests/tdiv_fr.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/tests/tdiv_fr.c b/tests/tdiv_fr.c
index 21e677e..a56f701 100644
--- a/tests/tdiv_fr.c
+++ b/tests/tdiv_fr.c
@@ -1,6 +1,6 @@
-/* test file for mpc_div_fr.
+/* tdiv_fr.c -- test file for mpc_div_fr.
-Copyright (C) 2008 INRIA
+Copyright (C) 2008, 2013 INRIA
This file is part of GNU MPC.
@@ -20,15 +20,22 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
#include "mpc-tests.h"
+#define MPC_FUNCTION_CALL \
+ P[0].mpc_inex = mpc_div_fr (P[1].mpc, P[2].mpc, P[3].mpfr, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_div_fr (P[1].mpc, P[1].mpc, P[3].mpfr, P[4].mpc_rnd)
+
+#include "data_check.tpl"
+#include "tgeneric.tpl"
+
int
main (void)
{
- DECL_FUNC (CCF, f, mpc_div_fr);
-
test_start ();
- data_check (f, "div_fr.dat");
- tgeneric (f, 2, 1024, 7, -1);
+ data_check_template ("div_fr.dsc", "div_fr.dat");
+
+ tgeneric_template ("div_fr.dsc", 2, 1024, 7, 1024);
test_end ();