diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-02-01 23:13:17 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-02-01 23:13:17 +0200 |
commit | ff8c8fd1ba0ab0d49029b09f0c083cf47554da56 (patch) | |
tree | add32cb59563046703d1d1824217807e2e2a998b /tests/runner.py | |
parent | 9dd7e94ecd16a6b4200a276880f378c3e155c212 (diff) |
Add a unit test that checks that user is able to specify a custom -std= flag on the command line.
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 43a14e7f..c67b4f24 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -8412,6 +8412,12 @@ f.close() process.communicate() assert process.returncode is 0, 'By default, emscripten should build using -std=c++03!' + def test_cxx11(self): + for compiler in [EMCC, EMXX]: + process = Popen([PYTHON, compiler, '-std=c++11', path_from_root('tests', 'hello_cxx11.cpp')], stdout=PIPE, stderr=PIPE) + process.communicate() + assert process.returncode is 0, 'User should be able to specify custom -std= on the command line!' + def test_Os(self): for opt in ['s', '0']: output = Popen([PYTHON, EMCC, path_from_root('tests', 'hello_world.c'), '-O' + opt], stdout=PIPE, stderr=PIPE).communicate() |