Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Unified Diff: git_cl/test/test-lib.sh

Issue 6598068: Add support for wildcards in svn remote configuration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: add test Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: git_cl/test/test-lib.sh
diff --git a/git_cl/test/test-lib.sh b/git_cl/test/test-lib.sh
index b9194737a67c3137f248e116d34d686b08640115..623b2f74822bf6fe9ccbea407870ae0f72ced4c6 100644
--- a/git_cl/test/test-lib.sh
+++ b/git_cl/test/test-lib.sh
@@ -5,6 +5,8 @@ set -e
PWD=`pwd`
REPO_URL=file://$PWD/svnrepo
+TRUNK_URL=$REPO_URL/trunk
+BRANCH_URL=$REPO_URL/branches/some_branch
GITREPO_PATH=$PWD/gitrepo
GITREPO_URL=file://$GITREPO_PATH
GIT_CL=$PWD/../git-cl
@@ -14,9 +16,13 @@ setup_initsvn() {
echo "Setting up test SVN repo..."
rm -rf svnrepo
svnadmin create svnrepo
+ # See http://stackoverflow.com/questions/2831620/subversion-commit-failed-on-mac-os-x-with-error-no-such-table-rep-cache
+ echo "enable-rep-sharing = false" >> svnrepo/db/fsfs.conf
+
+ svn mkdir -q -m 'creating trunk' --parents $TRUNK_URL
rm -rf svn
- svn co -q $REPO_URL svn
+ svn co -q $TRUNK_URL svn
(
cd svn
echo "test" > test
@@ -25,6 +31,8 @@ setup_initsvn() {
echo "test2" >> test
svn commit -q -m "second commit"
)
+
+ svn cp -q -m 'branching' --parents $TRUNK_URL $BRANCH_URL
}
# Set up a git-svn checkout of the repo.
@@ -33,7 +41,7 @@ setup_gitsvn() {
rm -rf git-svn
# There appears to be no way to make git-svn completely shut up, so we
# redirect its output.
- git svn -q clone $REPO_URL git-svn >/dev/null 2>&1
+ git svn -q clone -s $REPO_URL git-svn >/dev/null 2>&1
}
# Set up a git repo that has a few commits to master.
« git_cl/git_cl.py ('K') | « git_cl/git_cl.py ('k') | git_cl/test/upstream.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698