1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-23 21:51:08 +02:00

19 lines
353 B
Go
Raw Normal View History

package compiler_test
import (
"github.com/MontFerret/ferret/pkg/compiler"
)
// Fuzz is our fuzzer.
// The fuzzer is run on oss-fuzz.
// Link to the project on oss-fuzz
// will be added once the project is up.
func Fuzz(data []byte) int {
c := compiler.New()
p, err := c.Compile(string(data))
if err != nil || p == nil {
return 0
}
return 1
}