When fuzzing with valgrind and running without -T, run with -v so that the

argument string is non-empty. Perhaps this will fix the fuzz-bot which fails
to run with the empty argument string...

svn path=/trunk/; revision=49075
This commit is contained in:
Evan Huus 2013-04-27 14:03:45 +00:00
parent 132ee18259
commit 0a530b2a1f
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ shift $(($OPTIND - 1))
if [ $VALGRIND -eq 1 ]; then
RUNNER="$BIN_DIR/tools/valgrind-wireshark.sh"
declare -a RUNNER_ARGS=("${CONFIG_PROFILE}${TWO_PASS}-T" "${CONFIG_PROFILE}${TWO_PASS}")
declare -a RUNNER_ARGS=("${CONFIG_PROFILE}${TWO_PASS}-T" "${CONFIG_PROFILE}${TWO_PASS}-v")
else
# Not using valgrind, use regular tshark.
# TShark arguments (you won't have to change these)