module files are parsed for configuration by default

This commit is contained in:
Radovan Bast
2015-07-28 12:22:11 +02:00
parent 2e07af6017
commit faada401f4
26 changed files with 74 additions and 122 deletions

View File

@ -107,15 +107,15 @@ def configure_build_and_exe(name, setup_command):
# ------------------------------------------------------------------------------
def test_cxx():
stdout, stderr = configure_build_and_exe('cxx', 'python setup.py --cxx=g++')
def test_cxx_custom():
stdout, stderr = configure_build_and_exe('cxx_custom', 'python setup.py --cxx=g++')
assert 'Hello World!' in stdout
# ------------------------------------------------------------------------------
def test_cxx_auto():
stdout, stderr = configure_build_and_exe('cxx_auto', 'python setup.py --cxx=g++')
def test_cxx():
stdout, stderr = configure_build_and_exe('cxx', 'python setup.py --cxx=g++')
assert 'Hello World!' in stdout
# ------------------------------------------------------------------------------