aboutsummaryrefslogtreecommitdiff
path: root/tests/do.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/do.sh')
-rwxr-xr-xtests/do.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/do.sh b/tests/do.sh
index 5c7ea452e..78e6216d9 100755
--- a/tests/do.sh
+++ b/tests/do.sh
@@ -10,7 +10,7 @@ build_results() {
#echo $f
# create result files if not present
if [ ! -f result/$f.out ]; then
- CMD="$READER -q -i pcap/$f -w result/$f.out -v 2"
+ CMD="$READER -q -t -i pcap/$f -w result/$f.out -v 2"
$CMD
fi
# test fuzz target built with sanitizer on input from corpus
@@ -23,7 +23,7 @@ build_results() {
check_results() {
for f in $PCAPS; do
if [ -f result/$f.out ]; then
- CMD="$READER -q -i pcap/$f -w /tmp/reader.out -v 2"
+ CMD="$READER -q -t -i pcap/$f -w /tmp/reader.out -v 2"
$CMD
NUM_DIFF=`diff result/$f.out /tmp/reader.out | wc -l`