restore test

This commit is contained in:
Radovan Bast 2015-05-30 20:19:06 +02:00
parent ec90c0ce38
commit 0bf578eeba
4 changed files with 1 additions and 4 deletions

View File

@ -5,6 +5,3 @@ name: example
source: https://github.com/scisoft/autocmake/raw/master/modules/UseCXX.cmake
docopt: --cxx=<CXX> C++ compiler [default: g++].
export: 'CXX=%s' % arguments['--cxx']
[custom]
source: custom/custom.cmake

View File

@ -22,5 +22,5 @@ def test_cxx():
stdout, stderr = exe('python setup.py --cxx=g++')
os.chdir(os.path.join(HERE, 'cxx', 'build'))
stdout, stderr = exe('make')
stdout, stderr = exe('./example')
stdout, stderr = exe('./bin/example')
assert 'Hello World!' in stdout