Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Sep 2017 22:56:57 +0300
From:      Vladimir Zakharov <zakharov.vv@gmail.com>
To:        freebsd-testing@freebsd.org
Subject:   [PATCH] Install recently added tests
Message-ID:  <20170929195657.7u4ldyenygkhbiba@vzakharov>

next in thread | raw e-mail | index | archive | help
Hello!

r323275 added basic tests for chflags, mkdir, rcp and rmdir. But these
tests are not installed to /usr/tests.

# kyua test -k /usr/tests/Kyuafile bin/chflags
Results file id is usr_tests.20170929-195409-880951
Results saved to /root/.kyua/store/results.usr_tests.20170929-195409-880951.db
kyua: W: No test cases matched by the filter 'bin/chflags'.
# ls /usr/tests/bin/chflags/
#

Attached patch fixes this problem.

Index: bin/chflags/Makefile
===================================================================
--- bin/chflags/Makefile	(revision 324095)
+++ bin/chflags/Makefile	(working copy)
@@ -1,6 +1,8 @@
 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
 # $FreeBSD$
 
+.include <src.opts.mk>
+
 PACKAGE=runtime
 PROG=	chflags
 
Index: bin/mkdir/Makefile
===================================================================
--- bin/mkdir/Makefile	(revision 324095)
+++ bin/mkdir/Makefile	(working copy)
@@ -1,6 +1,8 @@
 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
 # $FreeBSD$
 
+.include <src.opts.mk>
+
 PACKAGE=runtime
 PROG=	mkdir
 
Index: bin/rcp/Makefile
===================================================================
--- bin/rcp/Makefile	(revision 324095)
+++ bin/rcp/Makefile	(working copy)
@@ -1,6 +1,8 @@
 #	@(#)Makefile	8.1 (Berkeley) 7/19/93
 # $FreeBSD$
 
+.include <src.opts.mk>
+
 PACKAGE=rcmds
 PROG=	rcp
 SRCS=	rcp.c util.c
Index: bin/rmdir/Makefile
===================================================================
--- bin/rmdir/Makefile	(revision 324095)
+++ bin/rmdir/Makefile	(working copy)
@@ -1,6 +1,8 @@
 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
 # $FreeBSD$
 
+.include <src.opts.mk>
+
 PACKAGE=runtime
 PROG=	rmdir
 
-- 
Regards,                 | "In theory there is no difference between theory
  Vladimir Zakharov      | and practice. In practice there is."- Yogi Berra



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20170929195657.7u4ldyenygkhbiba>