Disable metadce tests to allow binaryen change to roll (#12397)

https://github.com/WebAssembly/binaryen/pull/3180
This commit is contained in:
Sam Clegg 2020-10-01 11:39:52 -07:00 коммит произвёл GitHub
Родитель 66d7b8c851
Коммит 5c4a9167f0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

3
tests/test_other.py поставляемый
Просмотреть файл

@ -6650,6 +6650,7 @@ int main() {
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 @@ int main() {
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 @@ int main() {
# 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