aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fuzz_default.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fuzz_default.sh')
-rwxr-xr-xsrc/plugins/fuzz_default.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/fuzz_default.sh b/src/plugins/fuzz_default.sh
index 2387bd6..de7205d 100755
--- a/src/plugins/fuzz_default.sh
+++ b/src/plugins/fuzz_default.sh
@@ -24,11 +24,11 @@ do
24 trap "echo $tmpfile caused SIGSEGV ; exit 1" SEGV 24 trap "echo $tmpfile caused SIGSEGV ; exit 1" SEGV
25 while [ $seed -lt $ZZSTOPSEED ] 25 while [ $seed -lt $ZZSTOPSEED ]
26 do 26 do
27# echo "file $file seed $seed" 27 echo "file $file seed $seed"
28 zzuf -c -s $seed cat "$file" > "$tmpfile" 28 zzuf -c -s $seed cat "$file" > "$tmpfile"
29 if ! "$bindir/extract" "$tmpfile" > /dev/null 29 if ! "$bindir/extract" -i "$tmpfile" > /dev/null
30 then 30 then
31 echo "$tmpfile caused error exit" 31 echo "$tmpfile with seed $seed failed"
32 exit 1 32 exit 1
33 fi 33 fi
34 seed=`expr $seed + 1` 34 seed=`expr $seed + 1`