MozillaSecurity / funfuzz

A collection of fuzzers in a harness for testing the SpiderMonkey JavaScript engine.
Mozilla Public License 2.0
635 stars 115 forks source link

[funfuzz] Zip up jsfunfuzz testcases before submitting to FuzzManager #229

Closed nth10sd closed 5 years ago

nth10sd commented 5 years ago

While we already compress wasm testcases found by funbind prior to reporting to FuzzManager, @tysmith pointed out that we should probably do the same for the legacy jsfunfuzz side too.

tysmith commented 5 years ago

I'd suggest using .zip for ease of use across operating systems even though zip likely won't give us the same compression ratios.

nth10sd commented 5 years ago

Good point, I'll keep using .zip then.

nth10sd commented 5 years ago

I pushed a commit here on a branch to test things out first.

nth10sd commented 5 years ago

Thanks for the review @tysmith !