@@ -10530,7 +10530,7 @@ def compile(flags):
1053010530 compile(['-sMIN_SAFARI_VERSION=160000', '-mno-sign-ext'])
1053110531 verify_features_sec_linked('sign-ext', False)
1053210532 # Flag enabling overrides explicit browser version
10533- compile(['-sMIN_FIREFOX_VERSION=65 ', '-msign-ext'])
10533+ compile(['-sMIN_FIREFOX_VERSION=68 ', '-msign-ext'])
1053410534 verify_features_sec_linked('sign-ext', True)
1053510535 # Flag disabling overrides explicit version for bulk memory
1053610536 compile(['-sMIN_SAFARI_VERSION=150000', '-mno-bulk-memory'])
@@ -14382,8 +14382,8 @@ def test_min_browser_version(self):
1438214382 err = self.expect_fail([EMCC, test_file('hello_world.c'), '-Wno-transpile', '-Werror', '-sWASM_BIGINT', '-sMIN_SAFARI_VERSION=130000'])
1438314383 self.assertContained('emcc: error: MIN_SAFARI_VERSION=130000 is not compatible with WASM_BIGINT (MIN_SAFARI_VERSION=150000 or above required)', err)
1438414384
14385- err = self.expect_fail([EMCC, test_file('hello_world.c'), '-Wno-transpile', '-Werror', '-pthread', '-sMIN_FIREFOX_VERSION=65 '])
14386- self.assertContained('emcc: error: MIN_FIREFOX_VERSION=65 is not compatible with pthreads (MIN_FIREFOX_VERSION=79 or above required)', err)
14385+ err = self.expect_fail([EMCC, test_file('hello_world.c'), '-Wno-transpile', '-Werror', '-pthread', '-sMIN_FIREFOX_VERSION=68 '])
14386+ self.assertContained('emcc: error: MIN_FIREFOX_VERSION=68 is not compatible with pthreads (MIN_FIREFOX_VERSION=79 or above required)', err)
1438714387
1438814388 # Test that using two different ways to disable a target environment at the same time will not produce a warning.
1438914389 def test_double_disable_environment(self):
0 commit comments