summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-08-08 15:11:15 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-08-08 15:11:15 +0000
commit99619cb6c350eb23d2423ea46e8ef59a24446ff3 (patch)
treedc2824c49b8f7b6caa9a7984cf8d8d2b0013b5ab
parent0bce80e81581574cfc8493820f2a9bffa5ffa11a (diff)
downloadmpfr-99619cb6c350eb23d2423ea46e8ef59a24446ff3.tar.gz
Added data_check calls to texpm1, tlog1p and tlog2.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4727 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--tests/texpm1.c2
-rw-r--r--tests/tlog1p.c2
-rw-r--r--tests/tlog2.c2
3 files changed, 6 insertions, 0 deletions
diff --git a/tests/texpm1.c b/tests/texpm1.c
index 1dbefcdb6..e1274a35a 100644
--- a/tests/texpm1.c
+++ b/tests/texpm1.c
@@ -162,6 +162,8 @@ main (int argc, char *argv[])
test_generic (2, 100, 100);
+ data_check ("data/expm1", mpfr_expm1, "mpfr_expm1");
+
tests_end_mpfr ();
return 0;
}
diff --git a/tests/tlog1p.c b/tests/tlog1p.c
index bb0cf040c..b6d0b6252 100644
--- a/tests/tlog1p.c
+++ b/tests/tlog1p.c
@@ -126,6 +126,8 @@ main (int argc, char *argv[])
test_generic (2, 100, 50);
+ data_check ("data/log1p", mpfr_log1p, "mpfr_log1p");
+
tests_end_mpfr ();
return 0;
}
diff --git a/tests/tlog2.c b/tests/tlog2.c
index 0f8f90a8c..ec323edf1 100644
--- a/tests/tlog2.c
+++ b/tests/tlog2.c
@@ -76,6 +76,8 @@ main (int argc, char *argv[])
test_generic (2, 100, 30);
+ data_check ("data/log2", mpfr_log2, "mpfr_log2");
+
tests_end_mpfr ();
return 0;
}