d64bc47ffa
Introduce net_common.sh that is to share common functions used in tests for networking. This commit commonizes extract_new_packets. Other duplicate codes will be moved to the file in further commits.
14 lines
247 B
Makefile
14 lines
247 B
Makefile
# $NetBSD: Makefile,v 1.4 2016/11/24 08:52:19 ozaki-r Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/net/arp
|
|
|
|
.for name in arp dad
|
|
TESTS_SH+= t_${name}
|
|
TESTS_SH_SRC_t_${name}= ../net_common.sh t_${name}.sh
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|