Add a fuzz testing stub for ability to use external generators also

This commit is contained in:
Petteri Aimonen
2014-09-11 17:58:53 +03:00
parent d2099cc8f1
commit 07e9ffb97b
5 changed files with 209 additions and 0 deletions

12
tests/fuzztest/run_radamsa.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
TMP=`tempfile`
echo $TMP
while true
do
radamsa sample_data/* > $TMP
$1 < $TMP
test $? -gt 127 && break
done