From c82ef3f139ab2e86edd441f793e6d86732f51fff Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 18 May 2026 15:05:53 -0700 Subject: [PATCH 1/3] fix --- test/test_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_core.py b/test/test_core.py index 83c269119001f..19af57914af57 100644 --- a/test/test_core.py +++ b/test/test_core.py @@ -901,7 +901,7 @@ def test_math_fmodf(self): self.do_run_in_out_file_test('math/fmodf.c') def test_rounding(self): - self.do_core_test('test_rounding.c') + self.do_core_test('test_rounding.c', cflags=['-Wno-fenv-access']) def test_stack(self): self.set_setting('INLINING_LIMIT') From f51a95acf51abbae28ea7970e61e1639777a8740 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 18 May 2026 15:46:34 -0700 Subject: [PATCH 2/3] skip instead --- test/test_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_core.py b/test/test_core.py index 19af57914af57..1818f4da0b87b 100644 --- a/test/test_core.py +++ b/test/test_core.py @@ -901,6 +901,7 @@ def test_math_fmodf(self): self.do_run_in_out_file_test('math/fmodf.c') def test_rounding(self): + self.skipTest('https://github.com/emscripten-core/emscripten/pull/26975') self.do_core_test('test_rounding.c', cflags=['-Wno-fenv-access']) def test_stack(self): From 81482fa0d53378371c7827b25692c0b71aa12ff4 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 18 May 2026 16:23:05 -0700 Subject: [PATCH 3/3] use unknown-warning --- test/test_core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_core.py b/test/test_core.py index 1818f4da0b87b..a98b222f15520 100644 --- a/test/test_core.py +++ b/test/test_core.py @@ -901,8 +901,7 @@ def test_math_fmodf(self): self.do_run_in_out_file_test('math/fmodf.c') def test_rounding(self): - self.skipTest('https://github.com/emscripten-core/emscripten/pull/26975') - self.do_core_test('test_rounding.c', cflags=['-Wno-fenv-access']) + self.do_core_test('test_rounding.c', cflags=['-Wno-fenv-access', '-Wno-unknown-warning-option']) def test_stack(self): self.set_setting('INLINING_LIMIT')