ZTS: Eliminate random and shuf, consolidate code

Both GNU and FreeBSD sort have -R to randomize input.

Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #9900
This commit is contained in:
Ryan Moeller 2020-01-28 11:36:33 -05:00 committed by Brian Behlendorf
parent 25df8fb42f
commit 7a298ae975
2 changed files with 1 additions and 7 deletions

View File

@ -123,7 +123,6 @@ export SYSTEM_FILES_FREEBSD='chflags
mkfifo
newfs
pw
random
rmextattr
setextattr
sha256
@ -161,7 +160,6 @@ export SYSTEM_FILES_LINUX='attr
setenforce
setfattr
sha256sum
shuf
udevadm
useradd
userdel

View File

@ -3966,11 +3966,7 @@ function range_shuffle # begin end
typeset -i begin=$1
typeset -i end=$2
if is_freebsd; then
seq ${begin} ${end} | random -f -
else
shuf -i ${begin}-${end}
fi
seq ${begin} ${end} | sort -R
}
#