UBSAN stable runtime more generic with arm* targets

llvm-svn: 219924
This commit is contained in:
Renato Golin 2014-10-16 12:43:10 +00:00
parent 1efc425551
commit 6d41f7ae22
1 changed files with 1 additions and 1 deletions

View File

@ -53,5 +53,5 @@ if config.host_os not in ['Linux', 'Darwin']:
# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL # Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL
# because the test hangs or fails on one configuration and not the other. # because the test hangs or fails on one configuration and not the other.
if config.target_arch != 'arm': if config.target_arch.startswith('arm') == False:
config.available_features.add('stable-runtime') config.available_features.add('stable-runtime')