Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,8 @@ 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.skipTest('https://github.com/emscripten-core/emscripten/pull/26975')
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use -Wno-unknown-warning-option for this :)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh nice, thanks. Done. Maybe some day I'll get this PR right...

self.do_core_test('test_rounding.c', cflags=['-Wno-fenv-access'])

def test_stack(self):
self.set_setting('INLINING_LIMIT')
Expand Down
Loading