File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -8949,15 +8949,10 @@ def test_override_js_execution_environment(self):
89498949 });
89508950 }
89518951''')
8952- # use SINGLE_FILE since we don't want to depend on loading a side .wasm file on the environment in this test;
8953- # with the wrong env we have very odd failures
8954- self.run_process([EMCC, 'main.c', '-sSINGLE_FILE'])
8952+ self.run_process([EMCC, 'main.c', '-sENVIRONMENT=node,shell'])
89558953 src = read_file('a.out.js')
8956- envs = ['web', 'worker', 'node', 'shell']
8957- for env in envs:
8954+ for env in ['web', 'worker', 'node', 'shell']:
89588955 for engine in config.JS_ENGINES:
8959- if engine == config.V8_ENGINE:
8960- continue # ban v8, weird failures
89618956 actual = 'NODE' if engine == config.NODE_JS_TEST else 'SHELL'
89628957 print(env, actual, engine)
89638958 module = {'ENVIRONMENT': env}
You can’t perform that action at this time.
0 commit comments