~bzr/bzr-fastimport/trunk

« back to all changes in this revision

Viewing changes to exporters/darcs/t/test-git-progress.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_darcs test --old-fashioned-inventory
4
 
 
5
 
rm -rf test.darcs test.git
6
 
mkdir test.git
7
 
cd test.git
8
 
git --bare init
9
 
cd ..
10
 
if [ "$1" != "--stdout" ]; then
11
 
        darcs-fast-export --progres 2 test |(cd test.git; git fast-import)
12
 
        if [ $? = 0 ]; then
13
 
                diff_git test
14
 
                exit $?
15
 
        fi
16
 
else
17
 
        darcs-fast-export test
18
 
fi