[asan] Add lit feature to indicate compiler_rt's shadow scale value

This will be used to mark tests that require a specific shadow scale.

Differential Revision: https://reviews.llvm.org/D39772

llvm-svn: 318469
This commit is contained in:
Walter Lee 2017-11-16 23:28:25 +00:00
parent 089082378f
commit 9af3b173c0
1 changed files with 5 additions and 0 deletions

View File

@ -320,3 +320,8 @@ elif config.android:
# because the test hangs or fails on one configuration and not the other.
if config.android or (config.target_arch not in ['arm', 'armhf', 'aarch64']):
config.available_features.add('stable-runtime')
if config.asan_shadow_scale:
config.available_features.add("shadow-scale-%s" % config.asan_shadow_scale)
else:
config.available_features.add("shadow-scale-3")