Consider the tests expected to fail as such
This commit is contained in:
parent
763ee814e7
commit
9d24dac55b
|
@ -65,16 +65,20 @@ target="$1"
|
|||
FAILED=
|
||||
_transport tcp4 127.0.0.1:4242 >> "$target" || FAILED="$FAILED tcp4(error $?)"
|
||||
_transport tcp6 ::1.4242 >> "$target" || FAILED="$FAILED tcp6(error $?)"
|
||||
_transport tcp6 ::1:4242 >> "$target" || FAILED="$FAILED tcp6(error $?)"
|
||||
_transport tcp6 ::1:4242 >> "$target"
|
||||
[ $? -eq 2 ] || FAILED="$FAILED tcp6(error $?)"
|
||||
_transport tcp 127.0.0.1:4242 >> "$target" || FAILED="$FAILED tcp(error $?)"
|
||||
_transport tcp ::1.4242 >> "$target" || FAILED="$FAILED tcp(error $?)"
|
||||
_transport tcp ::1:4242 >> "$target" || FAILED="$FAILED tcp(error $?)"
|
||||
_transport tcp ::1:4242 >> "$target"
|
||||
[ $? -eq 2 ] || FAILED="$FAILED tcp(error $?)"
|
||||
_transport udp4 127.0.0.1:4242 >> "$target" || FAILED="$FAILED udp4(error $?)"
|
||||
_transport udp6 ::1.4242 >> "$target" || FAILED="$FAILED udp6(error $?)"
|
||||
_transport udp6 ::1:4242 >> "$target" || FAILED="$FAILED udp6(error $?)"
|
||||
_transport udp6 ::1:4242 >> "$target"
|
||||
[ $? -eq 2 ] || FAILED="$FAILED udp6(error $?)"
|
||||
_transport udp 127.0.0.1:4242 >> "$target" || FAILED="$FAILED udp(error $?)"
|
||||
_transport udp ::1.4242 >> "$target" || FAILED="$FAILED udp(error $?)"
|
||||
_transport udp ::1:4242 >> "$target" || FAILED="$FAILED udp(error $?)"
|
||||
_transport udp ::1:4242 >> "$target"
|
||||
[ $? -eq 2 ] || FAILED="$FAILED udp(error $?)"
|
||||
[ -z "$FAILED" ] && exit 0
|
||||
echo "Failed tests:$FAILED" 1>&2
|
||||
#XXX ignore errors for now
|
||||
|
|
Loading…
Reference in New Issue
Block a user