We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef3a7e commit c70a3ccCopy full SHA for c70a3cc
tests/zfs-tests/tests/functional/casenorm/norm_all_values.ksh
@@ -58,4 +58,15 @@ for form in formC formD formKC formKD; do
58
destroy_testfs
59
done
60
61
+for form in formC formD formKC formKD; do
62
+ create_testfs "-o normalization=$form"
63
+ log_must zfs create -o utf8only=off $TESTPOOL/$TESTFS/$TESTSUBFS
64
+ normalization=$(zfs get -H -o value normalization $TESTPOOL/$TESTFS/$TESTSUBFS)
65
+ if [[ $normalization != "none" ]]; then
66
+ log_fail "Turning off utf8only didn't set normalization to none"
67
+ fi
68
+ log_must zfs destroy $TESTPOOL/$TESTFS/$TESTSUBFS
69
+ destroy_testfs
70
+done
71
+
72
log_pass "Can create FS with all supported normalization forms"
0 commit comments