summaryrefslogtreecommitdiff
path: root/tests/tfr_div.c
diff options
context:
space:
mode:
authorPhilippe Theveny <philippe.theveny@laposte.net>2014-01-20 18:19:00 +0000
committerPhilippe Theveny <philippe.theveny@laposte.net>2014-01-20 18:19:00 +0000
commit098a9b3905fcb9db710e3890f1553716f78bf794 (patch)
treef680c4ae852201766e91e0e07ba46dc6e34f5cf1 /tests/tfr_div.c
parenta78b9b4bc767c1d10c5101929c91cadcfd904283 (diff)
downloadmpc-git-098a9b3905fcb9db710e3890f1553716f78bf794.tar.gz
New test framework, merged from test branch.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/mpc/trunk@1416 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tfr_div.c')
-rw-r--r--tests/tfr_div.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/tests/tfr_div.c b/tests/tfr_div.c
index bea8a21..e257384 100644
--- a/tests/tfr_div.c
+++ b/tests/tfr_div.c
@@ -1,6 +1,6 @@
/* tfr_div -- test file for mpc_fr_div.
-Copyright (C) 2008 INRIA
+Copyright (C) 2008, 2013 INRIA
This file is part of GNU MPC.
@@ -20,15 +20,24 @@ 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_fr_div (P[1].mpc, P[2].mpfr, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP2 \
+ P[0].mpc_inex = mpc_fr_div (P[1].mpc, P[2].mpfr, P[1].mpc, P[4].mpc_rnd)
+
+#include "data_check.tpl"
+#include "tgeneric.tpl"
+
int
main (void)
{
- DECL_FUNC (CFC, f, mpc_fr_div);
test_start();
- data_check (f, "fr_div.dat");
- tgeneric (f, 2, 1024, 7, 65535);
+ data_check_template ("fr_div.dsc", "fr_div.dat");
+
+ tgeneric_template ("fr_div.dsc", 2, 1024, 7, 65535);
test_end ();
+
return 0;
}