summaryrefslogtreecommitdiff
path: root/tests/tdiv.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tdiv.c')
-rw-r--r--tests/tdiv.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/tests/tdiv.c b/tests/tdiv.c
index 3b8340f..51ffb39 100644
--- a/tests/tdiv.c
+++ b/tests/tdiv.c
@@ -1,6 +1,6 @@
/* tdiv -- test file for mpc_div.
-Copyright (C) 2002, 2008, 2009, 2011 INRIA
+Copyright (C) 2002, 2008, 2009, 2011, 2013 INRIA
This file is part of GNU MPC.
@@ -21,16 +21,26 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
#include <stdlib.h>
#include "mpc-tests.h"
+#define MPC_FUNCTION_CALL \
+ P[0].mpc_inex = mpc_div (P[1].mpc, P[2].mpc, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_div (P[1].mpc, P[1].mpc, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP2 \
+ P[0].mpc_inex = mpc_div (P[1].mpc, P[2].mpc, P[1].mpc, P[4].mpc_rnd)
+
+#include "data_check.tpl"
+#include "tgeneric.tpl"
+
int
main (void)
{
- DECL_FUNC (C_CC, f, mpc_div);
-
test_start ();
- data_check (f, "div.dat");
- tgeneric (f, 2, 1024, 7, 4096);
+ data_check_template ("div.dsc", "div.dat");
+
+ tgeneric_template ("div.dsc", 2, 1024, 7, 4096);
test_end ();
+
return 0;
}