summaryrefslogtreecommitdiff
path: root/tools/fuzz-test.sh
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-08-12 17:08:08 +0000
committerGerald Combs <gerald@wireshark.org>2009-08-12 17:08:08 +0000
commit3a5270f542b2ee8c736eeb2cfe17cd74fff5fd62 (patch)
tree7a79049c297bf011d096f03e031cc0913e95ff53 /tools/fuzz-test.sh
parent5bd6d8eaafab018dd7631d3b3beec2fe14a43ff5 (diff)
downloadwireshark-3a5270f542b2ee8c736eeb2cfe17cd74fff5fd62.tar.gz
Temporarily disable dissector bug checking. Fixing the ones we've found
so far will take a while and in the meantime looking for dissector assertions is keeping us from finding more serious bugs. svn path=/trunk/; revision=29395
Diffstat (limited to 'tools/fuzz-test.sh')
-rwxr-xr-xtools/fuzz-test.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/fuzz-test.sh b/tools/fuzz-test.sh
index ddab82bf9c..1ba9e92ed6 100755
--- a/tools/fuzz-test.sh
+++ b/tools/fuzz-test.sh
@@ -163,8 +163,10 @@ while [ $PASS -lt $MAX_PASSES -o $MAX_PASSES -lt 1 ] ; do
"$TSHARK" $TSHARK_ARGS $TMP_DIR/$TMP_FILE \
> /dev/null 2> $TMP_DIR/$ERR_FILE
RETVAL=$?
- grep -i "dissector bug" $TMP_DIR/$ERR_FILE \
- > /dev/null 2>&1 && DISSECTOR_BUG=1
+ # Uncomment the next two lines to enable dissector bug
+ # checking.
+ #grep -i "dissector bug" $TMP_DIR/$ERR_FILE \
+ # > /dev/null 2>&1 && DISSECTOR_BUG=1
if [ $RETVAL -ne 0 -o $DISSECTOR_BUG -ne 0 ] ; then
echo ""
echo " ERROR"