aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMike Swanson <[email protected]>2021-10-29 16:59:18 -0700
committerGitHub <[email protected]>2021-10-29 16:59:18 -0700
commit321c1b6f3974ee46de75630824ace6cd205357c2 (patch)
tree03eeff4b4b27f0f08316676cbbefbe5bcfbbd390 /tests
parent4d1a3ba6eda1edf46e973c22d29f7abcaa751292 (diff)
Disable normalization implicitly when setting "utf8only=off"
When a parent dataset has normalization set to any value other than "none", and a file system is created with the property "utf8only=off", implicitly also set "normalization=none" instead of overriding the desire for a non-UTF8 enforcing file system. Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Mike Swanson <[email protected]> Closes #11892 Closes #12038
Diffstat (limited to 'tests')
-rwxr-xr-xtests/zfs-tests/tests/functional/casenorm/norm_all_values.ksh11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/zfs-tests/tests/functional/casenorm/norm_all_values.ksh b/tests/zfs-tests/tests/functional/casenorm/norm_all_values.ksh
index 87779a710..cae15ebc4 100755
--- a/tests/zfs-tests/tests/functional/casenorm/norm_all_values.ksh
+++ b/tests/zfs-tests/tests/functional/casenorm/norm_all_values.ksh
@@ -58,4 +58,15 @@ for form in formC formD formKC formKD; do
destroy_testfs
done
+for form in formC formD formKC formKD; do
+ create_testfs "-o normalization=$form"
+ log_must zfs create -o utf8only=off $TESTPOOL/$TESTFS/$TESTSUBFS
+ normalization=$(zfs get -H -o value normalization $TESTPOOL/$TESTFS/$TESTSUBFS)
+ if [[ $normalization != "none" ]]; then
+ log_fail "Turning off utf8only didn't set normalization to none"
+ fi
+ log_must zfs destroy $TESTPOOL/$TESTFS/$TESTSUBFS
+ destroy_testfs
+done
+
log_pass "Can create FS with all supported normalization forms"