~ubuntu-branches/ubuntu/lucid/python-scipy/lucid

« back to all changes in this revision

Viewing changes to Lib/linalg/tests/test_lapack.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-07 14:12:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070107141212-mm0ebkh5b37hcpzn
* Remove build dependency on python-numpy-dev.
* python-scipy: Depend on python-numpy instead of python-numpy-dev.
* Package builds on other archs than i386. Closes: #402783.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
"""
14
14
 
15
15
import sys
16
 
from scipy_test.testing import *
17
 
from scipy_base import ones
 
16
from numpy.testing import *
 
17
from numpy import ones
18
18
set_package_path()
19
19
from linalg import flapack
20
20
from linalg import clapack
21
 
del sys.path[0]
 
21
restore_path()
22
22
 
23
23
class test_flapack_simple(ScipyTestCase):
24
24
 
71
71
-----------
72
72
See scipy/INSTALL.txt for troubleshooting.
73
73
Notes:
74
 
* If atlas library is not found by scipy/system_info.py,
 
74
* If atlas library is not found by numpy/distutils/system_info.py,
75
75
  then scipy uses flapack instead of clapack.
76
76
****************************************************************
77
77
"""
78
78
 
79
79
if __name__ == "__main__":
80
 
    ScipyTest('linalg.lapack').run()
 
80
    ScipyTest().run()