hugelgupf / p9

Idiomatic Go 9P2000.L client and server, extracted from gVisor for general use
Apache License 2.0
87 stars 19 forks source link

remove fuzzing #53

Closed sevki closed 2 years ago

sevki commented 2 years ago

looks like oss-fuzz support for go changed with go native fuzzing. I don't have time to fix is so removing this instead.

cc: @rminnich

sevki commented 2 years ago

yeah, doesn't sound like go support is very mature either

OSS-fuzz supports fuzzers written for the native Go 1.18 engine. These fuzzers are built as libFuzzer binaries in a similar fashion as fuzzers written for the go-fuzz engine. Because of that, dictionaries and seed corpora should be handled in accordance with the OSS-fuzz documentation. Unlike libFuzzer/go-fuzz targets which must accept one data buffer, fuzz targets written for the Native Go engine can accept any number of arguments of any type. Here is an example of a valid fuzzer with multiple arguments: https://google.github.io/oss-fuzz/getting-started/new-project-guide/go-lang/#native-go-fuzzing-support

rminnich commented 2 years ago

fuzzing is now fixed. You can close this.