diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-10-22 16:26:30 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-10-22 16:26:30 -0700 |
commit | 97f9f26f4bebc8db98608df6e7bcf45322ee189b (patch) | |
tree | 2ff62b9b5e3e4c4d97a97caa17ba5ccc77eec294 /tests/runner.py | |
parent | c11c08094b855e8d6d00d84cbea0f4bf2b18ff72 (diff) |
handle no-data worker api calls, and more tests
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index e5b8d13a..b0f4f507 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9119,7 +9119,7 @@ elif 'browser' in str(sys.argv): self.btest('worker_api_main.cpp', expected='566') def test_worker_api_2(self): - Popen(['python', EMCC, path_from_root('tests', 'worker_api_2_worker.cpp'), '-o', 'worker.js', '-s', 'BUILD_AS_WORKER=1', '-O2', '--minify', '0', '-s', 'EXPORTED_FUNCTIONS=["_one", "_two"]']).communicate() + Popen(['python', EMCC, path_from_root('tests', 'worker_api_2_worker.cpp'), '-o', 'worker.js', '-s', 'BUILD_AS_WORKER=1', '-O2', '--minify', '0', '-s', 'EXPORTED_FUNCTIONS=["_one", "_two", "_three", "_four"]']).communicate() self.btest('worker_api_2_main.cpp', args=['-O2', '--minify', '0'], expected='11') pids_to_clean = [] |