| /test/ontest-stc2/src/suites/zfs/tests/functional/poolversion/ |
| poolversion_001_pos.ksh | 40 # zpool set version can upgrade a pool 43 # 1. Taking a version 1 pool 44 # 2. For all known versions, set the version of the pool using zpool set 45 # 3. Verify that pools version 58 log_assert "zpool set version can upgrade a pool" 59 for version in 1 2 3 4 5 6 7 8 61 log_must $ZPOOL set version=$version $TESTPOOL 62 ACTUAL=$($ZPOOL get version $TESTPOOL | $GREP version \ [all...] |
| poolversion_002_pos.ksh | 40 # zpool set version can only increment pool version 43 # 1. Set a version 1 pool to be a version 6 pool 44 # 2. Verify it's set to version 6 46 # 4. Verify it's still set to version 6 59 log_assert "zpool set version can only increment pool version" 61 log_must $ZPOOL set version=6 $TESTPOOL2 62 # verify it's actually that version - by checking the version propert [all...] |
| setup.ksh | 34 $ZPOOL set 2>&1 | $GREP version > /dev/null 37 log_unsupported "zpool version property not supported on this system." 40 # create a version 1 pool 42 log_must $ZPOOL create -o version=1 $TESTPOOL /tmp/zpool_version_1.dat 45 # create another version 1 pool 47 log_must $ZPOOL create -o version=1 $TESTPOOL2 /tmp/zpool2_version_1.dat
|
| /test/stcnv/usr/src/suites/fs/zfs/tests/functional/poolversion/ |
| poolversion_001_pos.ksh | 40 # zpool set version can upgrade a pool 43 # 1. Taking a version 1 pool 44 # 2. For all known versions, set the version of the pool using zpool set 45 # 3. Verify that pools version 58 log_assert "zpool set version can upgrade a pool" 59 for version in 1 2 3 4 5 6 7 8 61 log_must $ZPOOL set version=$version $TESTPOOL 62 ACTUAL=$($ZPOOL get version $TESTPOOL | $GREP version \ [all...] |
| poolversion_002_pos.ksh | 40 # zpool set version can only increment pool version 43 # 1. Set a version 1 pool to be a version 6 pool 44 # 2. Verify it's set to version 6 46 # 4. Verify it's still set to version 6 59 log_assert "zpool set version can only increment pool version" 61 log_must $ZPOOL set version=6 $TESTPOOL2 62 # verify it's actually that version - by checking the version propert [all...] |
| setup.ksh | 34 $ZPOOL set 2>&1 | $GREP version > /dev/null 37 log_unsupported "zpool version property not supported on this system." 40 # create a version 1 pool 42 log_must $ZPOOL create -o version=1 $TESTPOOL /tmp/zpool_version_1.dat 45 # create another version 1 pool 47 log_must $ZPOOL create -o version=1 $TESTPOOL2 /tmp/zpool2_version_1.dat
|
| /test/ohacts/src/tset/geo/scripts/ |
| check_dsstat.ksh | 44 version=`~scate/tset/geo/bin/check_sndrii_version` 46 maj_ver=`echo $version | awk -F'.' '{ print $1 }'` 47 min_ver=`echo $version | awk -F'.' '{ print $2 }'`
|
| check_repl_complete.ksh | 44 version=`~scate/tset/geo/bin/check_sndrii_version` 46 maj_ver=`echo $version | awk -F'.' '{ print $1 }'` 47 min_ver=`echo $version | awk -F'.' '{ print $2 }'`
|
| /test/ontest-stc2/src/suites/zfs/tests/functional/cli_root/zfs_upgrade/ |
| zfs_upgrade.kshlib | 38 typeset -i vp=$(get_pool_prop version $pool) 39 typeset -i version 41 for version in $ZFS_ALL_VERSIONS ; do 43 eval verfs=\$ZFS_VERSION_$version 48 if (( vp < SPA_VER_CIFS && version >= ZPL_VER_CIFS )); then 49 log_mustnot $ZFS create -o version=${version} ${current_fs} 52 log_must $ZFS create -o version=${version} ${current_fs} 61 version=${subversion} ${current_fs}/$subverf [all...] |
| zfs_upgrade_003_pos.ksh | 40 # Executing 'zfs upgrade [-V version] filesystem' command succeeds, 41 # it could upgrade a filesystem to specific version or current version. 44 # 1. Prepare a set of datasets which contain old-version and current version. 45 # 2. Execute 'zfs upgrade [-V version] filesystem', verify return 0, 71 for version in $ZFS_ALL_VERSIONS ; do 73 eval verfs=\$ZFS_VERSION_$version 77 log_must $ZFS create -o version=${version} ${current_fs [all...] |
| zfs_upgrade_004_pos.ksh | 40 # Executing 'zfs upgrade -r [-V version] filesystem' command succeeds, 41 # it upgrade filesystem recursively to specific or current version. 44 # 1. Prepare a set of datasets which contain old-version and current version. 45 # 2. Execute 'zfs upgrade -r [-V version] filesystem', verify return 0, 71 for version in $ZFS_ALL_VERSIONS ; do 73 eval verfs=\$ZFS_VERSION_$version 77 log_must $ZFS create -o version=${version} ${current_fs} 84 log_must $ZFS create -o version=${subversion} [all...] |
| zfs_upgrade_005_pos.ksh | 40 # Executing 'zfs upgrade [-V version] -a' command succeeds, 41 # it upgrade all filesystems to specific or current version. 44 # 1. Prepare a set of datasets which contain old-version and current version. 45 # 2. Execute 'zfs upgrade [-V version] -a', verify return 0, 71 for version in $ZFS_ALL_VERSIONS ; do 73 eval verfs=\$ZFS_VERSION_$version 77 log_must $ZFS create -o version=${version} ${current_fs} 84 log_must $ZFS create -o version=${subversion} [all...] |
| /test/stcnv/usr/src/suites/fs/zfs/tests/functional/cli_root/zfs_upgrade/ |
| zfs_upgrade.kshlib | 33 # When pool version is 9, fs whose version is 4 can be created. 48 typeset -i vp=$(get_pool_prop version $pool) 49 typeset -i version 54 for version in $ZFS_ALL_VERSIONS ; do 56 eval verfs=\$ZFS_VERSION_$version 65 if (( version == zpl_version )); then 72 log_mustnot $ZFS create -o version=${version} ${current_fs} 75 log_must $ZFS create -o version=${version} ${current_fs [all...] |
| zfs_upgrade_003_pos.ksh | 40 # Executing 'zfs upgrade [-V version] filesystem' command succeeds, 41 # it could upgrade a filesystem to specific version or current version. 44 # 1. Prepare a set of datasets which contain old-version and current version. 45 # 2. Execute 'zfs upgrade [-V version] filesystem', verify return 0, 71 for version in $ZFS_ALL_VERSIONS ; do 73 eval verfs=\$ZFS_VERSION_$version 77 log_must $ZFS create -o version=${version} ${current_fs [all...] |
| zfs_upgrade_004_pos.ksh | 40 # Executing 'zfs upgrade -r [-V version] filesystem' command succeeds, 41 # it upgrade filesystem recursively to specific or current version. 44 # 1. Prepare a set of datasets which contain old-version and current version. 45 # 2. Execute 'zfs upgrade -r [-V version] filesystem', verify return 0, 71 for version in $ZFS_ALL_VERSIONS ; do 73 eval verfs=\$ZFS_VERSION_$version 77 log_must $ZFS create -o version=${version} ${current_fs} 84 log_must $ZFS create -o version=${subversion} [all...] |
| zfs_upgrade_005_pos.ksh | 40 # Executing 'zfs upgrade [-V version] -a' command succeeds, 41 # it upgrade all filesystems to specific or current version. 44 # 1. Prepare a set of datasets which contain old-version and current version. 45 # 2. Execute 'zfs upgrade [-V version] -a', verify return 0, 71 for version in $ZFS_ALL_VERSIONS ; do 73 eval verfs=\$ZFS_VERSION_$version 77 log_must $ZFS create -o version=${version} ${current_fs} 84 log_must $ZFS create -o version=${subversion} [all...] |
| /test/stcnv/usr/src/suites/storage/ndmp/protocol/tests/protocol-tests/CONNECT/ |
| tp_CONNECT.pl | 54 my $version = "4"; 55 my %args = ('option',$option,'inf',$interface,'err',$error,'ndmp_ver',$version); 61 my $version = "5"; 62 my %args = ('option',$option,'inf',$interface,'err',$error,'ndmp_ver',$version); 68 my $version = "4"; 69 my %args = ('option',$option,'inf',$interface,'err',$error,'ndmp_ver',$version); 75 my $version = "4"; 76 my %args = ('option',$option,'inf',$interface,'err',$error,'ndmp_ver',$version);
|
| /test/stcnv/usr/src/tools/diskomizer/include/usage_tracking/ |
| usage_tracking.h | 48 const char *key, const char *version, const char *id); 58 const char *version);
|
| /test/ontest-stc2/src/suites/zfs/tests/functional/cli_root/zfs_set/ |
| version_001_neg.ksh | 40 # Valid version values should be positive integers only. 45 # 2) Attempt to set each invalid version value in turn on a 47 # 3) Verify that attempt fails and the version value remains 62 if ! fs_prop_exist "version" ; then 63 log_unsupported "version is not supported by this release." 66 log_assert "Verify invalid version values are rejected" 82 orig_val=$(get_prop version $obj) 85 $ZFS set version=${values[$i]} $obj > /dev/null 2>&1 87 log_note "$ZFS set version=${values[$i]} $obj" 88 log_fail "The above version set returned 0! [all...] |
| /test/stcnv/usr/src/suites/fs/zfs/tests/functional/cli_root/zfs_set/ |
| version_001_neg.ksh | 40 # Valid version values should be positive integers only. 45 # 2) Attempt to set each invalid version value in turn on a 47 # 3) Verify that attempt fails and the version value remains 62 if ! fs_prop_exist "version" ; then 63 log_unsupported "version is not supported by this release." 66 log_assert "Verify invalid version values are rejected" 82 orig_val=$(get_prop version $obj) 85 $ZFS set version=${values[$i]} $obj > /dev/null 2>&1 87 log_note "$ZFS set version=${values[$i]} $obj" 88 log_fail "The above version set returned 0! [all...] |
| /test/ontest-stc2/src/suites/security/kmf/tests/kmf_api/ |
| kmf_set_cert_version.c | 37 * parameters, or if version number is invalid, 44 * 3) Given an invalid version number(other than 1, 2), 65 uint32_t version = 2; local 71 if (compare_result(kmf_set_cert_version(NULL, version), exp_ret) != 0)
|
| kmf_set_csr_version.c | 37 * parameters, or if version number is invalid, 44 * 3) Given an invalid version number(other than 1, 2), 65 uint32_t version = 2; local 71 if (compare_result(kmf_set_csr_version(NULL, version), exp_ret) != 0)
|
| /test/stcnv/usr/src/suites/security/kmf/tests/kmf_api/ |
| kmf_set_cert_version.c | 37 * parameters, or if version number is invalid, 44 * 3) Given an invalid version number(other than 1, 2), 65 uint32_t version = 2; local 71 if (compare_result(kmf_set_cert_version(NULL, version), exp_ret) != 0)
|
| kmf_set_csr_version.c | 37 * parameters, or if version number is invalid, 44 * 3) Given an invalid version number(other than 1, 2), 65 uint32_t version = 2; local 71 if (compare_result(kmf_set_csr_version(NULL, version), exp_ret) != 0)
|
| /test/ohacts/src/ |
| README | 29 This directory tree contains the open-source version of the Open HA Cluster
|