summaryrefslogtreecommitdiff
path: root/tests/tfma.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-14 13:49:45 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2011-01-14 13:49:45 +0000
commitb2d5faba265b5cff49286bca59233acbe5b38a9f (patch)
tree020455750d3e20a909376c2087886805f6eb0acb /tests/tfma.c
parentae3c1baa7a01a99a98a6115466cbced522127c83 (diff)
downloadmpc-b2d5faba265b5cff49286bca59233acbe5b38a9f.tar.gz
forgot to add some files
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@870 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tfma.c')
-rw-r--r--tests/tfma.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/tfma.c b/tests/tfma.c
new file mode 100644
index 0000000..f1be319
--- /dev/null
+++ b/tests/tfma.c
@@ -0,0 +1,37 @@
+/* test file for mpc_fma.
+
+Copyright (C) 2011 Paul Zimmermann
+
+This file is part of the MPC Library.
+
+The MPC Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
+option) any later version.
+
+The MPC Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the MPC Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include "mpc-tests.h"
+
+int
+main (void)
+{
+ DECL_FUNC (CCCC, f, mpc_fma);
+
+ test_start ();
+
+ data_check (f, "fma.dat");
+ tgeneric (f, 2, 1024, 1, 256);
+
+ test_end ();
+
+ return 0;
+}