svn commit: r322690 - stable/11/usr.sbin/makefs/tests
Ngie Cooper
ngie at FreeBSD.org
Sat Aug 19 01:45:03 UTC 2017
Author: ngie
Date: Sat Aug 19 01:45:02 2017
New Revision: 322690
URL: https://svnweb.freebsd.org/changeset/base/322690
Log:
MFC r321947:
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
Modified:
stable/11/usr.sbin/makefs/tests/makefs_cd9660_tests.sh
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/usr.sbin/makefs/tests/makefs_cd9660_tests.sh
==============================================================================
--- stable/11/usr.sbin/makefs/tests/makefs_cd9660_tests.sh Sat Aug 19 01:43:02 2017 (r322689)
+++ stable/11/usr.sbin/makefs/tests/makefs_cd9660_tests.sh Sat Aug 19 01:45:02 2017 (r322690)
@@ -264,6 +264,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
@@ -279,6 +283,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