diff options
author | 2022-10-10 19:29:29 +0000 | |
---|---|---|
committer | 2022-10-10 19:29:29 +0000 | |
commit | 034238252656033ed007ff083483eeee89999360 (patch) | |
tree | 3b1b2b8ad418f1e330a49a161694cfbd38c57ffd /fuzz/fuzz_common.go | |
parent | 17e0b7607a640dd419ba39cd10a189ae2103ec93 (diff) | |
parent | 74c0ad2248aa50fa2bd906e6facb55907625f9e9 (diff) |
Merge changes Ib951c4f5,Iacdccb8f
* changes:
Include target_mods field Test: build a module with target_mods populated in cc_fuzz
Update cc_fuzz rule - add library_path param Test: make haiku
Diffstat (limited to 'fuzz/fuzz_common.go')
-rw-r--r-- | fuzz/fuzz_common.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzz/fuzz_common.go b/fuzz/fuzz_common.go index eb248bb40..5e5769bf1 100644 --- a/fuzz/fuzz_common.go +++ b/fuzz/fuzz_common.go @@ -151,6 +151,8 @@ type FuzzConfig struct { // If there's a Java fuzzer with JNI, a different version of Jazzer would // need to be added to the fuzzer package than one without JNI IsJni *bool `json:"is_jni,omitempty"` + // List of modules for monitoring coverage drops in directories (e.g. "libicu") + Target_modules []string `json:"target_modules,omitempty"` } type FuzzFrameworks struct { |