Merge "add options for LibFuzzer, HWASan, and ASan to fuzz_config"

This commit is contained in:
Kris Alder
2021-01-08 17:06:28 +00:00
committed by Gerrit Code Review

View File

@@ -41,6 +41,12 @@ type FuzzConfig struct {
// Specify who should be acknowledged for CVEs in the Android Security
// Bulletin.
Acknowledgement []string `json:"acknowledgement,omitempty"`
// Additional options to be passed to libfuzzer when run in Haiku.
Libfuzzer_options []string `json:"libfuzzer_options,omitempty"`
// Additional options to be passed to HWASAN when running on-device in Haiku.
Hwasan_options []string `json:"hwasan_options,omitempty"`
// Additional options to be passed to HWASAN when running on host in Haiku.
Asan_options []string `json:"asan_options,omitempty"`
}
func (f *FuzzConfig) String() string {