diff options
author | Anthony Liot <anthony.liot@gmail.com> | 2012-12-28 09:36:13 +0100 |
---|---|---|
committer | Anthony Liot <anthony.liot@gmail.com> | 2012-12-28 09:36:13 +0100 |
commit | 68d5248ff7152368c95a861560ecbb5c734ab1d7 (patch) | |
tree | ee051de33cb48c25501f8e217e1b9120cff6e509 /tests/runner.py | |
parent | af4716bb662651c26fdbe5ca1fb1e6a4e8384301 (diff) |
Add comment,test,authors. Change indentation and comma space
Modify the indentation
Add Author
Add comment
Add test inside runner.py
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 775225c6..f04413cf 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10005,6 +10005,10 @@ elif 'browser' in str(sys.argv): 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') + def test_emscripten_async_wget2(self): + Popen(['python', EMCC, path_from_root('tests', 'http.cpp'), '-o', 'http.html', '-I' + path_from_root('tests')]).communicate() + self.btest('http.cpp', expected='0', args=['-I' + path_from_root('tests')]) + pids_to_clean = [] def clean_pids(self): import signal, errno |