---------- Forwarded message ----------
From: Gonzalo Tornaria <torna...@math.utexas.edu>
Date: Thu, Dec 31, 2009 at 6:10 PM
Subject: Re: [sage-release] sage-4.3
To: sage-rele...@googlegroups.com


I haven't seen these reported:

$ \time ./sage -tp 16 devel/sage
...
The following tests failed:

       sage -t  devel/sage/sage/symbolic/expression.pyx # 6 doctests failed
       sage -t  devel/sage/sage/numerical/optimize.py # 6 doctests failed
       sage -t  devel/sage/sage/interfaces/r.py # 3 doctests failed
----------------------------------------------------------------------
Total time for all tests: 458.2 seconds

(detailed  errors below)

This is a new machine with 2 * quad core xeon (nehalem) and plenty of
ram, running stable Debian 5.0 (lenny).
The compiler is gcc 4.3.2 (stable debian version).

I'm also getting ocasional errors (in random files) which claim:

"""
A mysterious error (perhaps a memory error?) occurred, which may have
crashed doctest.
"""

Is there any other explanation of this rather than a memory error? (dammit!)


Details:

-----------------------------

sage -t  devel/sage/sage/symbolic/expression.pyx
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/symbolic/expression.pyx",
line 6103:
   sage: f.find_maximum_on_interval(0,5)
Expected:
   (0.5610963381910451, 0.8603335890...)
Got:
   (0.5610963381910451, array([ 0.86033359]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/symbolic/expression.pyx",
line 6105:
   sage: f.find_maximum_on_interval(0,5, tol=0.1, maxfun=10)
Expected:
   (0.561090323458081..., 0.857926501456...)
Got:
   (0.56109032345808163, array([ 0.8579265]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/symbolic/expression.pyx",
line 6142:
   sage: f.find_minimum_on_interval(1, 5)
Expected:
   (-3.288371395590..., 3.4256184695...)
Got:
   (-3.2883713955908962, array([ 3.42561847]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/symbolic/expression.pyx",
line 6144:
   sage: f.find_minimum_on_interval(1, 5, tol=1e-3)
Expected:
   (-3.288371361890..., 3.4257507903...)
Got:
   (-3.288371361890984, array([ 3.42575079]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/symbolic/expression.pyx",
line 6146:
   sage: f.find_minimum_on_interval(1, 5, tol=1e-2, maxfun=10)
Expected:
   (-3.288370845983..., 3.4250840220...)
Got:
   (-3.2883708459837844, array([ 3.42508402]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/symbolic/expression.pyx",
line 6149:
   sage: f.find_minimum_on_interval(1, 15)
Expected:
   (-9.477294259479..., 9.5293344109...)
Got:
   (-9.4772942594797929, array([ 9.52933441]))
**********************************************************************
2 items had failures:
  2 of   5 in __main__.example_146
  4 of   8 in __main__.example_147
***Test Failed*** 6 failures.
For whitespace errors, see the file
/home/tornaria/.sage//tmp/.doctest_expression.py
        [40.2 s]

-----------------------------

sage -t  devel/sage/sage/numerical/optimize.py
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/numerical/optimize.py",
line 117:
   sage: find_maximum_on_interval(f, 0,5)
Expected:
   (0.561096338191..., 0.8603335890...)
Got:
   (array([ 0.56109634]), array([ 0.86033359]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/numerical/optimize.py",
line 119:
   sage: find_maximum_on_interval(f, 0,5, tol=0.1, maxfun=10)
Expected:
   (0.561090323458..., 0.857926501456...)
Got:
   (array([ 0.56109032]), array([ 0.8579265]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/numerical/optimize.py",
line 155:
   sage: find_minimum_on_interval(f, 1, 5)
Expected:
   (-3.28837139559..., 3.4256184695...)
Got:
   (array([-3.2883714]), array([ 3.42561847]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/numerical/optimize.py",
line 157:
   sage: find_minimum_on_interval(f, 1, 5, tol=1e-3)
Expected:
   (-3.28837136189098..., 3.42575079030572...)
Got:
   (array([-3.28837136]), array([ 3.42575079]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/numerical/optimize.py",
line 159:
   sage: find_minimum_on_interval(f, 1, 5, tol=1e-2, maxfun=10)
Expected:
   (-3.28837084598..., 3.4250840220...)
Got:
   (array([-3.28837085]), array([ 3.42508402]))
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/numerical/optimize.py",
line 162:
   sage: find_minimum_on_interval(f, 1, 15)
Expected:
   (-9.4772942594..., 9.5293344109...)
Got:
   (array([-9.47729426]), array([ 9.52933441]))
**********************************************************************
2 items had failures:
  2 of   5 in __main__.example_2
  4 of   8 in __main__.example_3
***Test Failed*** 6 failures.
For whitespace errors, see the file
/home/tornaria/.sage//tmp/.doctest_optimize.py
        [2.7 s]

-----------------------------

sage -t  devel/sage/sage/interfaces/r.py
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/interfaces/r.py",
line 666:
   sage: r.help('print.anova')
Expected:
   anova                 package:stats                 R Documentation
   ...
        'coefficients', 'effects', 'fitted.values', 'residuals',
        'summary', 'drop1', 'add1'.
Got:
   Error in 
print.help_files_with_topic("/scratch/tornaria/sage-4.3/local/lib/R//library/stats/help/anova")
:
     No text help for 'print.anova' is available:
   corresponding file is missing
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/interfaces/r.py",
line 1709:
   sage: print length._sage_doc_()
Expected:
   length                 package:base                 R Documentation
   ...
   <BLANKLINE>
Got:
   Error in 
print.help_files_with_topic("/scratch/tornaria/sage-4.3/local/lib/R//library/base/help/length")
:
     No text help for 'length' is available:
   corresponding file is missing
**********************************************************************
File "/scratch/tornaria/sage-4.3/devel/sage-main/sage/interfaces/r.py",
line 1782:
   sage: print length._sage_doc_()
Expected:
   length                 package:base                 R Documentation
   ...
   <BLANKLINE>
Got:
   Error in 
print.help_files_with_topic("/scratch/tornaria/sage-4.3/local/lib/R//library/base/help/length")
:
     No text help for 'length' is available:
   corresponding file is missing
**********************************************************************
3 items had failures:
  1 of   3 in __main__.example_23
  1 of   5 in __main__.example_68
  1 of   4 in __main__.example_73
***Test Failed*** 3 failures.
For whitespace errors, see the file /home/tornaria/.sage//tmp/.doctest_r.py
        [4.3 s]

-----------------------------

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to