diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-24 16:14:35 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-03 15:31:02 -0700 |
commit | 190b20e6088000640788bc5c8d0a7e6fc95c1c2d (patch) | |
tree | c79a4810623ebf2420027871c46fd32aa5d339f5 /tests | |
parent | fac77c3ff04c2f228389fd3697239db263f62ab6 (diff) |
DISABLE_GL_EMULATION option
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 15de7756..2c06c02f 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10606,7 +10606,7 @@ f.close() self.assertContained('hello from lib', run_js(os.path.join(self.get_dir(), 'a.out.js'))) assert not os.path.exists('a.out') and not os.path.exists('a.exe'), 'Must not leave unneeded linker stubs' - def zzztest_static_link(self): + def test_static_link(self): open(os.path.join(self.get_dir(), 'main.cpp'), 'w').write(''' extern void printey(); int main() { @@ -10621,7 +10621,7 @@ f.close() } ''') Popen([PYTHON, EMCC, os.path.join(self.get_dir(), 'lib.cpp'), '-o', 'lib.js', '-s', 'SIDE_MODULE=1', '-O2']).communicate() - Popen([PYTHON, EMCC, os.path.join(self.get_dir(), 'main.cpp'), '-o', 'main.js', '-s', 'MAIN_MODULE=1', '-O2']).communicate() + Popen([PYTHON, EMCC, os.path.join(self.get_dir(), 'main.cpp'), '-o', 'main.js', '-s', 'MAIN_MODULE=1', '-O2', '-s', 'DISABLE_GL_EMULATION=1']).communicate() Popen([PYTHON, EMLINK, 'main.js', 'lib.js', 'together.js']) self.assertContained('hello from lib', run_js('together.js')) |