From owner-svn-src-stable-10@freebsd.org Sun Mar 13 01:20:21 2016 Return-Path: Delivered-To: svn-src-stable-10@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 E169BACD31A; Sun, 13 Mar 2016 01:20:21 +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 B2075D26; Sun, 13 Mar 2016 01:20:21 +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 u2D1KKPW088568; Sun, 13 Mar 2016 01:20:20 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2D1KK7o088567; Sun, 13 Mar 2016 01:20:20 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201603130120.u2D1KK7o088567@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 13 Mar 2016 01:20:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r296788 - stable/10/usr.sbin/makefs/tests X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Mar 2016 01:20:22 -0000 Author: ngie Date: Sun Mar 13 01:20:20 2016 New Revision: 296788 URL: https://svnweb.freebsd.org/changeset/base/296788 Log: MFC r294891: Require /sbin/mount_cd9660 when running the cd9660 tests In some cases the test system might not have mount_cd9660(8). Don't implicitly rely on it while testing cd9660 support; explicitly rely on it Modified: stable/10/usr.sbin/makefs/tests/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.sbin/makefs/tests/Makefile ============================================================================== --- stable/10/usr.sbin/makefs/tests/Makefile Sun Mar 13 01:17:53 2016 (r296787) +++ stable/10/usr.sbin/makefs/tests/Makefile Sun Mar 13 01:20:20 2016 (r296788) @@ -10,6 +10,8 @@ BINDIR= ${TESTSDIR} SCRIPTS+= makefs_tests_common.sh SCRIPTSNAME_makefs_tests_common.sh= makefs_tests_common.sh +TEST_METADATA.makefs_cd9660_tests+= required_files="/sbin/mount_cd9660" + .for t in ${ATF_TESTS_SH} TEST_METADATA.$t+= required_user="root" .endfor