summaryrefslogtreecommitdiff
path: root/tests/tfr_sub.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tfr_sub.c')
-rw-r--r--tests/tfr_sub.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/tests/tfr_sub.c b/tests/tfr_sub.c
index e366bc6..5665cc2 100644
--- a/tests/tfr_sub.c
+++ b/tests/tfr_sub.c
@@ -1,6 +1,6 @@
/* tfr_div -- test file for mpc_fr_sub.
-Copyright (C) 2008 INRIA
+Copyright (C) 2008, 2013 INRIA
This file is part of GNU MPC.
@@ -20,16 +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_sub (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_sub (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_sub);
-
test_start();
- data_check (f, "fr_sub.dat");
- tgeneric (f, 2, 4096, 7, 0);
+ data_check_template ("fr_sub.dsc", "fr_sub.dat");
+
+ tgeneric_template ("fr_sub.dsc", 2, 4096, 7, 1024);
test_end ();
+
return 0;
}