Testing the windows installers

On an 8 years old Windows 2000 with Intel processor (which ?) no sse,
installed numpy-1/1/0rc1-nosse.exe
  * with Python 2.4.3 (no ctypes)
    - numpy.test(): 1001 test OK, no errors or failures
    - numpy.test(): 1271 tests, errors=12, failures=1
    no crash, some previous numpy crashed python
 * with Python 2.5.1
     - numpy.test(): 1004 test OK, no errors or failures
    - numpy.test(): 1277 tests, errors=12, failures=1

On Windows XP with Intel Pentium M on notebook with SSE2, installed
numpy-1.1.0rc1-sse2.exe

{{{
>>> import numpy
>>> numpy.test()
Numpy is installed in C:\Programs\Python25\lib\site-packages\numpy
Numpy version 1.1.0rc1
Python version 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310
32 bit (Int
el)]
...
Ran 1004 tests in 1.469s

OK
<unittest._TextTestResult run=1004 errors=0 failures=0>
}}}

running all tests:
{{{
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.test(all=True)
Numpy is installed in C:\Programs\Python25\lib\site-packages\numpy
Numpy version 1.1.0rc1
Python version 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310
32 bit (Int
el)]
...
Ran 1277 tests in 5.890s

FAILED (failures=1, errors=12)
<unittest._TextTestResult run=1277 errors=12 failures=1>
}}}

if I run numpy.test() or numpy.test(level=1) again, it does not go
back to the original smaller number (1004) of tests,
instead it still picks up some of the tests with errors
{{{
>>> numpy.test(level=1)
Numpy is installed in C:\Programs\Python25\lib\site-packages\numpy
Numpy version 1.1.0rc1
Python version 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310
32 bit (Int
el)]
....
Ran 1021 tests in 1.500s

FAILED (errors=10)
<unittest._TextTestResult run=1021 errors=10 failures=0>
}}}

most errors are similar to (as in an open ticket)
  File "C:\Programs\Python25\Lib\site-packages\numpy\ma\tests
\test_mrecords.py",
 line 142, in test_set_mask
    assert_equal(mbase._fieldmask.tolist(),
RuntimeError: array_item not returning smaller-dimensional array

So, installer works well on these two windows computers

Josef
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to