diff options
4 files changed, 2 insertions, 4 deletions
diff --git a/config/user-commands.m4 b/config/user-commands.m4 index d53bec4ff..b40606c3c 100644 --- a/config/user-commands.m4 +++ b/config/user-commands.m4 @@ -144,7 +144,6 @@ AC_DEFUN([ZFS_AC_CONFIG_USER_COMMANDS_BSD], [ AC_PATH_TOOL(DUMPADM, dumpadm, "") AC_PATH_TOOL(FORMAT, format, "") AC_PATH_TOOL(GETMAJOR, getmajor, "") - AC_PATH_TOOL(ISAINFO, isainfo, "") AC_PATH_TOOL(KSTAT, kstat, "") AC_PATH_TOOL(LOCKFS, lockfs, "") AC_PATH_TOOL(LOFIADM, lofiadm, "") diff --git a/tests/zfs-tests/include/commands.cfg.in b/tests/zfs-tests/include/commands.cfg.in index e7fb5ff13..c8733e970 100644 --- a/tests/zfs-tests/include/commands.cfg.in +++ b/tests/zfs-tests/include/commands.cfg.in @@ -48,7 +48,6 @@ export HEAD="@HEAD@" export HOSTNAME="@HOSTNAME@" export ID="@ID@" export IOSTAT="@IOSTAT@" -export ISAINFO="@ISAINFO@" export KILL="@KILL@" export KSH="@KSH@" export KSTAT="@KSTAT@" diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_002_pos.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_002_pos.ksh index 5e27ce10f..9c4e67e62 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_002_pos.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/zfs_destroy_002_pos.ksh @@ -73,7 +73,7 @@ if is_global_zone ; then log_must $ZFS create -V $VOLSIZE $TESTPOOL/$TESTVOL # Max volume size is 1TB on 32-bit systems - [[ $($ISAINFO -b) == 32 ]] && \ + [[ is_32bit ]] && \ BIGVOLSIZE=1Tb log_must $ZFS create -sV $BIGVOLSIZE $TESTPOOL/$TESTVOL1 fi diff --git a/tests/zfs-tests/tests/functional/largest_pool/largest_pool_001_pos.ksh b/tests/zfs-tests/tests/functional/largest_pool/largest_pool_001_pos.ksh index 8ca4d9dd7..14765b8db 100755 --- a/tests/zfs-tests/tests/functional/largest_pool/largest_pool_001_pos.ksh +++ b/tests/zfs-tests/tests/functional/largest_pool/largest_pool_001_pos.ksh @@ -126,7 +126,7 @@ for volsize in $VOLSIZES; do str=$($ZFS create -sV $volsize $TESTPOOL2/$TESTVOL 2>&1) ret=$? if (( ret != 0 )); then - if [[ $($ISAINFO -b) == 32 && \ + if [[ is_32bit && \ $str == *${VOL_LIMIT_KEYWORD1}* || \ $str == *${VOL_LIMIT_KEYWORD2}* || \ $str == *${VOL_LIMIT_KEYWORD3}* ]] |