Lines Matching refs:options

24 #	Verify 'zfs send' can generate valid streams with different options
31 # 5. Do a dry run with different options and verify the generated size
63 if [[ $options == *"P"* ]]; then
76 typeset options=$1
87 log_fail "zfs send $options failed"
90 log_fail "zfs send $options gives wrong size estimates"
119 options="-nv"
121 estimate_size=$(get_estimate_size $full_snapshot $options)
122 log_must verify_size_estimates $options $full_size
125 options="-Pnv"
127 estimate_size=$(get_estimate_size $full_snapshot $options)
128 log_must verify_size_estimates $options $full_size
131 options="-nv"
134 estimate_size=$(get_estimate_size $increamental_snapshot $options)
135 log_must verify_size_estimates $options $increamental_size
138 options="-vPn"
140 estimate_size=$(get_estimate_size $increamental_snapshot $options)
141 log_must verify_size_estimates $options $increamental_size
144 options="-nvi"
149 estimate_size=$(get_estimate_size $increamental_snapshot $options $full_snapshot)
150 log_must verify_size_estimates $options $increamental_send
153 options="-vPni"
155 estimate_size=$(get_estimate_size $increamental_snapshot $options $full_snapshot)
156 log_must verify_size_estimates $options $increamental_send
182 options="-Rnv"
186 estimate_size=$(get_estimate_size $full_snapshot $options)
187 log_must verify_size_estimates $options $recursive_size
190 options="-RvPn"
191 estimate_size=$(get_estimate_size $full_snapshot $options)
192 log_must verify_size_estimates $options $recursive_size
194 log_pass "'zfs send' prints the correct size estimates using '-n' and '-P' options."