From 47355d3f41cf249f62aec13768cc98a59a3d32bf Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 1 Oct 2020 11:29:18 -0700 Subject: [PATCH] Disable metadce tests to allow binaryen change to roll https://github.com/WebAssembly/binaryen/pull/3180 --- tests/test_other.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_other.py b/tests/test_other.py index ff2062697d5af..0a2ad5bcda25f 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -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 @@ -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 @@ -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