Peter Samarin
Peter Samarin
Try exporting typescript code to es5 (set `"target": "es5",` in the `tsconfig.json`). ES6 is not supported in CLI mode. You could also use the @jazzer.js/jest-runner for fuzzing--it supports everything that...
Ah, that should be fixed with https://github.com/CodeIntelligenceTesting/jazzer.js/pull/695 that's currently in review.
So far we have avoided addressing this, because solving this properly will be a breaking change for most OSS-Fuzz fuzz tests. Your proposal will not cause breaking change in OSS-Fuzz,...
Just looking at the two functions below, I would expect the fuzzer to give me values from the same domain for the two byte arrays. But surprisingly, their domains are...
> add a compatibility mode and enable it globally in OSS-Fuzz via a flag in the Jazzer wrapper. @fmeum How would this work for projects that already use the mutation...
This very useful feature was never implemented for "reasons" (e.g. see https://github.com/CodeIntelligenceTesting/jazzer/issues/599). At this stage, the only way to add this to Jazzer is to implement it and open a...