The buildbot test command should be using sys.exit to return the success flag from the test run, but it's not. The FreeBSD's test command is:
/usr/local/bin/python2.4 -c 'import numpy,sys;sys.exit(not numpy.test(level=9999,verbosity=9999).wasSuccessful())' while the OSX bot's command is python -c 'import sys; sys.path=["numpy-install/lib/python2.5/site-packages"]+sys.path;import numpy;numpy.test(doctests=True)' On Wed, Jul 2, 2008 at 4:03 PM, Charles R Harris <[EMAIL PROTECTED]> wrote: > > > On Wed, Jul 2, 2008 at 1:26 PM, Pierre GM <[EMAIL PROTECTED]> wrote: >> >> On Wednesday 02 July 2008 15:13:37 Nils Wagner wrote: >> > I can reproduce the test failures on my old 32-bit laptop. >> >> As you should. My bad, I messed up on my last commit. I'll fix that later >> this >> afternoon. >> ___ > > Hmmm. So I check the Mac output and it's almost all test failures, yet the > test shows up as a success. Something's not quite right. > > Chuck > > > > _______________________________________________ > Numpy-discussion mailing list > [email protected] > http://projects.scipy.org/mailman/listinfo/numpy-discussion > > _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
