mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
This set of changes will make goldmark compatible with the fuzzing requirements for google/oss-fuzz, a continuous fuzzing service. To ensure compatibility this change adds; - A seperate fuzzing target that doesn't use the builtin fuzz corpus - A tool to convert the builtin fuzz corpus to a zip file corpus that is compatible with oss-fuzz
9 lines
77 B
Go
9 lines
77 B
Go
package fuzz
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func FuzzOss(f *testing.F) {
|
|
fuzz(f)
|
|
}
|