comparison tests/test-clone @ 8167:6c82beaaa11a

tests: removed redundant "-d '0 0'" from test scripts The tests are executed with a .hgrc file which adds "-d '0 0'" by default.
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Apr 2009 14:29:02 +0200
parents a218ba5f60df
children 2f1ab7f77ddc
comparison
equal deleted inserted replaced
8166:56719b1aa6f4 8167:6c82beaaa11a
5 mkdir a 5 mkdir a
6 cd a 6 cd a
7 hg init 7 hg init
8 echo a > a 8 echo a > a
9 hg add a 9 hg add a
10 hg commit -m test -d '0 0' 10 hg commit -m test
11 echo first line > b 11 echo first line > b
12 hg add b 12 hg add b
13 # create a non-inlined filelog 13 # create a non-inlined filelog
14 python -c 'for x in range(10000): print x' >> data1 14 python -c 'for x in range(10000): print x' >> data1
15 for j in 0 1 2 3 4 5 6 7 8 9; do 15 for j in 0 1 2 3 4 5 6 7 8 9; do
16 cat data1 >> b 16 cat data1 >> b
17 hg commit -m test -d '0 0' 17 hg commit -m test
18 done 18 done
19 echo % "list files in store/data (should show a 'b.d')" 19 echo % "list files in store/data (should show a 'b.d')"
20 for i in .hg/store/data/*; do 20 for i in .hg/store/data/*; do
21 echo $i 21 echo $i
22 done 22 done