esfuzz
Version:
JS fuzzer for generative testing of parsers that implement the SpiderMonkey Reflect.parse API
26 lines (20 loc) • 804 B
text/coffeescript
path = require 'path'
util = require 'util'
global[name] = func for name, func of require 'assert'
egal = (a, b) ->
if a is b
a isnt 0 or 1/a is 1/b
else
a isnt a and b isnt b
arrayEgal = (a, b) ->
if egal a, b then yes
else if (Array.isArray a) and Array.isArray b
return no unless a.length is b.length
return no for el, idx in a when not arrayEgal el, b[idx]
yes
global.inspect = (o) -> util.inspect o, no, 2, yes
global.eq = (a, b, msg) -> ok egal(a, b), msg ? "#{inspect a} ===
global.arrayEq = (a, b, msg) -> ok arrayEgal(a,b), msg ? "#{inspect a} ===
global[k] = v for own k, v of require './'