]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
use common functionality file.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 11 Feb 2011 12:30:42 +0000 (12:30 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 11 Feb 2011 12:30:42 +0000 (12:30 +0000)
git-svn-id: file:///svn/unbound/trunk@2390 be551aaa-1e26-0410-a405-d3ace91eadb9

48 files changed:
doc/Changelog
testcode/do-tests.sh
testdata/00-lint.tpkg
testdata/01-doc.tpkg
testdata/02-unittest.tpkg
testdata/03-testbound.tpkg
testdata/05-asynclook.tpkg
testdata/06-ianaports.tpkg
testdata/08-host-lib.tpkg
testdata/09-unbound-control.tpkg
testdata/10-unbound-anchor.tpkg
testdata/common.sh [new file with mode: 0644]
testdata/edns_cache.tpkg
testdata/edns_lame.tpkg
testdata/fwd_ancil.tpkg
testdata/fwd_bogus.tpkg
testdata/fwd_capsid.tpkg
testdata/fwd_capsid_fallback.tpkg
testdata/fwd_compress_c00c.tpkg
testdata/fwd_edns_bksec.tpkg
testdata/fwd_edns_probe.tpkg
testdata/fwd_no_edns.tpkg
testdata/fwd_oneport.tpkg
testdata/fwd_tcp.tpkg
testdata/fwd_tcp_tc.tpkg
testdata/fwd_tcp_tc6.tpkg
testdata/fwd_three.tpkg
testdata/fwd_three_service.tpkg
testdata/fwd_ttlexpire.tpkg
testdata/fwd_udp.tpkg
testdata/fwd_udptmout.tpkg
testdata/fwd_waitudp.tpkg
testdata/fwd_zero.tpkg
testdata/hostsfileosx.tpkg
testdata/local_nodefault.tpkg
testdata/local_norec.tpkg
testdata/local_nosnoop.tpkg
testdata/pylib.tpkg
testdata/pymod.tpkg
testdata/pymod_thread.tpkg
testdata/remote-threaded.tpkg
testdata/speed_cache.tpkg
testdata/speed_local.tpkg
testdata/stat_timer.tpkg
testdata/stream_tcp.tpkg
testdata/stub_udp.tpkg
testdata/stub_udp6.tpkg
testdata/tcp_sigpipe.tpkg

index c65416f701680b19819068159b62c6f1426ef7ca..666a3d6e1b5cd354587682a37fd3dbacb2e6adf8 100644 (file)
@@ -1,5 +1,6 @@
 11 February 2011: Wouter
        - iana portlist updated.
+       - tpkg updated with common.sh for common functionality.
 
 7 February 2011: Wouter
        - Added regression test for addition of a .net DS to the root, and
index 1ffe19c0f0bb79427922064ac75c4d5204c85475..84d2ef566fd928ad07ee7cfe1cb8de5c524a4488 100755 (executable)
@@ -1,8 +1,8 @@
 #!/usr/bin/env bash
+. testdata/common.sh
 
 NEED_SPLINT='00-lint.tpkg'
 NEED_DOXYGEN='01-doc.tpkg'
-NEED_LDNS_TESTNS='fwd_no_edns.tpkg fwd_tcp_tc.tpkg fwd_tcp.tpkg fwd_three_service.tpkg fwd_three.tpkg fwd_ttlexpire.tpkg fwd_udp.tpkg fwd_tcp_tc6.tpkg fwd_compress_c00c.tpkg fwd_ancil.tpkg stat_timer.tpkg 05-asynclook.tpkg stream_tcp.tpkg speed_cache.tpkg fwd_oneport.tpkg fwd_udptmout.tpkg fwd_waitudp.tpkg tcp_sigpipe.tpkg hostsfileosx.tpkg local_nodefault.tpkg fwd_zero.tpkg'
 NEED_XXD='fwd_compress_c00c.tpkg fwd_zero.tpkg'
 NEED_NC='fwd_compress_c00c.tpkg fwd_zero.tpkg'
 NEED_CURL='06-ianaports.tpkg root_anchor.tpkg'
@@ -11,8 +11,8 @@ NEED_IPV6='fwd_ancil.tpkg fwd_tcp_tc6.tpkg stub_udp6.tpkg edns_cache.tpkg'
 NEED_NOMINGW='tcp_sigpipe.tpkg 07-confroot.tpkg 08-host-lib.tpkg fwd_ancil.tpkg'
 
 # test if dig and ldns-testns are available.
-if test ! -x "`which dig 2>&1`"; then echo No 'dig' in path; exit 1; fi
-if test ! -x "`which ldns-testns 2>&1`"; then echo No 'ldns-testns' in path; exit 1; fi
+test_tool_avail "dig"
+test_tool_avail "ldns-testns"
 
 # test for ipv6, uses streamptcp peculiarity.
 if ./streamtcp -f ::1 2>&1 | grep "not supported" >/dev/null 2>&1; then
@@ -33,41 +33,13 @@ sh ../testcode/mini_tpkg.sh clean
 rm -f .perfstats.txt
 for test in `ls *.tpkg`; do
        SKIP=0
-       if echo $NEED_SPLINT | grep $test >/dev/null; then
-               if test ! -x "`which splint`"; then
-                       SKIP=1;
-               fi
-       fi
-       if echo $NEED_DOXYGEN | grep $test >/dev/null; then
-               if test ! -x "`which doxygen`"; then
-                       SKIP=1;
-               fi
-       fi
-       if echo $NEED_CURL | grep $test >/dev/null; then
-               if test ! -x "`which curl`"; then
-                       SKIP=1;
-               fi
-       fi
-       if echo $NEED_LDNS_TESTNS | grep $test >/dev/null; then
-               if test ! -x "`which ldns-testns`"; then
-                       SKIP=1;
-               fi
-       fi
-       if echo $NEED_XXD | grep $test >/dev/null; then
-               if test ! -x "`which xxd`"; then
-                       SKIP=1;
-               fi
-       fi
-       if echo $NEED_NC | grep $test >/dev/null; then
-               if test ! -x "`which nc`"; then
-                       SKIP=1;
-               fi
-       fi
-       if echo $NEED_WHOAMI | grep $test >/dev/null; then
-               if test ! -x "`which whoami`"; then
-                       SKIP=1;
-               fi
-       fi
+       skip_if_in_list $test "$NEED_SPLINT" "splint"
+       skip_if_in_list $test "$NEED_DOXYGEN" "doxygen"
+       skip_if_in_list $test "$NEED_CURL" "curl"
+       skip_if_in_list $test "$NEED_XXD" "xxd"
+       skip_if_in_list $test "$NEED_NC" "nc"
+       skip_if_in_list $test "$NEED_WHOAMI" "whoami"
+
        if echo $NEED_IPV6 | grep $test >/dev/null; then
                if test "$HAVE_IPV6" = no; then
                        SKIP=1;
index 5b636bdb6d39c903115d286b7592b80ac160ac2a..89e44966d8b6cb4dfb066725bba8ae06133104dc 100644 (file)
Binary files a/testdata/00-lint.tpkg and b/testdata/00-lint.tpkg differ
index 6584f0148f2a5eec85a95442728461567581b48b..af82a3e4181d85c621d0c507405b15b598cc6423 100644 (file)
Binary files a/testdata/01-doc.tpkg and b/testdata/01-doc.tpkg differ
index 32cb2c8948d2c533a2a9c83a734e05d8448c8c42..4618ae30e6a168d4c2d8ad934891a8d4c92f1da0 100644 (file)
Binary files a/testdata/02-unittest.tpkg and b/testdata/02-unittest.tpkg differ
index 30a18456414f39bb8d129289cbed4b38c9cce48d..2f348dcf2117dfa19c7630561431623d08218bbd 100644 (file)
Binary files a/testdata/03-testbound.tpkg and b/testdata/03-testbound.tpkg differ
index 941a46aae5afe971bbcc22a409958748f0b4af4a..8143b43f4425bcf9428b90db1ae772f304e190f3 100644 (file)
Binary files a/testdata/05-asynclook.tpkg and b/testdata/05-asynclook.tpkg differ
index 135cf1ec690441635971f3223f164853e9a7bec1..ef216f7fa1763271882db9d4b12007286c9beeab 100644 (file)
Binary files a/testdata/06-ianaports.tpkg and b/testdata/06-ianaports.tpkg differ
index b5a6628cf6aa57e978e82ee066d50856e009398f..3c7be0e6c17d26227d8cec6e3319c466d690891f 100644 (file)
Binary files a/testdata/08-host-lib.tpkg and b/testdata/08-host-lib.tpkg differ
index c5bc1e1656d597afe5c07cfe35665de172677005..e45a0525c5aa2cfc6cfd3d823ad03459c16d2a57 100644 (file)
Binary files a/testdata/09-unbound-control.tpkg and b/testdata/09-unbound-control.tpkg differ
index a1527caee14003f8e9a5c2e3487af22edbb4bf36..85f63e842b1ce6ee87549c9a9843827afc23dcf1 100644 (file)
Binary files a/testdata/10-unbound-anchor.tpkg and b/testdata/10-unbound-anchor.tpkg differ
diff --git a/testdata/common.sh b/testdata/common.sh
new file mode 100644 (file)
index 0000000..bec2901
--- /dev/null
@@ -0,0 +1,232 @@
+# common.sh - an include file for commonly used functions for test code.
+# BSD licensed (see LICENSE file).
+#
+# Version 1
+# 2011-02-11: first version.
+#
+# include this file from a tpkg script with
+#   . ../common.sh
+#
+# overview of functions available:
+# error x              : print error and exit
+# info x               : print info
+# test_tool_avail x    : see if program in path and complain, exit if not.
+# get_ldns_testns      : set LDNS_TESTNS to executable ldns-testns
+# get_make             : set MAKE to gmake or make tool.
+# get_gcc              : get cc or gcc in CC
+# set_doxygen_path     : set doxygen path
+# skip_if_in_list      : set SKIP=1 if name in list and tool not available.
+# get_random_port x    : get RND_PORT a sequence of free random port numbers.
+# wait_server_up       : wait on logfile to see when server comes up.
+# wait_ldns_testns_up   : wait for ldns-testns to come up.
+# wait_unbound_up      : wait for unbound to come up.
+# wait_petal_up                : wait for petal to come up.
+# wait_server_up_or_fail: wait for server to come up or print a failure string
+# kill_pid             : kill a server, make sure and wait for it to go down.
+
+
+# print error and exit
+# $0: name of program
+# $1: error to printout.
+error () {
+       echo "$0: error: $1" >&2
+       exit 1
+}
+
+# print info
+# $0: name of program
+# $1: to printout.
+info () {
+           echo "$0: info: $1"
+}
+
+# test if 'tool' is available in path and complain otherwise.
+# $1: tool
+test_tool_avail () {
+       if test ! -x "`which $1 2>&1`"; then
+               echo No "$1" in path
+               exit 1
+       fi
+}
+
+# get ldns-testns tool in LDNS_TESTNS variable.
+get_ldns_testns () {
+       if test -x "`which ldns-testns 2>&1`"; then
+               LDNS_TESTNS=ldns-testns
+       else
+               LDNS_TESTNS=/home/wouter/bin/ldns-testns
+       fi
+}
+
+# get make tool in MAKE variable, gmake is used if present.
+get_make () {
+       if test -x "`which gmake 2>&1`"; then
+               MAKE=gmake
+       else
+               MAKE=make
+       fi
+}
+
+# get cc tool in CC variable, gcc is used if present.
+get_gcc () {
+       if test -x "`which gcc 2>&1`"; then
+               CC=gcc
+       else
+               CC=cc
+       fi
+}
+
+# set SKIP=1 if the name is in list and tool is not available.
+# $1: name of package to check.
+# $2: list of packages that need the tool.
+# #3: name of the tool required.
+skip_if_in_list () {
+       if echo $2 | grep $1 >/dev/null; then
+               if test ! -x "`which $3 2>&1`"; then
+                       SKIP=1;
+               fi
+       fi
+}
+
+# function to get a number of random port numbers.
+# $1: number of random ports.
+# RND_PORT is returned as the starting port number
+get_random_port () {
+       local plist
+       local cont
+       local collisions
+       local i
+       local MAXCOLLISION=1000
+       cont=1
+       collisions=0
+       while test "$cont" = 1; do
+               #netstat -n -A ip -A ip6 -a | sed -e "s/^.*:\([0-9]*\) .*$/\1/"
+               RND_PORT=$(( $RANDOM + 5354 ))
+               # depending on uname try to check for collisions in port numbers
+               case "`uname`" in
+               linux|Linux)
+                       plist=`netstat -n -A ip -A ip6 -a | sed -e "s/^.*:\([0-9]*\) .*$/\1/"`
+               ;;
+               *)
+                       plist=""
+               ;;
+               esac
+               cont=0
+               for (( i=0 ; i < $1 ; i++ )); do
+                       if echo "$plist" | grep '^'`expr $i + $RND_PORT`'$' >/dev/null 2>&1; then
+                               cont=1;
+                               collisions=`expr $collisions + 1`
+                       fi
+               done
+               if test $collisions = $MAXCOLLISION; then
+                       error "too many collisions getting random port number"
+               fi
+       done
+}
+
+# wait for server to go up, pass <logfilename> <string to watch>
+# $1 : logfilename
+# $2 : string to watch for.
+# exits with failure if it does not come up
+wait_server_up () {
+       local MAX_UP_TRY=120
+       local WAIT_THRES=30
+       local try
+       for (( try=0 ; try <= $MAX_UP_TRY ; try++ )) ; do
+               if test -f $1 && fgrep "$2" $1 >/dev/null; then
+                       #echo "done on try $try"
+                       break;
+               fi
+               if test $try -eq $MAX_UP_TRY; then
+                       echo "Server in $1 did not go up!"
+                       cat $1
+                       exit 1;
+               fi
+               if test $try -ge $WAIT_THRES; then
+                       sleep 1
+               fi
+       done
+}
+
+# wait for ldns-testns to come up
+# $1 : logfilename that is watched.
+wait_ldns_testns_up () {
+       wait_server_up "$1" "Listening on port"
+}
+
+# wait for unbound to come up
+# string 'Start of service' in log.
+# $1 : logfilename that is watched.
+wait_unbound_up () {
+       wait_server_up "$1" "start of service"
+}
+
+# wait for petal to come up
+# string 'petal start' in log.
+# $1 : logfilename that is watched.
+wait_petal_up () {
+       wait_server_up "$1" "petal start"
+}
+
+# wait for server to go up, pass <logfilename> <string to watch> <badstr>
+# $1 : logfile
+# $2 : success string
+# $3 : failure string
+wait_server_up_or_fail () {
+       local MAX_UP_TRY=120
+       local WAIT_THRES=30
+       local try
+       for (( try=0 ; try <= $MAX_UP_TRY ; try++ )) ; do
+               if test -f $1 && fgrep "$2" $1 >/dev/null; then
+                       echo "done on try $try"
+                       break;
+               fi
+               if test -f $1 && fgrep "$3" $1 >/dev/null; then
+                       echo "failed on try $try"
+                       break;
+               fi
+               if test $try -eq $MAX_UP_TRY; then
+                       echo "Server in $1 did not go up!"
+                       cat $1
+                       exit 1;
+               fi
+               if test $try -ge $WAIT_THRES; then
+                       sleep 1
+               fi
+       done
+}
+
+# kill a pid, make sure and wait for it to go down.
+# $1 : pid to kill
+kill_pid () {
+       local MAX_DOWN_TRY=120
+       local WAIT_THRES=30
+       local try
+       kill $1
+       for (( try=0 ; try <= $MAX_DOWN_TRY ; try++ )) ; do
+               if kill -0 $1 >/dev/null 2>&1; then
+                       :
+               else
+                       #echo "done on try $try"
+                       break;
+               fi
+               if test $try -eq $MAX_DOWN_TRY; then
+                       echo "Server in $1 did not go down! Send SIGKILL"
+                       kill -9 $1 >/dev/null 2>&1
+               fi
+               if test $try -ge $WAIT_THRES; then
+                       sleep 1
+               fi
+               # re-send the signal
+               kill $1 >/dev/null 2>&1
+       done
+       return 0
+}
+
+# set doxygen path, so that make doc can find doxygen
+set_doxygen_path () {
+       if test -x '/home/wouter/bin/doxygen'; then
+               export PATH="/home/wouter/bin:$PATH"
+       fi
+}
+
index c816f2cbd7da9e81b9ac26203e462f321fb6d885..63756410856cbb925fbb77896c8f9afbdefe9556 100644 (file)
Binary files a/testdata/edns_cache.tpkg and b/testdata/edns_cache.tpkg differ
index b52e0af4634ae2750b2101d859633a59d24f77a0..a11a47508395ef69f4de5ba0ee4528be5e395a60 100644 (file)
Binary files a/testdata/edns_lame.tpkg and b/testdata/edns_lame.tpkg differ
index 73989a8bdabe8f30beca8f0d29ed7ab9ccfdc3a3..09ecfb98e313bca0a7a3abd5238b8cbaaae34c95 100644 (file)
Binary files a/testdata/fwd_ancil.tpkg and b/testdata/fwd_ancil.tpkg differ
index 0dede419c059869ffd554bbcebf7b3427b557f1c..e060f5f9cebcdd355c6c3c5cb5422dc93ae25bfc 100644 (file)
Binary files a/testdata/fwd_bogus.tpkg and b/testdata/fwd_bogus.tpkg differ
index da16f4316d9a88604d08fa436c7ac87eab25f8ea..c468a2edc500dfbefa297c025a8293ce1444f92e 100644 (file)
Binary files a/testdata/fwd_capsid.tpkg and b/testdata/fwd_capsid.tpkg differ
index a110759d1253af2ba43158b47264dba27f9e7cff..c6fd4cdf83cc0560c02bf8f95c235e59e86a2294 100644 (file)
Binary files a/testdata/fwd_capsid_fallback.tpkg and b/testdata/fwd_capsid_fallback.tpkg differ
index bb0cebbf439a2bed574190e67ba837c372161c8a..6b06a8608db065c21ffaa99c54b92f7ae6f9c7ea 100644 (file)
Binary files a/testdata/fwd_compress_c00c.tpkg and b/testdata/fwd_compress_c00c.tpkg differ
index 3b03df7665f52fa2ded1b1c4ac10f8b81910291d..5869ffa9ec3401ceaa6e7721f2c3e75c97dc652d 100644 (file)
Binary files a/testdata/fwd_edns_bksec.tpkg and b/testdata/fwd_edns_bksec.tpkg differ
index 10608e1148fa60b1fbe65b7a70a2d43ce5a8f1f8..853b4ab00ee06883ffe1f4c73a14ba6c677bd97c 100644 (file)
Binary files a/testdata/fwd_edns_probe.tpkg and b/testdata/fwd_edns_probe.tpkg differ
index ac71a71d4752fe01609a821cf0024dd448123049..1629cba0144cb266a13e625f6792124177815135 100644 (file)
Binary files a/testdata/fwd_no_edns.tpkg and b/testdata/fwd_no_edns.tpkg differ
index eb888831910be8cc2ba5e59188fe86d3989989a2..d752f852ce76845e4d488e14ad3a65e9574bf4e6 100644 (file)
Binary files a/testdata/fwd_oneport.tpkg and b/testdata/fwd_oneport.tpkg differ
index ac0a7390406da3f15927c230314d626842905925..f26a4e60cb76b1ab909e5f31d7ea5cd81517e3f1 100644 (file)
Binary files a/testdata/fwd_tcp.tpkg and b/testdata/fwd_tcp.tpkg differ
index ac62bd4f65238f65a8be5007cd5661fe27807072..a51258eb42023eb0efc4b0b834fc4ad48ffc4a1a 100644 (file)
Binary files a/testdata/fwd_tcp_tc.tpkg and b/testdata/fwd_tcp_tc.tpkg differ
index 2a98063a48627fb72dbf5972f51d6ec660335947..44348201894b461efc97b92d999ad7b4abf2a60d 100644 (file)
Binary files a/testdata/fwd_tcp_tc6.tpkg and b/testdata/fwd_tcp_tc6.tpkg differ
index de9864f8d8561b82306b18e742aba79197ea5b60..afb05167f07c859aebfa80f9fa154b0470ba20fc 100644 (file)
Binary files a/testdata/fwd_three.tpkg and b/testdata/fwd_three.tpkg differ
index d7e21b3eba1a5a6923211b3474151c897f199f26..8660e1de9d694346745dd2ab2cbfc168bd9469ba 100644 (file)
Binary files a/testdata/fwd_three_service.tpkg and b/testdata/fwd_three_service.tpkg differ
index dd24517be9d6979e8f0e4b655731206abd096e64..5b124348e44ba3e1f47dd121a1a23adbb532d0d4 100644 (file)
Binary files a/testdata/fwd_ttlexpire.tpkg and b/testdata/fwd_ttlexpire.tpkg differ
index a857c9e7ddcb6a11b5ebf4faa0fcb77572000ec9..b515d8317326e12b52bdb4080338491a1bf0385f 100644 (file)
Binary files a/testdata/fwd_udp.tpkg and b/testdata/fwd_udp.tpkg differ
index 197758d45377be475f341484472cd0316f01e815..e3fc74061d99d19a533b58339cabb34ca643c97c 100644 (file)
Binary files a/testdata/fwd_udptmout.tpkg and b/testdata/fwd_udptmout.tpkg differ
index e7d351c6484266167213291b8f3d945586940c27..975da2160f0aaa625b4559085fa2edc2169e32b8 100644 (file)
Binary files a/testdata/fwd_waitudp.tpkg and b/testdata/fwd_waitudp.tpkg differ
index 7ce1c586008dc3bd478c91f43c7d6a768c614620..151d695635f297aa1c65b4e3efc617dd93ec8766 100644 (file)
Binary files a/testdata/fwd_zero.tpkg and b/testdata/fwd_zero.tpkg differ
index 1e0ead059882c3d1af786190100806413d6a6cd0..05ab7c233985dc1c838ce2bd6a7c268cc6475851 100644 (file)
Binary files a/testdata/hostsfileosx.tpkg and b/testdata/hostsfileosx.tpkg differ
index 7cbef36a8d30ce65a723c6bf52848ba268a8bc23..f23f50dd158935f2f617cc37008f282569b86edd 100644 (file)
Binary files a/testdata/local_nodefault.tpkg and b/testdata/local_nodefault.tpkg differ
index 383b7d0d1a6f975f56e5c9707b5e5811e0ba59f7..c2ceb22ea24e894545dbb31343e15cb237877f6c 100644 (file)
Binary files a/testdata/local_norec.tpkg and b/testdata/local_norec.tpkg differ
index 2f07f499820931d2b99e23e43f695a634801cb7c..3bb16c265578a7c905adec6139cb5d65378872e8 100644 (file)
Binary files a/testdata/local_nosnoop.tpkg and b/testdata/local_nosnoop.tpkg differ
index 0e263035820115cbbc41c60af251da8f69210647..6507f781dfd1dd69b2b521d49d5889becda536a8 100644 (file)
Binary files a/testdata/pylib.tpkg and b/testdata/pylib.tpkg differ
index afce9a6db03e7f74955a8404c6523671190e62d2..164a82a00424b3d7887fb41d809b19f4b7ac47f2 100644 (file)
Binary files a/testdata/pymod.tpkg and b/testdata/pymod.tpkg differ
index 36ac35536b3f2c9059a51e7bb906c06c733ded4c..96d5d9b3936dae5106503fc2130511db70294035 100644 (file)
Binary files a/testdata/pymod_thread.tpkg and b/testdata/pymod_thread.tpkg differ
index 8ff01f22057fa7027e795f85d0dd9756dbedbbb9..83a52ce8e210d92bf616a92683f88fcad19dd16f 100644 (file)
Binary files a/testdata/remote-threaded.tpkg and b/testdata/remote-threaded.tpkg differ
index 9119e43a00c31ae7f7e6c191d7ba2bc10f55524a..cdba5e3f93ed5cd79323b15d3d10708b726c96c5 100644 (file)
Binary files a/testdata/speed_cache.tpkg and b/testdata/speed_cache.tpkg differ
index 02d3837951b0e9de71051cf490b9a59d0fa2ba43..e7d7c5d5e2dbd95c2491b5c95176a8f0bf97662f 100644 (file)
Binary files a/testdata/speed_local.tpkg and b/testdata/speed_local.tpkg differ
index 1b3f0d54bc4534dd4c2b8a784dc32815769875a7..1f11591a77f1827ba09630a1ada8d5e1eda9a9c8 100644 (file)
Binary files a/testdata/stat_timer.tpkg and b/testdata/stat_timer.tpkg differ
index c0c147754067b4bac420d471ae325ca2d046bb1f..37cb249b159836668754b16f19a19b0a0361213f 100644 (file)
Binary files a/testdata/stream_tcp.tpkg and b/testdata/stream_tcp.tpkg differ
index ad6f4de415eb02270cbb7914ec146f84af3be85e..2743a6cf1f49666088e25f2085bdf82b351cdf83 100644 (file)
Binary files a/testdata/stub_udp.tpkg and b/testdata/stub_udp.tpkg differ
index 6790f38f76eb50f8de6d9b9e00835d23f74a4688..c5e7ffe9dcf4aedd3dc2f3448744f425b2adaa35 100644 (file)
Binary files a/testdata/stub_udp6.tpkg and b/testdata/stub_udp6.tpkg differ
index 7673afc238dbe61dc0709f33730c5ca0038bb813..2f6e3e7a60edbf0b20296b919f76a7180571576e 100644 (file)
Binary files a/testdata/tcp_sigpipe.tpkg and b/testdata/tcp_sigpipe.tpkg differ