diff tests/test-convert-svn-source @ 5913:7c2921a60035

Merge with crew-stable
author Patrick Mezard <pmezard@gmail.com>
date Mon, 21 Jan 2008 14:15:38 +0100
parents tests/test-convert-svn@a893610f6f0c tests/test-convert-svn@8b95f598097c
children 851402e53337
line wrap: on
line diff
--- a/tests/test-convert-svn-source	Sun Jan 20 08:12:07 2008 -0200
+++ b/tests/test-convert-svn-source	Mon Jan 21 14:15:38 2008 +0100
@@ -103,13 +103,16 @@
 echo % update svn repository again
 cd A
 echo "see second letter" >> letter.txt
-echo "nice to meet you" > letter2.txt
-svn add letter2.txt
+# Put it in a subdirectory to test duplicate file records
+# from svn source (issue 714)
+mkdir todo
+echo "nice to meet you" > todo/letter2.txt
+svn add todo
 svn ci -m "second letter"
 
 svn copy -m "tag v0.2" $svnurl/trunk $svnurl/tags/v0.2
 
-echo "blah-blah-blah" >> letter2.txt
+echo "blah-blah-blah" >> todo/letter2.txt
 svn ci -m "work in progress"
 cd ..