summaryrefslogtreecommitdiff
path: root/tests/tmul_i.c
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-13 17:58:58 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-13 17:58:58 +0000
commit34903ad51b29b3f9c7b3fa09d47a2f1113793cfe (patch)
treedbb3c514c516e24df5d72d6b881f3e8dd8ab1d31 /tests/tmul_i.c
parent9f1fcd5b925bac9df49a38200d4a002ad811af35 (diff)
downloadmpc-34903ad51b29b3f9c7b3fa09d47a2f1113793cfe.tar.gz
mpc-impl.h and test files: replaced macro OUT by MPC_OUT
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@867 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tmul_i.c')
-rw-r--r--tests/tmul_i.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/tmul_i.c b/tests/tmul_i.c
index 753e0de..83bca46 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 Philippe Theveny, Andreas Enge
+Copyright (C) 2008, 2009, 2010, 2011 Philippe Theveny, Andreas Enge
This file is part of the MPC Library.
@@ -54,10 +54,10 @@ check_different_precisions(void)
if (mpc_cmp(got, expected) != 0)
{
printf ("Error for mpc_mul_i(z, z, n) for\n");
- OUT (z);
+ MPC_OUT (z);
printf ("n=+1\n");
- OUT (expected);
- OUT (got);
+ MPC_OUT (expected);
+ MPC_OUT (got);
exit (1);
}
@@ -68,10 +68,10 @@ check_different_precisions(void)
if (mpc_cmp(got, expected) != 0)
{
printf ("Error for mpc_mul_i(z, z, n) for\n");
- OUT (z);
+ MPC_OUT (z);
printf ("n=-1\n");
- OUT (expected);
- OUT (got);
+ MPC_OUT (expected);
+ MPC_OUT (got);
exit (1);
}