@@ -429,7 +429,6 @@ def decorated(self, textdecoder, *args, **kwargs):
429429
430430no_safe_heap = make_no_decorator_for_setting ('SAFE_HEAP' )
431431no_strict = make_no_decorator_for_setting ('STRICT' )
432- no_strict_js = make_no_decorator_for_setting ('STRICT_JS' )
433432no_big_endian = make_no_decorator_for_setting ('SUPPORT_BIG_ENDIAN' )
434433no_omit_asm_module_exports = make_no_decorator_for_setting ('DECLARE_ASM_MODULE_EXPORTS=0' )
435434no_js_math = make_no_decorator_for_setting ('JS_MATH' )
@@ -9714,7 +9713,6 @@ def test_esm_integration(self):
97149713 self .assertFileContents (test_file ('core/test_esm_integration.expected.mjs' ), read_file ('hello_world.mjs' ))
97159714
97169715 @no_omit_asm_module_exports ('MODULARIZE is not compatible with DECLARE_ASM_MODULE_EXPORTS=0' )
9717- @no_strict_js ('EXPORT_ES6 is not compatible with STRICT_JS' )
97189716 def test_modularize_instance_hello (self ):
97199717 self .do_core_test ('test_hello_world.c' , cflags = ['-sMODULARIZE=instance' , '-Wno-experimental' ])
97209718
@@ -9723,7 +9721,6 @@ def test_modularize_instance_hello(self):
97239721 'pthreads' : (['-pthread' ],),
97249722 })
97259723 @no_omit_asm_module_exports ('MODULARIZE is not compatible with DECLARE_ASM_MODULE_EXPORTS=0' )
9726- @no_strict_js ('EXPORT_ES6 is not compatible with STRICT_JS' )
97279724 def test_modularize_instance (self , args ):
97289725 if args :
97299726 self .require_pthreads ()
@@ -9759,7 +9756,6 @@ def test_modularize_instance(self, args):
97599756
97609757 @no_omit_asm_module_exports ('MODULARIZE is not compatible with DECLARE_ASM_MODULE_EXPORTS=0' )
97619758 @no_4gb ('EMBIND_AOT can\' t lower 4gb' )
9762- @no_strict_js ('EXPORT_ES6 is not compatible with STRICT_JS' )
97639759 def test_modularize_instance_embind (self ):
97649760 self .run_process ([EMXX , test_file ('modularize_instance_embind.cpp' ),
97659761 '-sMODULARIZE=instance' ,
@@ -9940,7 +9936,6 @@ def setUp(self):
99409936
99419937# Add DEFAULT_TO_CXX=0
99429938strict = make_run ('strict' , cflags = [], settings = {'STRICT' : 1 })
9943- strict_js = make_run ('strict_js' , cflags = [], settings = {'STRICT_JS' : 1 })
99449939
99459940ubsan = make_run ('ubsan' , cflags = ['-fsanitize=undefined' , '--profiling' ])
99469941lsan = make_run ('lsan' , cflags = ['-fsanitize=leak' , '--profiling' ], settings = {'ALLOW_MEMORY_GROWTH' : 1 })
0 commit comments