
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
110 lines
3.9 KiB
Bash
110 lines
3.9 KiB
Bash
# $NetBSD: t_mcast.sh,v 1.1 2015/05/26 00:42:07 ozaki-r Exp $
|
|
#
|
|
# Copyright (c) 2015 The NetBSD Foundation, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
netserver="rump_server -lrumpnet -lrumpnet_net"
|
|
netserver="$netserver -lrumpnet_netinet -lrumpnet_netinet6 -lrumpnet_shmif"
|
|
export RUMP_SERVER=unix://commsock
|
|
|
|
DEBUG=false
|
|
|
|
run_test()
|
|
{
|
|
local name="$1"
|
|
local opts="$2"
|
|
local mcast="$(atf_get_srcdir)/mcast"
|
|
|
|
atf_check -s exit:0 ${netserver} ${RUMP_SERVER}
|
|
atf_check -s exit:0 rump.ifconfig shmif0 create
|
|
atf_check -s exit:0 rump.ifconfig shmif0 linkstr bus1
|
|
atf_check -s exit:0 rump.ifconfig shmif0 10.0.0.2/24
|
|
atf_check -s exit:0 rump.ifconfig shmif0 inet6 fc00::2/64
|
|
atf_check -s exit:0 rump.ifconfig shmif0 up
|
|
|
|
atf_check -s exit:0 rump.ifconfig -w 10
|
|
atf_check -s not-exit:0 -x "rump.ifconfig shmif0 |grep -q tentative"
|
|
|
|
# A route to the mcast address is required to join the mcast group
|
|
atf_check -s exit:0 -o ignore rump.route add default 10.0.0.1
|
|
atf_check -s exit:0 -o ignore rump.route add -inet6 default fc00::1
|
|
|
|
$DEBUG && rump.ifconfig
|
|
$DEBUG && rump.netstat -nr
|
|
|
|
export LD_PRELOAD=/usr/lib/librumphijack.so
|
|
#$DEBUG && /usr/sbin/ifmcstat # Not yet run on rump kernel
|
|
if $DEBUG; then
|
|
atf_check -s exit:0 -o ignore $mcast -d ${opts}
|
|
else
|
|
atf_check -s exit:0 $mcast ${opts}
|
|
fi
|
|
#$DEBUG && /usr/sbin/ifmcstat # Not yet run on rump kernel
|
|
unset LD_PRELOAD
|
|
}
|
|
|
|
add_test()
|
|
{
|
|
local name=$1
|
|
local opts="$2"
|
|
local desc="$3"
|
|
|
|
atf_test_case "mcast_${name}" cleanup
|
|
eval "mcast_${name}_head() { \
|
|
atf_set \"descr\" \"${desc}\"; \
|
|
atf_set \"require.progs\" \"rump_server\"; \
|
|
}; \
|
|
mcast_${name}_body() { \
|
|
run_test \"${name}\" \"${opts}\"; \
|
|
}; \
|
|
mcast_${name}_cleanup() { \
|
|
${DEBUG} && /usr/bin/shmif_dumpbus -p - bus1 2>/dev/null | \
|
|
/usr/sbin/tcpdump -n -e -r -; \
|
|
env RUMP_SERVER=unix://commsock rump.halt; \
|
|
}"
|
|
atf_add_test_case "mcast_${name}"
|
|
}
|
|
|
|
atf_init_test_cases()
|
|
{
|
|
|
|
add_test conninet4 "-c -4" \
|
|
"Checks connected multicast for ipv4"
|
|
add_test connmappedinet4 "-c -m -4" \
|
|
"Checks connected multicast for mapped ipv4"
|
|
add_test connmappedbuginet4 "-c -m -b -4" \
|
|
"Checks connected multicast for mapped ipv4 using the v4 ioctls"
|
|
add_test conninet6 "-c -6" \
|
|
"Checks connected multicast for ipv6"
|
|
add_test unconninet4 "-4" \
|
|
"Checks unconnected multicast for ipv4"
|
|
add_test unconnmappedinet4 "-m -4" \
|
|
"Checks unconnected multicast for mapped ipv4"
|
|
add_test unconnmappedbuginet4 "-m -b -4" \
|
|
"Checks unconnected multicast for mapped ipv4 using the v4 ioctls"
|
|
add_test unconninet6 "-6" \
|
|
"Checks unconnected multicast for ipv6"
|
|
}
|