svn commit: r320681 - stable/11/usr.sbin/makefs/tests

Alan Somers asomers at FreeBSD.org
Wed Jul 5 15:59:53 UTC 2017


Author: asomers
Date: Wed Jul  5 15:59:52 2017
New Revision: 320681
URL: https://svnweb.freebsd.org/changeset/base/320681

Log:
  MFC r320163:
  
  Fix usr.sbin/makefs/makefs_ffs_tests when /etc/fstab does not exist
  
  dumpfs prints a harmless warning message (via ufs_disk_fillout(3) and
  getfsfile(3)), when /etc/fstab does not exist.  We can ignore it.
  
  PR:		220165
  Reported by:	gjb
  Sponsored by:	Spectra Logic Corp

Modified:
  stable/11/usr.sbin/makefs/tests/makefs_ffs_tests.sh
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/makefs/tests/makefs_ffs_tests.sh
==============================================================================
--- stable/11/usr.sbin/makefs/tests/makefs_ffs_tests.sh	Wed Jul  5 15:58:23 2017	(r320680)
+++ stable/11/usr.sbin/makefs/tests/makefs_ffs_tests.sh	Wed Jul  5 15:59:52 2017	(r320681)
@@ -182,7 +182,7 @@ o_flag_version_1_body()
 	    $MAKEFS -M 1m -o version=$ffs_version $TEST_IMAGE $TEST_INPUTS_DIR
 
 	mount_image
-	atf_check -e empty -o match:"$ffs_label" dumpfs $TEST_MOUNT_DIR
+	atf_check -e ignore -o match:"$ffs_label" dumpfs $TEST_MOUNT_DIR
 	check_ffs_image_contents
 }
 o_flag_version_1_cleanup()
@@ -214,7 +214,7 @@ o_flag_version_2_body()
 	    $MAKEFS -M 1m -o version=$ffs_version $TEST_IMAGE $TEST_INPUTS_DIR
 
 	mount_image
-	atf_check -e empty -o match:"$ffs_label" dumpfs $TEST_MOUNT_DIR
+	atf_check -e ignore -o match:"$ffs_label" dumpfs $TEST_MOUNT_DIR
 	check_ffs_image_contents
 }
 o_flag_version_2_cleanup()


More information about the svn-src-stable-11 mailing list