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

create_bzr test

rm -rf test.darcs
mkdir test.darcs
cd test.darcs
darcs init
cd ..
(cd test; bzr fast-export .) | (cd test.darcs; darcs-fast-import)
if [ $? != 0 ]; then
	exit 1
fi
diff_importbzr test
exit $?