MozillaSecurity / funfuzz

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

Also test -2^32+1 (-4294967297) in test-math.js #75

Closed nth10sd closed 7 years ago

nth10sd commented 7 years ago

There is a typo in test-math.js of jsfunfuzz, while testing range boundaries here: https://github.com/MozillaSecurity/funfuzz/blob/9d7a2ec/js/jsfunfuzz/test-math.js#L10

Basically "0x100000001" is listed twice when it should be "0x100000001" and "-0x100000001".

nth10sd commented 7 years ago

Fairly straightforward typo fix coming up, will land this too.