OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Abort on error. | 3 # Abort on error. |
4 set -e | 4 set -e |
5 | 5 |
6 PWD=`pwd` | 6 PWD=`pwd` |
7 REPO_URL=file://$PWD/svnrepo | 7 REPO_URL=file://$PWD/svnrepo |
| 8 TRUNK_URL=$REPO_URL/trunk |
| 9 BRANCH_URL=$REPO_URL/branches/some_branch |
8 GITREPO_PATH=$PWD/gitrepo | 10 GITREPO_PATH=$PWD/gitrepo |
9 GITREPO_URL=file://$GITREPO_PATH | 11 GITREPO_URL=file://$GITREPO_PATH |
10 GIT_CL=$PWD/../git-cl | 12 GIT_CL=$PWD/../git-cl |
11 | 13 |
12 # Set up an SVN repo that has a few commits to trunk. | 14 # Set up an SVN repo that has a few commits to trunk. |
13 setup_initsvn() { | 15 setup_initsvn() { |
14 echo "Setting up test SVN repo..." | 16 echo "Setting up test SVN repo..." |
15 rm -rf svnrepo | 17 rm -rf svnrepo |
16 svnadmin create svnrepo | 18 svnadmin create svnrepo |
| 19 # See http://stackoverflow.com/questions/2831620/subversion-commit-failed-on-m
ac-os-x-with-error-no-such-table-rep-cache |
| 20 echo "enable-rep-sharing = false" >> svnrepo/db/fsfs.conf |
| 21 |
| 22 svn mkdir -q -m 'creating trunk' --parents $TRUNK_URL |
17 | 23 |
18 rm -rf svn | 24 rm -rf svn |
19 svn co -q $REPO_URL svn | 25 svn co -q $TRUNK_URL svn |
20 ( | 26 ( |
21 cd svn | 27 cd svn |
22 echo "test" > test | 28 echo "test" > test |
23 svn add -q test | 29 svn add -q test |
24 svn commit -q -m "initial commit" | 30 svn commit -q -m "initial commit" |
25 echo "test2" >> test | 31 echo "test2" >> test |
26 svn commit -q -m "second commit" | 32 svn commit -q -m "second commit" |
27 ) | 33 ) |
| 34 |
| 35 svn cp -q -m 'branching' --parents $TRUNK_URL $BRANCH_URL |
28 } | 36 } |
29 | 37 |
30 # Set up a git-svn checkout of the repo. | 38 # Set up a git-svn checkout of the repo. |
31 setup_gitsvn() { | 39 setup_gitsvn() { |
32 echo "Setting up test git-svn repo..." | 40 echo "Setting up test git-svn repo..." |
33 rm -rf git-svn | 41 rm -rf git-svn |
34 # There appears to be no way to make git-svn completely shut up, so we | 42 # There appears to be no way to make git-svn completely shut up, so we |
35 # redirect its output. | 43 # redirect its output. |
36 git svn -q clone $REPO_URL git-svn >/dev/null 2>&1 | 44 git svn -q clone -s $REPO_URL git-svn >/dev/null 2>&1 |
37 } | 45 } |
38 | 46 |
39 # Set up a git repo that has a few commits to master. | 47 # Set up a git repo that has a few commits to master. |
40 setup_initgit() { | 48 setup_initgit() { |
41 echo "Setting up test upstream git repo..." | 49 echo "Setting up test upstream git repo..." |
42 rm -rf gitrepo | 50 rm -rf gitrepo |
43 mkdir gitrepo | 51 mkdir gitrepo |
44 | 52 |
45 ( | 53 ( |
46 cd gitrepo | 54 cd gitrepo |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 return $exit_code | 96 return $exit_code |
89 fi | 97 fi |
90 } | 98 } |
91 | 99 |
92 # Grab the XSRF token from the review server and print it to stdout. | 100 # Grab the XSRF token from the review server and print it to stdout. |
93 print_xsrf_token() { | 101 print_xsrf_token() { |
94 curl --cookie dev_appserver_login="test@example.com:False" \ | 102 curl --cookie dev_appserver_login="test@example.com:False" \ |
95 --header 'X-Requesting-XSRF-Token: 1' \ | 103 --header 'X-Requesting-XSRF-Token: 1' \ |
96 http://localhost:8080/xsrf_token 2>/dev/null | 104 http://localhost:8080/xsrf_token 2>/dev/null |
97 } | 105 } |
OLD | NEW |