summaryrefslogtreecommitdiff
path: root/tests/tlog10.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2001-12-06 17:25:46 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2001-12-06 17:25:46 +0000
commitff27bdf70ba21c937b22e6e262552c25dba951db (patch)
tree018c462068ea0ba348060c564a6fedcbf0f72ab2 /tests/tlog10.c
parent0fb01bc484b0b984de11dadaa5f4a12fb965c670 (diff)
downloadmpfr-ff27bdf70ba21c937b22e6e262552c25dba951db.tar.gz
Files renamed (log in base 2 and 10).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1632 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tlog10.c')
-rw-r--r--tests/tlog10.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/tlog10.c b/tests/tlog10.c
new file mode 100644
index 000000000..9e5fd769d
--- /dev/null
+++ b/tests/tlog10.c
@@ -0,0 +1,37 @@
+/* Test file for mpfr_log10.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tsinh.c.
+
+This file is part of the MPFR Library.
+
+The MPFR 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 MPFR 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 MPFR 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 <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_log10
+#include "tgeneric.c"
+
+int
+main (int argc, char *argv[])
+{
+ test_generic (2, 100, 100);
+
+ return 0;
+}