##// END OF EJS Templates
cmdutil: always expose "files_add", "files_del" and "manifest" templater properties
cmdutil: always expose "files_add", "files_del" and "manifest" templater properties

File last commit:

r5441:71e7c86a default
r5545:5a124ce4 default
Show More
test-convert
37 lines | 556 B | text/plain | TextLexer
Bryan O'Sullivan
convert: add test
r5015 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "convert=" >> $HGRCPATH
Bryan O'Sullivan
convert: refactor sink initialisation, to remove hardcoding of hg...
r5441 hg help convert
Bryan O'Sullivan
convert: add test
r5015 hg init a
cd a
echo a > a
hg ci -d'0 0' -Ama
hg cp a b
hg ci -d'1 0' -mb
hg rm a
hg ci -d'2 0' -mc
hg mv b a
hg ci -d'3 0' -md
echo a >> a
hg ci -d'4 0' -me
cd ..
Thomas Arendsen Hein
test-convert: Hide warning about missing subversion bindings.
r5028 hg convert a 2>&1 | grep -v 'subversion python bindings could not be loaded'
Bryan O'Sullivan
convert: add test
r5015 hg --cwd a-hg pull ../a
Bryan O'Sullivan
convert: refactor sink initialisation, to remove hardcoding of hg...
r5441
touch bogusfile
echo % should fail
hg convert a bogusfile
mkdir bogusdir
chmod 000 bogusdir
echo % should fail
hg convert a bogusdir
echo % should succeed
chmod 700 bogusdir
hg convert a bogusdir