comparison tests/test-bisect @ 2952:6ba3409f9725

merge.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Fri, 18 Aug 2006 17:02:38 -0700
parents d77022db1bca
children 61fcd9fac434
comparison
equal deleted inserted replaced
2951:5ddf7d305a27 2952:6ba3409f9725
15 while test $count -lt 32 ; do 15 while test $count -lt 32 ; do
16 echo 'a' >> a 16 echo 'a' >> a
17 test $count -eq 0 && hg add 17 test $count -eq 0 && hg add
18 hg ci -m "msg $count" -d "$count 0" 18 hg ci -m "msg $count" -d "$count 0"
19 echo % committed changeset $count 19 echo % committed changeset $count
20 count=$(( $count + 1 )) 20 count=`expr $count + 1`
21 done 21 done
22 22
23 echo % log 23 echo % log
24 hg log 24 hg log
25 25