mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	ZTS: Use /dev/urandom instead of /dev/random
Use /dev/urandom so we never have to wait on entropy. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #16442
This commit is contained in:
		
							parent
							
								
									8479a45abe
								
							
						
					
					
						commit
						ce22dc2589
					
				| @ -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 | ||||
|  | ||||
| @ -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 | ||||
|  | ||||
| @ -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" | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Tony Hutter
						Tony Hutter