Skip to content

Commit

Permalink
ZTS: Use /dev/urandom instead of /dev/random
Browse files Browse the repository at this point in the history
Use /dev/urandom so we never have to wait on entropy.

Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Tony Hutter <[email protected]>
Closes #16442
  • Loading branch information
tonyhutter authored Aug 14, 2024
1 parent 2633075 commit d06de4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function display_status
((ret |= $?))

typeset mntpnt=$(get_prop mountpoint $pool)
dd if=/dev/random of=$mntpnt/testfile.$$ &
dd if=/dev/urandom of=$mntpnt/testfile.$$ &
typeset pid=$!

zpool iostat -v 1 3 > /dev/null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ log_must truncate -s 1G $VDEV

log_must zpool create -o feature@block_cloning=enabled $TESTPOOL $VDEV

log_must dd if=/dev/random of=/$TESTPOOL/file1 bs=1 count=1000
log_must dd if=/dev/urandom of=/$TESTPOOL/file1 bs=1 count=1000

ulimit -f 2
log_must clonefile -f /$TESTPOOL/file1 /$TESTPOOL/file2 0 0 all
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ log_onexit cleanup
log_assert "ensure single-disk pool resumes properly after suspend and clear"

# create a file, and take a checksum, so we can compare later
log_must dd if=/dev/random of=$DATAFILE bs=128K count=1
log_must dd if=/dev/urandom of=$DATAFILE bs=128K count=1
typeset sum1=$(cat $DATAFILE | md5sum)

# make a debug device that we can "unplug"
Expand Down

0 comments on commit d06de4f

Please sign in to comment.