Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Feb 2014 22:19:25 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r261857 - in stable/10: etc/mtree tests tests/sys tools/regression/sockets/unix_seqpacket tools/regression/sockets/unix_seqpacket_exercise
Message-ID:  <201402132219.s1DMJPH8087115@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers
Date: Thu Feb 13 22:19:24 2014
New Revision: 261857
URL: http://svnweb.freebsd.org/changeset/base/261857

Log:
  MFC r261081, r261133, and r261615
  
  r261081
  	Replace the old unix_seqpacket and unix_seqpacket_exercise
  	tests, which were a little broken and not automatable, with
  	unix_seqpacket_test.  It's coverage is a superset of the old
  	tests and it uses ATF.  It includes test cases for bugs
  	kern/185813 and kern/185812.
  
  r261133
  	Fix the Makefiles so that the tests I submitted in r261081 will
  	actually get built.
  
  r261615
  	tests/sys/Makefile
  		use TESTS_SUBDIRS for kern instead of SUBDIRS.  I don't
  		think it makes a difference in this case, but
  		TESTS_SUBDIRS is generally correct for subdirectories
  		that contain tests.

Added:
  stable/10/tests/sys/
     - copied from r261081, head/tests/sys/
Deleted:
  stable/10/tools/regression/sockets/unix_seqpacket/
  stable/10/tools/regression/sockets/unix_seqpacket_exercise/
Modified:
  stable/10/etc/mtree/BSD.tests.dist
  stable/10/tests/Makefile
  stable/10/tests/sys/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/mtree/BSD.tests.dist
==============================================================================
--- stable/10/etc/mtree/BSD.tests.dist	Thu Feb 13 22:18:27 2014	(r261856)
+++ stable/10/etc/mtree/BSD.tests.dist	Thu Feb 13 22:19:24 2014	(r261857)
@@ -48,6 +48,10 @@
                 ..
             ..
         ..
+        sys
+            kern
+            ..
+        ..
         usr.bin
             atf
                 atf-sh

Modified: stable/10/tests/Makefile
==============================================================================
--- stable/10/tests/Makefile	Thu Feb 13 22:18:27 2014	(r261856)
+++ stable/10/tests/Makefile	Thu Feb 13 22:19:24 2014	(r261857)
@@ -2,7 +2,7 @@
 
 .include <bsd.own.mk>
 
-SUBDIR= # still empty
+SUBDIR= sys
 
 TESTSDIR= ${TESTSBASE}
 KYUAFILE= yes

Modified: stable/10/tests/sys/Makefile
==============================================================================
--- head/tests/sys/Makefile	Thu Jan 23 17:26:28 2014	(r261081)
+++ stable/10/tests/sys/Makefile	Thu Feb 13 22:19:24 2014	(r261857)
@@ -2,12 +2,11 @@
 
 .include <bsd.own.mk>
 
+.PATH: ${.CURDIR}/..
+
+TESTS_SUBDIRS+=		kern
 TESTSDIR= ${TESTSBASE}/sys
 
 KYUAFILE= yes
 
-CLEANFILES+= Kyuafile
-Kyuafile: ${.CURDIR}/../Kyuafile
-	cp -f ${.CURDIR}/../Kyuafile .
-
 .include <bsd.test.mk>



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