]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_001_pos.ksh
Add the ZFS Test Suite
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zfs_create / zfs_create_001_pos.ksh
1 #!/bin/ksh -p
2 #
3 # CDDL HEADER START
4 #
5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
8 #
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
13 #
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 #
20 # CDDL HEADER END
21 #
22
23 #
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27 . $STF_SUITE/include/libtest.shlib
28
29 #
30 # DESCRIPTION:
31 # 'zfs create <filesystem>' can create a ZFS filesystem in the namespace.
32 #
33 # STRATEGY:
34 # 1. Create a ZFS filesystem in the storage pool
35 # 2. Verify the filesystem created successfully
36 #
37
38 verify_runnable "both"
39
40
41 function cleanup
42 {
43 typeset -i i=0
44 while (( $i < ${#datasets[*]} )); do
45 datasetexists ${datasets[$i]} && \
46 log_must $ZFS destroy -f ${datasets[$i]}
47 ((i = i + 1))
48 done
49 }
50
51 log_onexit cleanup
52
53 set -A datasets "$TESTPOOL/$TESTFS1" "$TESTPOOL/$LONGFSNAME" "$TESTPOOL/..." \
54 "$TESTPOOL/_1234_"
55
56 log_assert "'zfs create <filesystem>' can create a ZFS filesystem in the namespace."
57
58 typeset -i i=0
59 while (( $i < ${#datasets[*]} )); do
60 log_must $ZFS create ${datasets[$i]}
61 datasetexists ${datasets[$i]} || \
62 log_fail "zfs create ${datasets[$i]} fail."
63 ((i = i + 1))
64 done
65
66 log_pass "'zfs create <filesystem>' works as expected."