From owner-svn-src-all@freebsd.org Thu Oct 22 05:32:47 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11F61A1BDDD; Thu, 22 Oct 2015 05:32:47 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D05A11DBC; Thu, 22 Oct 2015 05:32:46 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9M5WjTM058725; Thu, 22 Oct 2015 05:32:45 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9M5Wj5E058723; Thu, 22 Oct 2015 05:32:45 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510220532.t9M5Wj5E058723@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Thu, 22 Oct 2015 05:32:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r289739 - in head: etc/mtree usr.sbin/makefs usr.sbin/makefs/tests X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Oct 2015 05:32:47 -0000 Author: ngie Date: Thu Oct 22 05:32:45 2015 New Revision: 289739 URL: https://svnweb.freebsd.org/changeset/base/289739 Log: Correctly reintroduce the rudimentary smoke tests I botched up in r289684 MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division Added: head/usr.sbin/makefs/tests/ - copied from r289694, head/usr.sbin/makefs/tests/ Modified: head/etc/mtree/BSD.tests.dist head/usr.sbin/makefs/Makefile Modified: head/etc/mtree/BSD.tests.dist ============================================================================== --- head/etc/mtree/BSD.tests.dist Thu Oct 22 05:01:14 2015 (r289738) +++ head/etc/mtree/BSD.tests.dist Thu Oct 22 05:32:45 2015 (r289739) @@ -596,6 +596,8 @@ .. fstyp .. + makefs + .. newsyslog .. nmtree Modified: head/usr.sbin/makefs/Makefile ============================================================================== --- head/usr.sbin/makefs/Makefile Thu Oct 22 05:01:14 2015 (r289738) +++ head/usr.sbin/makefs/Makefile Thu Oct 22 05:32:45 2015 (r289739) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + PROG= makefs CFLAGS+=-I${.CURDIR} @@ -32,4 +34,8 @@ SRCS+= ffs_tables.c CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd LIBADD= netbsd util sbuf +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include