summaryrefslogtreecommitdiff
path: root/tests/tmul_i.c
diff options
context:
space:
mode:
authorthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2014-01-20 18:19:00 +0000
committerthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2014-01-20 18:19:00 +0000
commit595536faf3608c8ba49d213b3bf5ac53dce3881f (patch)
treef680c4ae852201766e91e0e07ba46dc6e34f5cf1 /tests/tmul_i.c
parent4499643a3ab4178c248dfc5b13bf2585fd74ef15 (diff)
downloadmpc-595536faf3608c8ba49d213b3bf5ac53dce3881f.tar.gz
New test framework, merged from test branch.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1416 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tmul_i.c')
-rw-r--r--tests/tmul_i.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/tests/tmul_i.c b/tests/tmul_i.c
index 863ed5f..87ae2ce 100644
--- a/tests/tmul_i.c
+++ b/tests/tmul_i.c
@@ -1,6 +1,6 @@
/* tmul_i -- test file for mpc_mul_i.
-Copyright (C) 2008, 2009, 2010, 2011, 2012 INRIA
+Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013 INRIA
This file is part of GNU MPC.
@@ -80,15 +80,22 @@ check_different_precisions(void)
mpc_clear (got);
}
+
+#define MPC_FUNCTION_CALL \
+ P[0].mpc_inex = mpc_mul_i (P[1].mpc, P[2].mpc, P[3].i, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_mul_i (P[1].mpc, P[1].mpc, P[3].i, P[4].mpc_rnd)
+
+#include "tgeneric.tpl"
+
int
main (void)
{
- DECL_FUNC (CCI, f, mpc_mul_i);
-
test_start ();
check_different_precisions ();
- tgeneric (f, 2, 1024, 7, -1);
+
+ tgeneric_template ("mul_i.dsc", 2, 1024, 7, 1024);
test_end ();