comparison tests/test-commit @ 4253:9e3e975258a9

tests: expand test-commit a bit to test 'hg commit .' too
author Giorgos Keramidas <keramida@ceid.upatras.gr>
date Sun, 18 Mar 2007 22:49:05 +0200
parents 8d603f8567ae
children 75c2071385da
comparison
equal deleted inserted replaced
4252:e14b6980a014 4253:9e3e975258a9
69 hg log -v bar 69 hg log -v bar
70 echo % full log 70 echo % full log
71 hg log -v 71 hg log -v
72 cd .. 72 cd ..
73 73
74 echo % dot and subdir commit test
75 hg init test3
76 cd test3
77 mkdir foo
78 echo foo content > foo/plain-file
79 hg add foo/plain-file
80 hg ci -d '1000000 0' -u test -m commit-foo-subdir foo
81 echo modified foo content > foo/plain-file
82 hg ci -d '2000000 0' -u test -m commit-foo-dot .
83 echo % full log
84 hg log -v
85 echo % subdir log
86 cd foo
87 hg log .
88 cd ..
89 cd ..
90
74 exit 0 91 exit 0