Merge pull request #121 from robertodr/master
Added module for Boost detection and automatic build-up
This commit is contained in:
24
test/test.py
24
test/test.py
@ -234,5 +234,25 @@ def test_python_libs():
|
||||
|
||||
|
||||
def test_python_libs_custom():
|
||||
setup = 'python setup.py --cxx=g++ --python=%s' % sys.executable
|
||||
configure_build_and_exe('python_libs_custom', setup)
|
||||
python_executable = sys.executable
|
||||
configure_build_and_exe('python_libs_custom', 'python setup.py --cxx=g++ --python={}'.format(python_executable))
|
||||
|
||||
|
||||
@skip_on_windows
|
||||
def test_boost_header_only():
|
||||
configure_build_and_exe('boost_header_only', 'python setup.py --cxx=g++')
|
||||
|
||||
|
||||
@skip_on_windows
|
||||
def test_boost_libs():
|
||||
configure_build_and_exe('boost_libs', 'python setup.py --cxx=g++')
|
||||
|
||||
|
||||
@skip_on_windows
|
||||
def test_boost_mpi_libs():
|
||||
configure_build_and_exe('boost_mpi_libs', 'python setup.py --cxx=g++ --mpi')
|
||||
|
||||
|
||||
@skip_on_windows
|
||||
def test_boost_python_libs():
|
||||
configure_build_and_exe('boost_python_libs', 'python setup.py --cxx=g++')
|
||||
|
Reference in New Issue
Block a user