diff tests/fixtures/commit-to-tag.sh @ 547:9e6499c415a9

tags: fix files edited during tag creation This was broken because file edits were skipped if they were in tags, but committags in svnmeta didn't check to see if any files were changed during initial tag creation.
author Augie Fackler <durin42@gmail.com>
date Sat, 06 Feb 2010 10:36:21 -0600
parents bb612e625be6
children
line wrap: on
line diff
--- a/tests/fixtures/commit-to-tag.sh
+++ b/tests/fixtures/commit-to-tag.sh
@@ -64,6 +64,11 @@ svn up
 svn merge -r9:8 $REPOPATH .
 svn ci -m 'Revert revision 9.'
 
+# make a tag from a branch and edit it at the same time
+svn up
+svn cp branches/magic tags/edit-at-create
+echo alpha >> tags/edit-at-create/alpha
+svn ci -m 'make a tag from a branch and edit it at the same time'
 
 cd ../..
 svnadmin dump temp/repo > commit-to-tag.svndump