diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-04-27 23:27:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 23:27:03 +0200 |
commit | 44259ab2b97e89e800d4406f5c8c3dd4869e374d (patch) | |
tree | e34f257f35965f553bf6a886f01c42fb904c5fdf /tests/do.sh | |
parent | 328016895f4da6c817495d98cdc09980040dd06b (diff) | |
parent | 097127c31d028bb8abae8d3aa8edcc367f17bfba (diff) |
Merge pull request #887 from IvanNardi/tunnel
Tunnel
Diffstat (limited to 'tests/do.sh')
-rwxr-xr-x | tests/do.sh | 4 |
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` |