summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-10-07 07:41:55 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-10-07 07:41:55 +0000
commitd0c2a5ad3713d2edaa1adb3ca65881e50f50e3c7 (patch)
tree70af988e59e58d6cc00e2be6ae33e37ddd80db23 /tests
parent4a0088e0cb7d45db2b76db845f59ca84b0581491 (diff)
downloadmpfr-d0c2a5ad3713d2edaa1adb3ca65881e50f50e3c7.tar.gz
reduced test time
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2483 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests')
-rw-r--r--tests/tsin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tsin.c b/tests/tsin.c
index abf633b72..35a47bc64 100644
--- a/tests/tsin.c
+++ b/tests/tsin.c
@@ -60,7 +60,7 @@ test_sign (void)
mpfr_init (x);
mpfr_init2 (y, 2);
for (p = 8; p <= 128; p++)
- for (k = 2; k <= 22; k += 2)
+ for (k = 2; k <= 6; k += 2)
{
mpfr_set_prec (x, p);
mpfr_mul_ui (x, pid, k, GMP_RNDD);
@@ -171,7 +171,7 @@ main (int argc, char *argv[])
mpfr_clear (x);
- test_generic (2, 100, 80);
+ test_generic (2, 100, 20);
test_sign ();
tests_end_mpfr ();