Merge branch 'maint'
[gc-utils.git] / tests / gc-import-gu.sh
blobe8aa59a52a63bcdbae472e437eefea1044114cff
1 #!/bin/bash
3 . setup.sh
5 ##############
6 # TEST COMMIT
7 # AND IMPORT
9 cd $CVSCO
10 touch file4
11 cvs add file4
12 cvs commit -m "test commit"
14 cvs tag foo_bar
16 cd $ABSDIR
18 gc-import -gu -v -d $GIT_DIR $CVSROOT $CVSMODULE
20 cd $GIT_DIR
21 git tag | grep foo.bar || failure "Underscore was not translated to a dot"
23 sucess