Author: brd (doc,ports committer)
Date: Mon Mar 27 15:20:31 2017
New Revision: 316028
URL: https://svnweb.freebsd.org/changeset/base/316028

Log:
  Check to see if the kernel has cd9660 before running tests that require it
  
  Approved by:  ngie
  MFC after:    1 week
  Differential Revision:        https://reviews.freebsd.org/D10096

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   Mon Mar 27 15:08:02 
2017        (r316027)
+++ head/usr.sbin/makefs/tests/makefs_cd9660_tests.sh   Mon Mar 27 15:20:31 
2017        (r316028)
@@ -61,6 +61,11 @@ check_base_iso9660_image_contents()
        atf_check -e empty -o empty -s exit:0 test -f $TEST_MOUNT_DIR/c
 }
 
+check_cd9660_support() {
+       kldstat -m cd9660 || \
+               atf_skip "Requires cd9660 filesystem support to be present in 
the kernel"
+}
+
 atf_test_case D_flag cleanup
 D_flag_body()
 {
@@ -91,6 +96,8 @@ D_flag_cleanup()
 atf_test_case F_flag cleanup
 F_flag_body()
 {
+       check_cd9660_support
+
        create_test_inputs
 
        atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
@@ -110,6 +117,8 @@ F_flag_cleanup()
 atf_test_case from_mtree_spec_file cleanup
 from_mtree_spec_file_body()
 {
+       check_cd9660_support
+
        create_test_inputs
 
        atf_check -e empty -o save:$TEST_SPEC_FILE -s exit:0 \
@@ -130,6 +139,8 @@ from_mtree_spec_file_cleanup()
 atf_test_case from_multiple_dirs cleanup
 from_multiple_dirs_body()
 {
+       check_cd9660_support
+
        test_inputs_dir2=$TMPDIR/inputs2
 
        create_test_inputs
@@ -152,6 +163,8 @@ from_multiple_dirs_cleanup()
 atf_test_case from_single_dir cleanup
 from_single_dir_body()
 {
+       check_cd9660_support
+
        create_test_inputs
 
        atf_check -e empty -o empty -s exit:0 \
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to