[test][libcxx] Disable new.delete.array tests for HWAsan

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

View File

@ -160,7 +160,7 @@ DEFAULT_PARAMETERS = [
AddFlag('-fsanitize=dataflow') if sanitizer == 'DataFlow' else None,
AddFlag('-fsanitize=leaks') if sanitizer == 'Leaks' else None,
AddFeature('sanitizer-new-delete') if sanitizer in ['Address', 'Memory', 'MemoryWithOrigins', 'Thread'] else None,
AddFeature('sanitizer-new-delete') if sanitizer in ['Address', 'HWAddress', 'Memory', 'MemoryWithOrigins', 'Thread'] else None,
])),
Parameter(name='enable_experimental', choices=[True, False], type=bool, default=True,