From owner-svn-src-head@FreeBSD.ORG Mon Apr 27 06:49:29 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00D0FB84; Mon, 27 Apr 2015 06:49:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9BBF179D; Mon, 27 Apr 2015 06:49:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3R6nSZg054473; Mon, 27 Apr 2015 06:49:28 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3R6nR68054468; Mon, 27 Apr 2015 06:49:27 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201504270649.t3R6nR68054468@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Mon, 27 Apr 2015 06:49:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282057 - in head/lib: libc librt libthr msun X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2015 06:49:29 -0000 Author: ngie Date: Mon Apr 27 06:49:27 2015 New Revision: 282057 URL: https://svnweb.freebsd.org/changeset/base/282057 Log: Build/install libc, librt, libthr, and msun NetBSD test suites on all architectures MFC after: 1 week Deleted: head/lib/libc/Makefile.amd64 head/lib/libc/Makefile.i386 head/lib/librt/Makefile.amd64 head/lib/librt/Makefile.i386 head/lib/libthr/Makefile.amd64 head/lib/libthr/Makefile.i386 head/lib/msun/Makefile.amd64 head/lib/msun/Makefile.i386 Modified: head/lib/libc/Makefile head/lib/librt/Makefile head/lib/libthr/Makefile head/lib/msun/Makefile Directory Properties: head/ (props changed) Modified: head/lib/libc/Makefile ============================================================================== --- head/lib/libc/Makefile Mon Apr 27 06:46:33 2015 (r282056) +++ head/lib/libc/Makefile Mon Apr 27 06:49:27 2015 (r282057) @@ -157,7 +157,9 @@ libkern.${LIBC_ARCH}:: ${KMSRCS} ${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH} .endif -.include +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif .include Modified: head/lib/librt/Makefile ============================================================================== --- head/lib/librt/Makefile Mon Apr 27 06:46:33 2015 (r282056) +++ head/lib/librt/Makefile Mon Apr 27 06:49:27 2015 (r282057) @@ -19,6 +19,8 @@ PRECIOUSLIB= VERSION_MAP= ${.CURDIR}/Version.map -.include +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif .include Modified: head/lib/libthr/Makefile ============================================================================== --- head/lib/libthr/Makefile Mon Apr 27 06:46:33 2015 (r282056) +++ head/lib/libthr/Makefile Mon Apr 27 06:49:27 2015 (r282057) @@ -61,6 +61,8 @@ SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthr SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a .endif -.include +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif .include Modified: head/lib/msun/Makefile ============================================================================== --- head/lib/msun/Makefile Mon Apr 27 06:46:33 2015 (r282056) +++ head/lib/msun/Makefile Mon Apr 27 06:49:27 2015 (r282057) @@ -221,6 +221,8 @@ MLINKS+=trunc.3 truncf.3 trunc.3 truncl. .include -.include +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif .include