Show More
test-merge5
25 lines
| 510 B
| text/plain
|
TextLexer
/ tests / test-merge5
|
r800 | #!/bin/sh | ||
|
r415 | |||
mkdir t | ||||
cd t | ||||
hg init | ||||
echo This is file a1 > a | ||||
echo This is file b1 > b | ||||
hg add a b | ||||
|
r1933 | hg commit -m "commit #0" -d "1000000 0" | ||
|
r415 | echo This is file b22 > b | ||
|
r1933 | hg commit -m"comment #1" -d "1000000 0" | ||
|
r415 | hg update 0 | ||
rm b | ||||
|
r1933 | hg commit -A -m"comment #2" -d "1000000 0" | ||
|
r6350 | mv a c | ||
|
r1963 | # in theory, we shouldn't need the "-y" below, but it prevents | ||
|
r415 | # this test from hanging when "hg update" erroneously prompts the | ||
# user for "keep or delete" | ||||
|
r6350 | echo % should abort | ||
hg update -y 1 | ||||
mv c a | ||||
echo % should succeed | ||||
|
r1963 | hg update -y 1 | ||
|
r415 | exit 0 | ||