~ubuntu-branches/ubuntu/lucid/bzr-fastimport/lucid

« back to all changes in this revision

Viewing changes to exporters/darcs/t/testimport-bzr.sh

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-09-26 00:21:27 UTC
  • mfrom: (1.1.3 upstream) (0.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090926002127-naki02grwmkapav6
Tags: 0.9.0~bzr243-1
* New upstream snapshot.
* Bump standards version to 3.8.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
. ./lib.sh
 
2
 
 
3
create_bzr test
 
4
 
 
5
rm -rf test.darcs
 
6
mkdir test.darcs
 
7
cd test.darcs
 
8
darcs init
 
9
cd ..
 
10
(cd test; bzr fast-export .) | (cd test.darcs; darcs-fast-import)
 
11
if [ $? != 0 ]; then
 
12
        exit 1
 
13
fi
 
14
diff_importbzr test
 
15
exit $?