summaryrefslogtreecommitdiff
path: root/t/t9108-git-svn-glob.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2007-02-14 01:38:58 (GMT)
committerEric Wong <normalperson@yhbt.net>2007-02-23 08:57:12 (GMT)
commitccb6b6f5b50bb32f90222a3e801a1901bf0b5657 (patch)
treea267be19cbe0f8598119b9f68a5c8b9fa1f9fe4a /t/t9108-git-svn-glob.sh
parent3bc718ba66f8b101b4017e778138660d66829312 (diff)
downloadgit-ccb6b6f5b50bb32f90222a3e801a1901bf0b5657.zip
git-ccb6b6f5b50bb32f90222a3e801a1901bf0b5657.tar.gz
git-ccb6b6f5b50bb32f90222a3e801a1901bf0b5657.tar.bz2
t910*: s/repo-config/config/g; poke around possible race conditions
Some of the repo-config => config renaming missed the git-svn tests; so I'm just renaming them to be consisten with the rest of the modern git. Also, some of the newer tests didn't have 'poke' in them to workaround race conditions on fast machines. This adds places where they can _possibly_ occur; but I don't have fast enough hardware to trigger them. Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't/t9108-git-svn-glob.sh')
-rwxr-xr-xt/t9108-git-svn-glob.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t9108-git-svn-glob.sh b/t/t9108-git-svn-glob.sh
index 47cccdfd..be21fc1 100755
--- a/t/t9108-git-svn-glob.sh
+++ b/t/t9108-git-svn-glob.sh
@@ -23,14 +23,19 @@ test_expect_success 'test refspec globbing' "
svn commit -m 'start a new branch' &&
svn up &&
echo 'hi' >> branches/start/src/b/readme &&
+ poke branches/start/src/b/readme &&
echo 'hey' >> branches/start/src/a/readme &&
+ poke branches/start/src/a/readme &&
svn commit -m 'hi' &&
svn up &&
svn cp branches/start tags/end &&
echo 'bye' >> tags/end/src/b/readme &&
+ poke tags/end/src/b/readme &&
echo 'aye' >> tags/end/src/a/readme &&
+ poke tags/end/src/a/readme &&
svn commit -m 'the end' &&
echo 'byebye' >> tags/end/src/b/readme &&
+ poke tags/end/src/b/readme &&
svn commit -m 'nothing to see here'
cd .. &&
git config --add svn-remote.svn.url $svnrepo &&