##// END OF EJS Templates
tests: fix bashism to load helpers.sh...
tests: fix bashism to load helpers.sh `source` isn't available at POSIX sh.

File last commit:

r11208:2313dc4d default
r11208:2313dc4d default
Show More
test-rebase-newancestor
33 lines | 519 B | text/plain | TextLexer
/ tests / test-rebase-newancestor
Christian Boos
rebase: make sure the newancestor is used during the whole update...
r9815 #!/bin/sh
Yuya Nishihara
tests: fix bashism to load helpers.sh...
r11208 . $TESTDIR/helpers.sh
Matt Mackall
rebase: use helpers.sh in tests
r11198
Christian Boos
rebase: make sure the newancestor is used during the whole update...
r9815 echo "[extensions]" >> $HGRCPATH
echo "graphlog=" >> $HGRCPATH
echo "rebase=" >> $HGRCPATH
rm -rf repo
hg init repo
cd repo
echo A > a
echo >> a
hg commit -AmA -u test -d '0 0'
echo B > a
echo >> a
hg commit -mB -u test -d '1 0'
echo C > a
echo >> a
hg commit -mC -u test -d '2 0'
hg up -C 0
echo D >> a
hg commit -AmAD -u test -d '3 0'
hg glog --template '{rev}:{desc} {node|short}\n'
Matt Mackall
rebase: use helpers.sh in tests
r11198 hg rebase -q -s 1 -d 3 | hidebackup
Christian Boos
rebase: make sure the newancestor is used during the whole update...
r9815 hg glog --template '{rev}:{desc} {node|short}\n'
exit 0