##// 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:

r11135:73a4ed3b default
r12156:4c94b6d0 default
Show More
test-convert-svn-move
70 lines | 1.6 KiB | text/plain | TextLexer
/ tests / test-convert-svn-move
Patrick Mezard
convert: fix svn_source.latest()
r5955 #!/bin/sh
"$TESTDIR/hghave" svn svn-bindings || exit 80
fix_path()
{
tr '\\' /
}
echo "[extensions]" >> $HGRCPATH
echo "convert = " >> $HGRCPATH
echo "hgext.graphlog =" >> $HGRCPATH
svnadmin create svn-repo
Patrick Mezard
Rewrite svn tests using svndump...
r7475 cat "$TESTDIR/svn/move.svndump" | svnadmin load svn-repo > /dev/null
Patrick Mezard
convert: fix svn_source.latest()
r5955
svnpath=`pwd | fix_path`
# SVN wants all paths to start with a slash. Unfortunately,
# Windows ones don't. Handle that.
Mads Kiilerich
Tests with spaces in paths...
r10775 expr "$svnpath" : "\/" > /dev/null
Patrick Mezard
convert: fix svn_source.latest()
r5955 if [ $? -ne 0 ]; then
Mads Kiilerich
Tests with spaces in paths...
r10775 svnpath="/$svnpath"
Patrick Mezard
convert: fix svn_source.latest()
r5955 fi
Mads Kiilerich
Tests with spaces in paths...
r10775 svnurl="file://$svnpath/svn-repo"
Patrick Mezard
convert: fix svn_source.latest()
r5955
echo % convert trunk and branches
Mads Kiilerich
Tests with spaces in paths...
r10775 hg convert --datesort "$svnurl"/subproject A-hg
Patrick Mezard
convert: fix svn_source.latest()
r5955
cd A-hg
Martin Geisler
tests: replace #...# syntax with {...}
r8523 hg glog --template '{rev} {desc|firstline} files: {files}\n'
Patrick Mezard
test-convert-svn-move: test moved dirs copy records
r11124 echo '% check move copy records'
hg st --rev 12:13 --copies
echo '% check branches'
Patrick Mezard
convert: fix svn_source.latest()
r5955 hg branches | sed 's/:.*/:/'
cd ..
Patrick Mezard
convert/svn: handle files/links replaced by dirs (issue2166)
r11128
mkdir test-replace
cd test-replace
svnadmin create svn-repo
cat "$TESTDIR/svn/replace.svndump" | svnadmin load svn-repo > /dev/null
echo '% convert files being replaced by directories'
hg convert svn-repo hg-repo
cd hg-repo
echo '% manifest before'
hg -v manifest -r 1
echo '% manifest after clobber1'
hg -v manifest -r 2
echo '% manifest after clobber2'
hg -v manifest -r 3
echo '% try updating'
hg up -qC default
cd ..
Patrick Mezard
convert: add progress support
r11135
echo '% test convert progress bar'
echo "progress=" >> $HGRCPATH
echo "[progress]" >> $HGRCPATH
echo "assume-tty=1" >> $HGRCPATH
echo "delay=0" >> $HGRCPATH
echo "refresh=0" >> $HGRCPATH
cat > filtercr.py <<EOF
import sys, re
for line in sys.stdin:
line = re.sub(r'\r+[^\n]', lambda m: '\n' + m.group()[-1:], line)
sys.stdout.write(line)
EOF
hg convert svn-repo hg-progress 2>&1 | python filtercr.py