summaryrefslogtreecommitdiff
path: root/tests/tsub.c
diff options
context:
space:
mode:
authorthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-12-04 16:08:21 +0000
committerthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-12-04 16:08:21 +0000
commit4a311ffd142e0340cc889f8e0682dd6ef6843c98 (patch)
treeb381c85398a79b354016b658474d9be3c5caa32f /tests/tsub.c
parent4192e23690a3f0c0a522a7e8bd07d243f939d3b2 (diff)
downloadmpc-4a311ffd142e0340cc889f8e0682dd6ef6843c98.tar.gz
[tests/] Switch all tests to new test framework.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/branches/benchs_tests@1387 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tsub.c')
-rw-r--r--tests/tsub.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/tests/tsub.c b/tests/tsub.c
index 658c81e..f9e6e74 100644
--- a/tests/tsub.c
+++ b/tests/tsub.c
@@ -1,6 +1,6 @@
/* tsub -- test file for mpc_sub.
-Copyright (C) 2008, 2011 INRIA
+Copyright (C) 2008, 2011, 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_sub (P[1].mpc, P[2].mpc, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP1 \
+ P[0].mpc_inex = mpc_sub (P[1].mpc, P[1].mpc, P[3].mpc, P[4].mpc_rnd)
+#define MPC_FUNCTION_CALL_REUSE_OP2 \
+ P[0].mpc_inex = mpc_sub (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_sub);
-
test_start ();
- data_check (f, "sub.dat");
- tgeneric (f, 2, 1024, 7, -1);
+ data_check_template ("sub.dsc", "sub.dat");
+
+ tgeneric_template ("sub.dsc", 2, 1024, 7, 128);
test_end ();