Python Scipy测试问题-未分配要释放的指针

Python Scipy测试问题-未分配要释放的指针,python,scipy,osx-mountain-lion,nose,Python,Scipy,Osx Mountain Lion,Nose,通过从源代码编译,我在MacOSX MountainLion上安装了Numpy和Scipy numpy测试结果非常好。但scipy测试存在一个问题 In [1]: import scipy In [2]: scipy.test() Running unit tests for scipy NumPy version 1.6.2 NumPy is installed in /usr/local/lib/python2.7/site-packages/numpy SciPy version 0.1

通过从源代码编译,我在MacOSX MountainLion上安装了Numpy和Scipy

numpy测试结果非常好。但scipy测试存在一个问题

In [1]: import scipy

In [2]: scipy.test()
Running unit tests for scipy
NumPy version 1.6.2
NumPy is installed in /usr/local/lib/python2.7/site-packages/numpy
SciPy version 0.11.0
SciPy is installed in /usr/local/lib/python2.7/site-packages/scipy
Python version 2.7.3 (default, Dec  4 2012, 00:30:38) [GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))]
nose version 1.2.1
.....................................................................................................................................................................................   
F.FFPython(66098,0x7fff74ae5180) malloc: *** error for object 0x7fe9cb2e07b0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6
有人知道如何解决这个问题吗

多亏了pv,这似乎是一个bug

test_definition (test_basic.TestDoubleIFFT) ... FAIL
test_definition_real (test_basic.TestDoubleIFFT) ... ok
test_djbfft (test_basic.TestDoubleIFFT) ... FAIL
test_random_complex (test_basic.TestDoubleIFFT) ... FAIL
Python(66990,0x7fff74ae5180) malloc: *** error for object 0x7f9f53d8dec0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug

我对其余的测试很好奇。如果测试失败是唯一的问题,那就好了

如何跳过此失败的测试并继续其余的测试?

使用scipy.testfull运行,verbose=2,将输出存储到文件中,并提交错误报告:
但是,如果问题已知,请先尝试搜索

我对其余的测试很好奇,如果这个失败的测试是唯一的问题,那就好了。我如何跳过这个失败的测试并继续其余的测试?请看,大多数测试文件本身以及通过nosetests命令也可以运行-