Browse Source

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>
maint
Nicolas Pitre 18 years ago committed by Junio C Hamano
parent
commit
39551b6926
  1. 2
      t/t5301-sliding-window.sh

2
t/t5301-sliding-window.sh

@ -12,7 +12,7 @@ test_expect_success \ @@ -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 &&

Loading…
Cancel
Save