aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorнаб <[email protected]>2022-02-23 02:39:04 +0100
committerBrian Behlendorf <[email protected]>2022-03-15 15:13:21 -0700
commit85c2cce51cce1f5f01b5b3a50f5997ce0b24a189 (patch)
treef1e37836c33b7ded1510be36328cead467c7de20 /tests
parente09762c6c20f866502767fc113d65ab5efcdf9b6 (diff)
tests: zfs_002_pos: simplify ZFS_ABORT tests
Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #12996
Diffstat (limited to 'tests')
-rwxr-xr-xtests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh
index 51a7ce1d9..796b38928 100755
--- a/tests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh
+++ b/tests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh
@@ -108,12 +108,8 @@ fi
log_must export ZFS_ABORT=yes
for subcmd in "${cmds[@]}" "${badparams[@]}"; do
- zfs $subcmd >/dev/null 2>&1 && log_fail "$subcmd passed incorrectly."
- if [[ ! -e $corefile ]]; then
- log_fail "zfs $subcmd cannot generate core file with " \
- "ZFS_ABORT set."
- fi
- log_must rm -f $corefile
+ log_mustnot eval "zfs $subcmd >/dev/null 2>&1"
+ log_must rm $corefile
done
log_pass "With ZFS_ABORT set, zfs command can abort and generate core file " \