Don't rely on LLVM's -debug flag in tests (#13390)

It's compiled away in release/non-asserts mode, so the invocation fails
with an unknown argument.
This commit is contained in:
Derek Schuff 2021-02-01 17:54:57 -08:00 коммит произвёл GitHub
Родитель cdd17b1e87
Коммит cc08b2b299
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -9085,7 +9085,7 @@ Module.arguments has been replaced with plain arguments_ (the initial value can
self.assertContained('warning: ignoring unsupported linker flag: `-rpath-link`', out)
out = self.run_process([EMCC, path_from_root('tests', 'hello_world.cpp'),
'-Wl,--no-check-features,-mllvm,-debug'], stderr=PIPE).stderr
'-Wl,--no-check-features,-mllvm,--data-sections'], stderr=PIPE).stderr
self.assertNotContained('warning: ignoring unsupported linker flag', out)
out = self.run_process([EMCC, path_from_root('tests', 'hello_world.cpp'), '-Wl,-allow-shlib-undefined'], stderr=PIPE).stderr