svn commit: r321947 - head/usr.sbin/makefs/tests

Ngie Cooper ngie at FreeBSD.org
Wed Aug 2 20:42:41 UTC 2017


Author: ngie
Date: Wed Aug  2 20:42:39 2017
New Revision: 321947
URL: https://svnweb.freebsd.org/changeset/base/321947

Log:
  Require strings(1) with :o_flag_preparer and :o_flag_publisher
  
  strings(1) might not be installed on the system, e.g., if MK_TOOLCHAIN == no
  
  MFC after:	1 week

Modified:
  head/usr.sbin/makefs/tests/makefs_cd9660_tests.sh

Modified: head/usr.sbin/makefs/tests/makefs_cd9660_tests.sh
==============================================================================
--- head/usr.sbin/makefs/tests/makefs_cd9660_tests.sh	Wed Aug  2 20:27:30 2017	(r321946)
+++ head/usr.sbin/makefs/tests/makefs_cd9660_tests.sh	Wed Aug  2 20:42:39 2017	(r321947)
@@ -277,6 +277,10 @@ o_flag_isolevel_3_cleanup()
 }
 
 atf_test_case o_flag_preparer
+o_flag_preparer_head()
+{
+	atf_set "require.progs" "strings"
+}
 o_flag_preparer_body()
 {
 	create_test_dirs
@@ -292,6 +296,10 @@ o_flag_preparer_body()
 }
 
 atf_test_case o_flag_publisher
+o_flag_publisher_head()
+{
+	atf_set "require.progs" "strings"
+}
 o_flag_publisher_body()
 {
 	create_test_dirs


More information about the svn-src-all mailing list