Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48037652 authored by Kris Alder's avatar Kris Alder Committed by Gerrit Code Review
Browse files

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

parents 53230fef c81f59f0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 {