SatelliteApplicationsCatapult / tribble

Coverage based JVM Fuzz testing tool.
Apache License 2.0
19 stars 1 forks source link

Don't encode fail results as hex. #87

Closed emilyselwood closed 6 years ago

emilyselwood commented 6 years ago

Having the failed results encoded as hex when there are non printable characters is not helpful when you want to use them as inputs to a test. This change disables the encoding. We still accept corpus files as hex encoded, this also adds base64 encoding option.

Minor fix includes creating an empty corpus file is nothing already exists. This should make things easier when first setting up and testing a project.

Fixes #85 Fixes #86