summaryrefslogtreecommitdiff
path: root/tests/tmul_si.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tmul_si.c')
-rw-r--r--tests/tmul_si.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/tmul_si.c b/tests/tmul_si.c
index 1d0e0d7..9aba11a 100644
--- a/tests/tmul_si.c
+++ b/tests/tmul_si.c
@@ -1,6 +1,6 @@
/* tmul_si -- test file for mpc_mul_si.
-Copyright (C) 2002, 2005, 2008 INRIA
+Copyright (C) 2002, 2005, 2008, 2013 INRIA
This file is part of GNU MPC.
@@ -20,13 +20,19 @@ 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_mul_si (P[1].mpc, P[2].mpc, P[3].si, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_mul_si (P[1].mpc, P[1].mpc, P[3].si, P[4].mpc_rnd)
+
+#include "tgeneric.tpl"
+
int
main (void)
{
- DECL_FUNC (CCS, f, mpc_mul_si);
test_start ();
- tgeneric (f, 2, 1024, 7, -1);
+ tgeneric_template ("mul_si.dsc", 2, 1024, 7, 1024);
test_end ();