comparison tests/test-censor.t @ 24361:8de8cd34f2e3

tests: replace uses of 'seq' with portable 'seq.py'
author Matt Harbison <matt_harbison@yahoo.com>
date Tue, 17 Mar 2015 21:47:47 -0400
parents b7f936f47f2b
children 5e18f6e39006
comparison
equal deleted inserted replaced
24360:f554f89a2038 24361:8de8cd34f2e3
297 $ hg cat -r "$H2^^^" target 297 $ hg cat -r "$H2^^^" target
298 Tainted file now super sanitized 298 Tainted file now super sanitized
299 299
300 Can censor after revlog has expanded to no longer permit inline storage 300 Can censor after revlog has expanded to no longer permit inline storage
301 301
302 $ for x in `seq 0 50000` 302 $ for x in `python $TESTDIR/seq.py 0 50000`
303 > do 303 > do
304 > echo "Password: hunter$x" >> target 304 > echo "Password: hunter$x" >> target
305 > done 305 > done
306 $ hg ci -m 'add 100k passwords' 306 $ hg ci -m 'add 100k passwords'
307 $ H2=`hg id --debug -i` 307 $ H2=`hg id --debug -i`