1
0
mirror of https://github.com/git/git.git synced 2024-09-28 19:42:15 +02:00

use test-genrandom in tests instead of /dev/urandom

This way tests are completely deterministic and possibly more portable.

Signed-off-by: Nicolas Pitre <nico@cam.org>
This commit is contained in:
Nicolas Pitre 2007-04-11 13:35:13 -04:00 committed by Junio C Hamano
parent 2dca1af448
commit 39551b6926

@ -12,7 +12,7 @@ test_expect_success \
for i in a b c
do
echo $i >$i &&
dd if=/dev/urandom bs=32k count=1 >>$i &&
test-genrandom "$i" 32768 >>$i &&
git-update-index --add $i || return 1
done &&
echo d >d && cat c >>d && git-update-index --add d &&