1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-19 21:28:32 +02:00
AdamKorcz 311d07ad40
Added fuzzer (#501)
* Added fuzzer

* Formatting updates

* Attempting to fix linter error

* Corrected comment
2020-05-10 16:07:49 -04:00

19 lines
353 B
Go

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
}