@@ -3242,11 +3242,11 @@ def test_embind_asyncify(self):
3242
3242
''')
3243
3243
self.do_runf('main.cpp', 'done', cflags=['-lembind', '-sASYNCIFY', '--post-js', 'post.js'])
3244
3244
3245
+ @also_with_wasm64
3245
3246
@parameterized({
3246
- '': [['-sDYNAMIC_EXECUTION=1']],
3247
- 'no_dynamic': [['-sDYNAMIC_EXECUTION=0']],
3248
- 'dyncall': [['-sALLOW_MEMORY_GROWTH', '-sMAXIMUM_MEMORY=4GB']],
3249
- 'wasm64': (['-sMEMORY64'],),
3247
+ '': (['-sDYNAMIC_EXECUTION=1'],),
3248
+ 'no_dynamic': (['-sDYNAMIC_EXECUTION=0'],),
3249
+ 'dyncall': (['-sALLOW_MEMORY_GROWTH', '-sMAXIMUM_MEMORY=4GB'],),
3250
3250
})
3251
3251
@requires_jspi
3252
3252
def test_embind_jspi(self, args):
@@ -3500,8 +3500,8 @@ def test_jspi_bad_library_function(self):
3500
3500
foo();
3501
3501
}
3502
3502
''')
3503
- err = self.expect_fail([EMCC, 'main.c', '-o', 'out.js', '-sJSPI', '--js-library=lib.js', '-Wno-experimental', ])
3504
- self.assertContained('error: foo is marked with the __async decorator but is not an async JS function.', err)
3503
+ err = self.expect_fail([EMCC, 'main.c', '-o', 'out.js', '-sJSPI', '--js-library=lib.js', '-Wno-experimental'])
3504
+ self.assertContained('error: \' foo\' is marked with the __async decorator but is not an async JS function.', err)
3505
3505
3506
3506
@requires_dev_dependency('typescript')
3507
3507
@parameterized({
0 commit comments