summaryrefslogtreecommitdiff
path: root/tests/tcbrt.c
diff options
context:
space:
mode:
authorryde <ryde@280ebfd0-de03-0410-8827-d642c229c3f4>2003-01-22 22:39:38 +0000
committerryde <ryde@280ebfd0-de03-0410-8827-d642c229c3f4>2003-01-22 22:39:38 +0000
commit2f2a36798bfc7fccc6c214f6d26f3e00e99e54a9 (patch)
tree8deb9f2cd80275865e07da90fc3c13cbab3173e7 /tests/tcbrt.c
parent31d4f5dc0c9c67c4959e2c84f874c6b815448725 (diff)
downloadmpfr-2f2a36798bfc7fccc6c214f6d26f3e00e99e54a9.tar.gz
Use tests_start_mpfr / tests_end_mpfr.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2212 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tcbrt.c')
-rw-r--r--tests/tcbrt.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/tcbrt.c b/tests/tcbrt.c
index ed0b005bd..d30e31e13 100644
--- a/tests/tcbrt.c
+++ b/tests/tcbrt.c
@@ -1,6 +1,6 @@
/* Test file for mpfr_cbrt.
-Copyright 2002 Free Software Foundation, Inc.
+Copyright 2002, 2003 Free Software Foundation, Inc.
This file is part of the MPFR Library.
@@ -31,6 +31,8 @@ main (void)
mp_rnd_t r;
mp_prec_t p;
+ tests_start_mpfr ();
+
mpfr_init (x);
mpfr_set_prec (x, 53);
@@ -92,5 +94,6 @@ main (void)
mpfr_clear (x);
+ tests_end_mpfr ();
return 0;
}