Merge pull request #155 from miroi/patch-7

allow python_interpreter test on Windows
This commit is contained in:
Radovan Bast 2015-10-15 17:16:22 +02:00
commit bd3a140e5b

View File

@ -157,12 +157,10 @@ def test_cxx_accelerate():
configure_build_and_exe('cxx_accelerate', 'python setup --cxx=g++ --accelerate') configure_build_and_exe('cxx_accelerate', 'python setup --cxx=g++ --accelerate')
@skip_on_windows
def test_python_interpreter(): def test_python_interpreter():
configure_build_and_exe('python_interpreter', 'python setup --cxx=g++') configure_build_and_exe('python_interpreter', 'python setup --cxx=g++')
@skip_on_windows
def test_python_interpreter_custom(): def test_python_interpreter_custom():
setup = 'python setup --cxx=g++ --python=%s' % sys.executable setup = 'python setup --cxx=g++ --python=%s' % sys.executable
configure_build_and_exe('python_interpreter_custom', setup) configure_build_and_exe('python_interpreter_custom', setup)