[test][libcxx] Use own feature for HWAsan

This commit is contained in:
Vitaly Buka 2022-08-15 21:24:28 -07:00
parent 06d16eb9e6
commit e6933044a7
1 changed files with 1 additions and 2 deletions

View File

@ -147,8 +147,7 @@ DEFAULT_PARAMETERS = [
AddFeature('asan') if sanitizer == 'Address' else None,
AddFlag('-fsanitize=hwaddress') if sanitizer == 'HWAddress' else None,
# FIXME: Use hwasan feature.
AddFeature('asan') if sanitizer == 'HWAddress' else None,
AddFeature('hwasan') if sanitizer == 'HWAddress' else None,
AddFlag('-fsanitize=memory') if sanitizer in ['Memory', 'MemoryWithOrigins'] else None,
AddFeature('msan') if sanitizer in ['Memory', 'MemoryWithOrigins'] else None,