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
MFC after:	3 weeks
Sponsored by:	Spectra Logic Corp
This commit is contained in:
asomers 2017-06-20 19:00:55 +00:00
parent a514510c05
commit 5b4e9524c4

View File

@ -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()