##// END OF EJS Templates
i18n-da: fix typo and translate rollback messages
i18n-da: fix typo and translate rollback messages

File last commit:

r7812:18048153 default
r8349:e539fa9d default
Show More
test-convert-cvs
103 lines | 2.4 KiB | text/plain | TextLexer
Patrick Mezard
convert: test cvs repository conversion
r5307 #!/bin/sh
"$TESTDIR/hghave" cvs cvsps || exit 80
Patrick Mezard
test-convert-cvs: force cvs -f options to avoid cvsrc...
r5750 cvscall()
{
cvs -f $@
}
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat()
{
hg --cwd src-hg cat -r tip "$1"
}
Patrick Mezard
convert: make built-in cvsps the default...
r7101 # Test legacy configuration with external cvsps
Patrick Mezard
convert: test cvs repository conversion
r5307 echo "[extensions]" >> $HGRCPATH
echo "convert = " >> $HGRCPATH
Patrick Mezard
convert: make built-in cvsps the default...
r7101 echo "graphlog = " >> $HGRCPATH
echo "[convert]" >> $HGRCPATH
echo "cvsps=cvsps -A -u --cvs-direct -q" >> $HGRCPATH
Patrick Mezard
convert: test cvs repository conversion
r5307
echo % create cvs repository
mkdir cvsrepo
cd cvsrepo
export CVSROOT=`pwd`
Maxim Dounin
convert: don't read ~/.cvsrc in test-convert-cvs
r5697 export CVS_OPTIONS=-f
Patrick Mezard
convert: test cvs repository conversion
r5307 cd ..
Patrick Mezard
test-convert-cvs: force cvs -f options to avoid cvsrc...
r5750 cvscall -q -d "$CVSROOT" init
Patrick Mezard
convert: test cvs repository conversion
r5307
echo % create source directory
mkdir src-temp
cd src-temp
echo a > a
mkdir b
cd b
echo c > c
cd ..
echo % import source directory
Patrick Mezard
test-convert-cvs: force cvs -f options to avoid cvsrc...
r5750 cvscall -q import -m import src INITIAL start
Patrick Mezard
convert: test cvs repository conversion
r5307 cd ..
echo % checkout source directory
Patrick Mezard
test-convert-cvs: force cvs -f options to avoid cvsrc...
r5750 cvscall -q checkout src
Patrick Mezard
convert: test cvs repository conversion
r5307
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 echo % commit a new revision changing b/c
cd src
Matt Mackall
tests: make test-convertcvs repeatable
r6342 sleep 1
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 echo c >> b/c
Patrick Mezard
test-convert-cvs: force cvs -f options to avoid cvsrc...
r5750 cvscall -q commit -mci0 . | grep '<--' |\
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 sed -e 's:.*src/\(.*\),v.*:checking in src/\1,v:g'
cd ..
Patrick Mezard
convert: test cvs repository conversion
r5307 echo % convert fresh repo
hg convert src src-hg | sed -e 's/connecting to.*cvsrepo/connecting to cvsrepo/g'
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat a
hgcat b/c
Patrick Mezard
convert: test cvs repository conversion
r5307
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 echo % convert fresh repo with --filemap
echo include b/c > filemap
hg convert --filemap filemap src src-filemap | sed -e 's/connecting to.*cvsrepo/connecting to cvsrepo/g'
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat b/c
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 hg -R src-filemap log --template '#rev# #desc# files: #files#\n'
Patrick Mezard
convert: test cvs repository conversion
r5307 echo % commit new file revisions
cd src
echo a >> a
echo c >> b/c
Patrick Mezard
test-convert-cvs: force cvs -f options to avoid cvsrc...
r5750 cvscall -q commit -mci1 . | grep '<--' |\
Christian Ebert
test-convert-cvs: handle older cvs client
r5364 sed -e 's:.*src/\(.*\),v.*:checking in src/\1,v:g'
Patrick Mezard
convert: test cvs repository conversion
r5307 cd ..
echo % convert again
hg convert src src-hg | sed -e 's/connecting to.*cvsrepo/connecting to cvsrepo/g'
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat a
hgcat b/c
Patrick Mezard
convert: test cvs repository conversion
r5307
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 echo % convert again with --filemap
hg convert --filemap filemap src src-filemap | sed -e 's/connecting to.*cvsrepo/connecting to cvsrepo/g'
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat b/c
Alexis S. L. Carvalho
convert_cvs: add --filemap support
r5381 hg -R src-filemap log --template '#rev# #desc# files: #files#\n'
Patrick Mezard
convert: test cvs repository conversion
r5307
Thomas Arendsen Hein
Test for converting a CVS branch
r5919 echo % commit branch
cd src
cvs -q update -r1.1 b/c
cvs -q tag -b branch
Mads Kiilerich
test-convert-cvs*: mute output from "cvs up"...
r7812 cvs -q update -r branch > /dev/null
Thomas Arendsen Hein
Test for converting a CVS branch
r5919 echo d >> b/c
cvs -q commit -mci2 . | grep '<--' |\
sed -e 's:.*src/\(.*\),v.*:checking in src/\1,v:g'
cd ..
echo % convert again
hg convert src src-hg | sed -e 's/connecting to.*cvsrepo/connecting to cvsrepo/g'
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat a
hgcat b/c
Thomas Arendsen Hein
Test for converting a CVS branch
r5919
echo % convert again with --filemap
hg convert --filemap filemap src src-filemap | sed -e 's/connecting to.*cvsrepo/connecting to cvsrepo/g'
Patrick Mezard
convert: hg sink commits without working dir
r6717 hgcat b/c
Thomas Arendsen Hein
Test for converting a CVS branch
r5919 hg -R src-filemap log --template '#rev# #desc# files: #files#\n'
hg -R src-hg glog --template '#rev# (#branches#) #desc# files: #files#\n'