]> xenbits.xensource.com Git - people/liuw/freebsd.git/commitdiff
Add a regression test for r289899 to validate rockridge encoding
authorngie <ngie@FreeBSD.org>
Sat, 24 Oct 2015 23:21:08 +0000 (23:21 +0000)
committerngie <ngie@FreeBSD.org>
Sat, 24 Oct 2015 23:21:08 +0000 (23:21 +0000)
of device types

X-MFC with: r289899
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division

usr.sbin/makefs/tests/makefs_cd9660_tests.sh

index 5edd6187b88df58cffcd73d314067796a29c3b9d..e476cf1bf8dd98770599852a9e616e978a9c2f9b 100755 (executable)
@@ -271,6 +271,32 @@ o_flag_rockridge_cleanup()
        common_cleanup
 }
 
+atf_test_case o_flag_rockridge_dev_nodes cleanup
+o_flag_rockridge_dev_nodes_head()
+{
+       atf_set "descr" "Functional tests to ensure that dev nodes are handled properly with rockridge extensions (NetBSD kern/48852; FreeBSD bug 203648)"
+}
+o_flag_rockridge_dev_nodes_body()
+{
+       create_test_dirs
+
+       (tar -cvf - -C /dev null && touch .tar_ok) | \
+       atf_check -e not-empty -o empty -s exit:0 tar -xvf - -C "$TEST_INPUTS_DIR"
+
+       atf_check -e empty -o empty -s exit:0 test -c $TEST_INPUTS_DIR/null
+       atf_check -e empty -o empty -s exit:0 test -f .tar_ok
+
+       atf_check -e empty -o empty -s exit:0 \
+           $MAKEFS -o rockridge $TEST_IMAGE $TEST_INPUTS_DIR
+
+       mount_image
+       check_image_contents
+}
+o_flag_rockridge_dev_nodes_cleanup()
+{
+       common_cleanup
+}
+
 atf_init_test_cases()
 {
        atf_add_test_case D_flag
@@ -285,4 +311,5 @@ atf_init_test_cases()
        atf_add_test_case o_flag_preparer
        atf_add_test_case o_flag_publisher
        atf_add_test_case o_flag_rockridge
+       atf_add_test_case o_flag_rockridge_dev_nodes
 }