aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-03-17 19:53:28 +0000
committerGerald Combs <gerald@wireshark.org>2011-03-17 19:53:28 +0000
commit667629d80dc4e7100c38db74f64a87a38f363659 (patch)
treec0351e5a3d102793667fc2ef8c9f1649a443e47f /tools
parentf69a54705c52ed8dedf97eb01aa7eb812bdf9d60 (diff)
Don't clobber the capinfos data if we have a valid capture file. This
should let the original file information show up in bug reports. svn path=/trunk/; revision=36209
Diffstat (limited to 'tools')
-rwxr-xr-xtools/fuzz-test.sh10
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/fuzz-test.sh b/tools/fuzz-test.sh
index 2934147a64..e335d57e30 100755
--- a/tools/fuzz-test.sh
+++ b/tools/fuzz-test.sh
@@ -151,14 +151,12 @@ while [ $PASS -lt $MAX_PASSES -o $MAX_PASSES -lt 1 ] ; do
"$CAPINFOS" "$CF" > /dev/null 2> $TMP_DIR/$ERR_FILE
RETVAL=$?
- if [ $RETVAL -eq 0 ] ; then
- # have a valid file
- rm -f $TMP_DIR/$ERR_FILE
- elif [ $RETVAL -eq 1 ] ; then
+ if [ $RETVAL -eq 1 ] ; then
echo "Not a valid capture file"
rm -f $TMP_DIR/$ERR_FILE
continue
- else
+ elif [ $RETVAL -ne 0 ] ; then
+ # Some other error
echo ""
echo " ERROR"
echo -e "Processing failed. Capture info follows:\n"
@@ -187,7 +185,7 @@ while [ $PASS -lt $MAX_PASSES -o $MAX_PASSES -lt 1 ] ; do
export G_SLICE=debug-blocks # since GLib 2.13
export MALLOC_CHECK_=3
"$TSHARK" $TSHARK_ARGS $TMP_DIR/$TMP_FILE \
- > /dev/null 2> $TMP_DIR/$ERR_FILE
+ > /dev/null 2>> $TMP_DIR/$ERR_FILE
RETVAL=$?
# Uncomment the next two lines to enable dissector bug
# checking.