summaryrefslogtreecommitdiff
path: root/tests/tmul.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tmul.c')
-rw-r--r--tests/tmul.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/tests/tmul.c b/tests/tmul.c
index 225cf0e..4331ba9 100644
--- a/tests/tmul.c
+++ b/tests/tmul.c
@@ -1,6 +1,6 @@
/* tmul -- test file for mpc_mul.
-Copyright (C) 2002, 2005, 2008, 2009, 2010, 2011, 2012 INRIA
+Copyright (C) 2002, 2005, 2008, 2009, 2010, 2011, 2012, 2013 INRIA
This file is part of GNU MPC.
@@ -178,13 +178,21 @@ timemul (void)
}
#endif
+#define MPC_FUNCTION_CALL \
+ P[0].mpc_inex = mpc_mul (P[1].mpc, P[2].mpc, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_SYMMETRIC \
+ P[0].mpc_inex = mpc_mul (P[1].mpc, P[3].mpc, P[2].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_mul (P[1].mpc, P[1].mpc, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP2 \
+ P[0].mpc_inex = mpc_mul (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_mul);
- f.properties = FUNC_PROP_SYMETRIC;
-
test_start ();
#ifdef TIMING
@@ -193,9 +201,11 @@ main (void)
check_regular ();
- data_check (f, "mul.dat");
- tgeneric (f, 2, 4096, 41, 100);
+ data_check_template ("mul.dsc", "mul.dat");
+
+ tgeneric_template ("mul.dsc", 2, 4096, 41, 1024);
test_end ();
+
return 0;
}