summaryrefslogtreecommitdiff
path: root/exporters/darcs/t/testimport-hg.sh
blob: 7f6d215bae343c2894597c91eb29a99bd7c9c30f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
. ./lib.sh

create_hg test

rm -rf test.darcs
mkdir test.darcs
cd test.darcs
darcs init
cd ..
(cd test; $pypath/bzrlib/plugins/fastimport/exporters/hg-fast-export.py -r .) | (cd test.darcs; darcs-fast-import)
if [ $? != 0 ]; then
	exit 1
fi
diff_importhg test
exit $?