Skip to content

Commit 62edd26

Browse files
committed
Remove unnecessary test
1 parent eb4bbbd commit 62edd26

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

test/test_other.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1702,18 +1702,6 @@ def test_minimal_runtime_errors(self):
17021702
expected = 'emcc: error: MINIMAL_RUNTIME is not compatible with --preload-file'
17031703
self.assert_fail([EMCC, test_file('hello_world.c'), '-sMINIMAL_RUNTIME', '--preload-file', 'foo'], expected)
17041704

1705-
def test_minimal_runtime_esm_streaming_instantiation(self):
1706-
self.run_process([EMCC, '-o', 'test.mjs',
1707-
'-sMINIMAL_RUNTIME',
1708-
'-sMINIMAL_RUNTIME_STREAMING_WASM_INSTANTIATION',
1709-
'-sEXPORT_ES6',
1710-
'-sENVIRONMENT=web',
1711-
test_file('hello_world.c')])
1712-
1713-
src = read_file('test.mjs')
1714-
# Verify that the generated code uses import.meta.url for the wasm URL
1715-
self.assertContained("new URL('test.wasm', import.meta.url)", src)
1716-
17171705
def test_export_all_and_exported_functions(self):
17181706
# EXPORT_ALL should not export library functions by default.
17191707
# This means that to export library function you also need to explicitly

0 commit comments

Comments
 (0)