]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/cli_root/zinject/zinject_args.ksh
f8a8ffbb7b0ed17a30bb5dbd51f18faac803e67d
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zinject / zinject_args.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 https://opensource.org/licenses/CDDL-1.0.
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 (c) 2024, Klara Inc.
25 #
26
27 #
28 # TODO: this only checks that the set of valid device fault types. It should
29 # check all the other options, and that they work, and everything really.
30 #
31
32 . $STF_SUITE/include/libtest.shlib
33
34 verify_runnable "global"
35
36 log_assert "Check zinject parameters."
37
38 log_onexit cleanup
39
40 DISK1=${DISKS%% *}
41
42 function cleanup
43 {
44 zinject -c all
45 default_cleanup_noexit
46 }
47
48 function test_device_fault
49 {
50 typeset -a errno=("io" "decompress" "decrypt" "nxio" "dtl" "corrupt")
51 for e in ${errno[@]}; do
52 log_must eval \
53 "zinject -d $DISK1 -e $e -T read -f 0.001 $TESTPOOL"
54 done
55 zinject -c all
56 }
57
58 default_mirror_setup_noexit $DISKS
59
60 test_device_fault
61
62 log_pass "zinject parameters work as expected."