Received: by mail.netbsd.org (Postfix, from userid 605) id 2FF8984E55; Sat, 31 Dec 2022 11:46:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 600B184E53 for ; Sat, 31 Dec 2022 11:46:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id JR5ZdvZY6IVW for ; Sat, 31 Dec 2022 11:46:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4C6F584D00 for ; Sat, 31 Dec 2022 11:46:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43BB3FA90; Sat, 31 Dec 2022 11:46:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167248719918310" MIME-Version: 1.0 Date: Sat, 31 Dec 2022 11:46:39 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/net/tcpreplay To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20221231114639.43BB3FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167248719918310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sat Dec 31 11:46:39 UTC 2022 Modified Files: pkgsrc/net/tcpreplay: Makefile Log Message: tcpreplay: add test target To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/tcpreplay/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167248719918310 Content-Disposition: inline Content-Length: 732 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/tcpreplay/Makefile diff -u pkgsrc/net/tcpreplay/Makefile:1.29 pkgsrc/net/tcpreplay/Makefile:1.30 --- pkgsrc/net/tcpreplay/Makefile:1.29 Thu Dec 29 23:29:04 2022 +++ pkgsrc/net/tcpreplay/Makefile Sat Dec 31 11:46:39 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2022/12/29 23:29:04 gutteridge Exp $ +# $NetBSD: Makefile,v 1.30 2022/12/31 11:46:39 gutteridge Exp $ DISTNAME= tcpreplay-4.4.2 CATEGORIES= net @@ -19,5 +19,8 @@ USE_LIBTOOL= yes CONFIGURE_ARGS+= --enable-dynamic-link CONFIGURE_ARGS+= --with-libpcap=${BUILDLINK_PREFIX.libpcap} +do-test: + cd ${WRKSRC}/test && ${SETENV} ${MAKE_ENV} ${MAKE} test + .include "../../net/libpcap/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_167248719918310--