summaryrefslogtreecommitdiff
path: root/tests/tatanh.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/tatanh.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/tatanh.c')
-rw-r--r--tests/tatanh.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/tests/tatanh.c b/tests/tatanh.c
index ddba68c..188b772 100644
--- a/tests/tatanh.c
+++ b/tests/tatanh.c
@@ -1,6 +1,6 @@
/* tatanh -- test file for mpc_atanh.
-Copyright (C) 2009 INRIA
+Copyright (C) 2009, 2013 INRIA
This file is part of GNU MPC.
@@ -39,17 +39,24 @@ bug20091120 (void)
mpc_clear (y);
}
+#define MPC_FUNCTION_CALL \
+ P[0].mpc_inex = mpc_atanh (P[1].mpc, P[2].mpc, P[3].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_atanh (P[1].mpc, P[1].mpc, P[3].mpc_rnd)
+
+#include "data_check.tpl"
+#include "tgeneric.tpl"
+
int
main (void)
{
- DECL_FUNC (CC, f, mpc_atanh);
-
test_start ();
bug20091120 ();
- data_check (f, "atanh.dat");
- tgeneric (f, 2, 512, 5, 128);
+ data_check_template ("atanh.dsc", "atanh.dat");
+
+ tgeneric_template ("atanh.dsc", 2, 512, 5, 128);
test_end ();