##// END OF EJS Templates
tests: remove unneeded -d flags...
tests: remove unneeded -d flags Many tests fixed the commit date of their changesets at '1000000 0' or similar. However testing with "Mon Jan 12 13:46:40 1970 +0000" is not better than testing with "Thu Jan 01 00:00:00 1970 +0000", which is the default run-tests.py installs. Removing the unnecessary flag removes some clutter and will hopefully make it clearer what the tests are really trying to test. Some tests did not even change their output when the dates were changed, in which case the -d flag was truly irrelevant. Dates used in sequence (such as '0 0', '1 0', etc...) were left alone since they may make the test easier to understand.

File last commit:

r11316:7fa39680 default
r12156:4c94b6d0 default
Show More
test-rebase-abort
76 lines | 1.5 KiB | text/plain | TextLexer
/ tests / test-rebase-abort
Stefano Tortarolo
Add rebase extension
r6906 #!/bin/sh
Yuya Nishihara
tests: fix bashism to load helpers.sh...
r11208 . $TESTDIR/helpers.sh
Matt Mackall
rebase: use helpers.sh in tests
r11198
Stefano Tortarolo
Add rebase extension
r6906 echo "[extensions]" >> $HGRCPATH
echo "graphlog=" >> $HGRCPATH
echo "rebase=" >> $HGRCPATH
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 createrepo() {
rm -rf repo
hg init repo
cd repo
echo 'c1' >common
hg add common
hg commit -d '0 0' -m "C1"
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 echo 'c2' >>common
hg commit -d '1 0' -m "C2"
echo 'c3' >>common
hg commit -d '2 0' -m "C3"
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 hg update -C 1
echo 'l1' >>extra
hg add extra
hg commit -d '3 0' -m "L1"
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 sed -e 's/c2/l2/' common > common.new
mv common.new common
hg commit -d '4 0' -m "L2"
}
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 echo
createrepo > /dev/null 2>&1
hg --config extensions.hgext.graphlog= glog --template '{rev}: {desc}\n'
Stefano Tortarolo
Add rebase extension
r6906
echo
echo '% Conflicting rebase'
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 hg --config extensions.hgext.rebase= rebase -s 3 -d 2 | cleanrebase
Stefano Tortarolo
Add rebase extension
r6906
echo
echo '% Abort'
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 hg --config extensions.hgext.rebase= rebase --abort | cleanrebase
hg --config extensions.hgext.graphlog= glog --template '{rev}: {desc}\n'
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 createrepo() {
rm -rf repo
hg init repo
cd repo
echo "a">a
hg ci -A -m'A'
echo "b">b
hg ci -A -m'B'
echo "c">c
hg ci -A -m'C'
hg up 0
echo "b">b
hg ci -A -m'B bis'
echo "c1">c
hg ci -A -m'C1'
}
echo
echo '% Rebase and abort without generating new changesets'
echo
createrepo > /dev/null 2>&1
hg --config extensions.hgext.graphlog= glog --template '{rev}:{desc|short}\n'
hg --config extensions.hgext.rebase= rebase -b 4 -d 2 | cleanrebase
hg --config extensions.hgext.graphlog= glog --template '{rev}:{desc|short}\n'
hg rebase -a | cleanrebase
hg glog --template '{rev}:{desc|short}\n'