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>
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to