(f *testing.F)
| 81 | } |
| 82 | |
| 83 | func FuzzDecAllNoBMI2(f *testing.F) { |
| 84 | if !cpuinfo.HasBMI2() { |
| 85 | f.Skip("No BMI, so already tested") |
| 86 | return |
| 87 | } |
| 88 | defer cpuinfo.DisableBMI2()() |
| 89 | FuzzDecodeAll(f) |
| 90 | } |
| 91 | |
| 92 | func FuzzDecoder(f *testing.F) { |
| 93 | fuzz.AddFromZip(f, "testdata/fuzz/decode-corpus-raw.zip", fuzz.TypeRaw, testing.Short()) |
nothing calls this directly
no test coverage detected
searching dependent graphs…