forked from OSchip/llvm-project
dotest: Mark more android targets as chatty
New android ndk linker started adding more flags to the produced binaries, which causes older dynamic linkers display warnings to stderr about unsupported flags. This interferes with our stderr tests. Extend the hasChattyStderr function to catch these targets as well. llvm-svn: 319028
This commit is contained in:
parent
c723f65709
commit
daa3c97e5a
|
@ -174,6 +174,6 @@ def createPlatformContext():
|
|||
def hasChattyStderr(test_case):
|
||||
"""Some targets produce garbage on the standard error output. This utility function
|
||||
determines whether the tests can be strict about the expected stderr contents."""
|
||||
if match_android_device(test_case.getArchitecture(), ['aarch64'], [22]):
|
||||
if match_android_device(test_case.getArchitecture(), ['aarch64'], range(22, 25+1)):
|
||||
return True # The dynamic linker on the device will complain about unknown DT entries
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue