diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-09-11 17:58:53 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-09-11 19:22:57 +0300 |
commit | 07e9ffb97b747b22250f66a2210898db57c266c1 (patch) | |
tree | 2f34f38272858b8488822b0135944c3a67c62eef /tests/fuzztest/run_radamsa.sh | |
parent | d2099cc8f1adb33d427a44a5e32ed27b647c7168 (diff) |
Add a fuzz testing stub for ability to use external generators also
Diffstat (limited to 'tests/fuzztest/run_radamsa.sh')
-rwxr-xr-x | tests/fuzztest/run_radamsa.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/fuzztest/run_radamsa.sh b/tests/fuzztest/run_radamsa.sh new file mode 100755 index 00000000..52cd40a8 --- /dev/null +++ b/tests/fuzztest/run_radamsa.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +TMP=`tempfile` + +echo $TMP +while true +do + radamsa sample_data/* > $TMP + $1 < $TMP + test $? -gt 127 && break +done + |