##// END OF EJS Templates
Incorporated most of Aron Griffis suggestions for sh compatibility.
Incorporated most of Aron Griffis suggestions for sh compatibility.

File last commit:

r800:ec85f9e6 default
r804:19388dcb default
Show More
test-rawcommit1
33 lines | 618 B | text/plain | TextLexer
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 #!/bin/sh
mpm@selenic.com
options: kill -d for debug...
r591 hg --debug init
mpm@selenic.com
Add rawcommit tests...
r444 echo this is a1 > a
mpm@selenic.com
options: kill -d for debug...
r591 hg add a
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m0 -d "0 0"
mpm@selenic.com
Add rawcommit tests...
r444 echo this is b1 > b
mpm@selenic.com
options: kill -d for debug...
r591 hg add b
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m1 -d "0 0"
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 1
mpm@selenic.com
Add rawcommit tests...
r444 echo this is c1 > c
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg rawcommit -p 1 -d "0 0" -m2 c
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 2
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 rm b
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg rawcommit -p 2 -d "0 0" -m3 b
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 3
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 echo this is a22 > a
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg rawcommit -p 3 -d "0 0" -m4 a
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 4
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 echo this is c22 > c
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg rawcommit -p 1 -d "0 0" -m5 c
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 5
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 # merge, but no files changed
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg rawcommit -p 4 -p 5 -d "0 0" -m6
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 6
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 # no changes what-so-ever
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg rawcommit -p 6 -d "0 0" -m7
mpm@selenic.com
options: kill -d for debug...
r591 hg manifest 7
hg parents