##// END OF EJS Templates
Fix callers to file.revision to use file.read...
Fix callers to file.revision to use file.read This was causing unchanged files to show up as modified.

File last commit:

r814:0902ffec merge default
r994:88c15682 default
Show More
test-merge5
21 lines | 520 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
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415
mkdir t
cd t
hg init
echo This is file a1 > a
echo This is file b1 > b
hg add a b
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "commit #0" -d "0 0"
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 echo This is file b22 > b
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m"comment #1" -d "0 0"
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 hg update 0
rm b
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -A -m"comment #2" -d "0 0"
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 # in theory, we shouldn't need the "yes k" below, but it prevents
# this test from hanging when "hg update" erroneously prompts the
# user for "keep or delete"
yes k | hg update 1
# we exit with 0 to avoid the unavoidable SIGPIPE from above causing
# us to fail this test
exit 0