Skip to content

Commit eeeb51e

Browse files
authored
Remove legacy test_emcc_asm_v_wasm. NFC (#24754)
This was added back in #6419, but doesn't seem do actually test anything useful anymore.
1 parent 962d9e7 commit eeeb51e

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

test/test_other.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -728,23 +728,6 @@ def test_js_transform(self):
728728
self.assertContained('disabling source maps because a js transform is being done', err)
729729
self.assertIn('transformed!', read_file('a.out.js'))
730730

731-
@also_with_wasm2js
732-
@parameterized({
733-
'': ([],),
734-
'O1': (['-O1'],),
735-
'O2': (['-O2'],),
736-
'O3': (['-O3'],),
737-
})
738-
def test_emcc_asm_v_wasm(self, opts):
739-
self.run_process([EMCC, test_file('hello_world.c'), '-sENVIRONMENT=node,shell'] + opts + self.get_cflags())
740-
self.assertExists('a.out.js')
741-
if self.is_wasm():
742-
self.assertExists('a.out.wasm')
743-
for engine in config.JS_ENGINES:
744-
print(' engine', engine)
745-
out = self.run_js('a.out.js', engine=engine)
746-
self.assertContained('hello, world!', out)
747-
748731
@crossplatform
749732
def test_emcc_cflags(self):
750733
output = self.run_process([EMCC, '--cflags'], stdout=PIPE)

0 commit comments

Comments
 (0)