@@ -10530,7 +10530,7 @@ def compile(flags):
10530
10530
compile(['-sMIN_SAFARI_VERSION=160000', '-mno-sign-ext'])
10531
10531
verify_features_sec_linked('sign-ext', False)
10532
10532
# Flag enabling overrides explicit browser version
10533
- compile(['-sMIN_FIREFOX_VERSION=65 ', '-msign-ext'])
10533
+ compile(['-sMIN_FIREFOX_VERSION=68 ', '-msign-ext'])
10534
10534
verify_features_sec_linked('sign-ext', True)
10535
10535
# Flag disabling overrides explicit version for bulk memory
10536
10536
compile(['-sMIN_SAFARI_VERSION=150000', '-mno-bulk-memory'])
@@ -14382,8 +14382,8 @@ def test_min_browser_version(self):
14382
14382
err = self.expect_fail([EMCC, test_file('hello_world.c'), '-Wno-transpile', '-Werror', '-sWASM_BIGINT', '-sMIN_SAFARI_VERSION=130000'])
14383
14383
self.assertContained('emcc: error: MIN_SAFARI_VERSION=130000 is not compatible with WASM_BIGINT (MIN_SAFARI_VERSION=150000 or above required)', err)
14384
14384
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)
14387
14387
14388
14388
# Test that using two different ways to disable a target environment at the same time will not produce a warning.
14389
14389
def test_double_disable_environment(self):
0 commit comments