Skip to content
Merged
Changes from all 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: 3 additions & 0 deletions tests/test_other.py
Original file line number Diff line number Diff line change
Expand Up @@ -6650,6 +6650,7 @@ def strip_numeric_suffixes(funcname):
data = '\n'.join(funcs) + '\n'
self.assertFileContents(filename, data)

@disabled("disabled to allow https://github.com/WebAssembly/binaryen/pull/3180 to roll")
@parameterized({
'O0': ([], [], ['waka'], 743), # noqa
'O1': (['-O1'], [], ['waka'], 330), # noqa
Expand All @@ -6663,6 +6664,7 @@ def strip_numeric_suffixes(funcname):
def test_metadce_minimal(self, *args):
self.run_metadce_test('minimal.c', *args)

@disabled("disabled to allow https://github.com/WebAssembly/binaryen/pull/3180 to roll")
@parameterized({
'noexcept': (['-O2'], [], ['waka'], 127740), # noqa
# exceptions increases code size significantly
Expand All @@ -6677,6 +6679,7 @@ def test_metadce_cxx(self, *args):
# lead to different inlining decisions which add or remove a function
self.run_metadce_test('hello_libcxx.cpp', *args, check_funcs=False)

@disabled("disabled to allow https://github.com/WebAssembly/binaryen/pull/3180 to roll")
@parameterized({
'O0': ([], [], ['waka'], 12726), # noqa
'O1': (['-O1'], [], ['waka'], 3511), # noqa
Expand Down