svn commit: r290585 - in stable/10: etc/mtree tests/sys tests/sys/posixshm tools/regression/posixshm tools/test/posixshm

Garrett Cooper ngie at FreeBSD.org
Mon Nov 9 07:49:40 UTC 2015


Author: ngie
Date: Mon Nov  9 07:49:39 2015
New Revision: 290585
URL: https://svnweb.freebsd.org/changeset/base/290585

Log:
  MFC r289441:
  
  Integrate tools/test/posixshm and tools/regression/posixshm into the FreeBSD
  test suite as tests/sys/posixshm
  
  Some other highlights:
  - Convert the testcases over to ATF
  - Don't use hardcoded paths to /tmp (which violate the ATF/kyua samdbox); use
    mkstemp to generate temporary paths for non-SHM_ANON shm objects.
  
  Sponsored by: EMC / Isilon Storage Division

Added:
  stable/10/tests/sys/posixshm/
     - copied from r289441, head/tests/sys/posixshm/
Deleted:
  stable/10/tools/regression/posixshm/
  stable/10/tools/test/posixshm/
Modified:
  stable/10/etc/mtree/BSD.tests.dist
  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	Mon Nov  9 07:41:28 2015	(r290584)
+++ stable/10/etc/mtree/BSD.tests.dist	Mon Nov  9 07:49:39 2015	(r290585)
@@ -234,6 +234,8 @@
             unlink
             ..
         ..
+        posixshm
+        ..
         vfs
         ..
         vm

Modified: stable/10/tests/sys/Makefile
==============================================================================
--- stable/10/tests/sys/Makefile	Mon Nov  9 07:41:28 2015	(r290584)
+++ stable/10/tests/sys/Makefile	Mon Nov  9 07:49:39 2015	(r290585)
@@ -11,6 +11,7 @@ TESTS_SUBDIRS+=		kern
 TESTS_SUBDIRS+=		kqueue
 TESTS_SUBDIRS+=		mqueue
 TESTS_SUBDIRS+=		netinet
+TESTS_SUBDIRS+=		posixshm
 TESTS_SUBDIRS+=		vfs
 TESTS_SUBDIRS+=		vm
 


More information about the svn-src-all mailing list