diff options
-rwxr-xr-x | tests/runner.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py index 5a3c42f5..f824656e 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -238,10 +238,7 @@ process(sys.argv[1]) os.remove(f + '.o') except: pass - compiler_flags = ['-emit-llvm'] - if not f.endswith('.c'): - compiler_flags = compiler_flags + ['-std=c++03'] - args = [PYTHON, EMCC] + compiler_flags + COMPILER_OPTS + Building.COMPILER_TEST_OPTS + \ + args = [PYTHON, EMCC] + Building.COMPILER_TEST_OPTS + \ ['-I', dirname, '-I', os.path.join(dirname, 'include')] + \ map(lambda include: '-I' + include, includes) + \ ['-c', f, '-o', f + '.o'] |