diff options
author | Ryan Moeller <[email protected]> | 2021-04-01 11:49:41 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-01 08:49:41 -0700 |
commit | c05eec32a7f7eeeb17c328f39da742a8096a5991 (patch) | |
tree | 40766258a377dd95de1d6a7d3ad50d977177cdb4 /tests | |
parent | 032a213e2e6b791364301e9de029e7b8189a69a0 (diff) |
Allow pool names that look like Solaris disk names
Nothing bad happens if a prefix of your pool name matches a disk name.
This is a bit of a silly restriction at this point.
Reviewed-by: Richard Laager <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #11781
Closes #11813
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/pool_names/pool_names_002_neg.ksh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/zfs-tests/tests/functional/pool_names/pool_names_002_neg.ksh b/tests/zfs-tests/tests/functional/pool_names/pool_names_002_neg.ksh index 0c96e1999..0b40f7cd2 100755 --- a/tests/zfs-tests/tests/functional/pool_names/pool_names_002_neg.ksh +++ b/tests/zfs-tests/tests/functional/pool_names/pool_names_002_neg.ksh @@ -106,7 +106,7 @@ do done log_note "Verify invalid pool names fail" -set -A POOLNAME "c0t0d0s0" "c0t0d0" "c0t0d19" "c0t50000E0108D279d0" \ +set -A POOLNAME \ "mirror" "raidz" ",," ",,,,,,,,,,,,,,,,,,,,,,,,," \ "2222222222222222222" "mirror_pool" "raidz_pool" \ "mirror-pool" "raidz-pool" "spare" "spare_pool" \ |