~bzr/bzr-fastimport/trunk

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2012-02-29 11:50:00 UTC
  • mfrom: (349.1.4 remove-exporters)
  • Revision ID: jelmer@samba.org-20120229115000-5im6098j36w2e3pu
Merge removal of exporters.

Show diffs side-by-side

added added

removed removed

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