diff --git a/tests/test_other.py b/tests/test_other.py index 49f72fe6eb70..b4ccc3afa169 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -8040,7 +8040,7 @@ def run(*args): 0, [], [], 8, 0, 0, 0) # noqa; totally empty! # we don't metadce with linkable code! other modules may want stuff run(['-O3', '-s', 'MAIN_MODULE=1'], - 1542, [], [], 226403, 30, 95, None) # noqa; don't compare the # of functions in a main module, which changes a lot + 1543, [], [], 226403, 30, 95, None) # noqa; don't compare the # of functions in a main module, which changes a lot # ensures runtime exports work, even with metadce def test_extra_runtime_exports(self): @@ -8090,7 +8090,7 @@ def test_legalize_js_ffi(self): assert not i_i64_i64, 'i64 not converted to i32 in imports' assert not i_f32_f32, 'f32 not converted to f64 in imports' assert e_i64_i32, 'i64 not converted to i32 in exports' - assert e_f32_f64, 'f32 not converted to f64 in exports' + assert not e_f32_f64, 'f32 not converted to f64 in exports' assert not e_i64_i64, 'i64 not converted to i64 in exports' else: assert not i_i64_i32, 'i64 converted to i32 in imports' diff --git a/tools/ports/binaryen.py b/tools/ports/binaryen.py index 53b1c99b6c1e..a928b5eb0eae 100644 --- a/tools/ports/binaryen.py +++ b/tools/ports/binaryen.py @@ -6,7 +6,7 @@ import os import logging -TAG = 'version_82' +TAG = 'version_83' def needed(settings, shared, ports):