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

Side by Side Diff: tests/submodule-merge-test.sh

Issue 10543151: Add test for git-svn with submodule/merge layout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Fixed IsSubmoduleMergeCommit regexp Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« git_cl.py ('K') | « git_cl.py ('k') | tests/test-lib.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #!/bin/bash
cmp 2012/06/14 17:50:26 nit: needs a copyright header
szager1 2012/06/15 00:55:32 Be careful what you ask for...
2
3 set -e
4
5 . ./test-lib.sh
6
7 setup_initsvn
8 setup_gitsvn_submodule
9
10 (
11 set -e
12 prev_svn_revision=`svn info file://$PWD/svnrepo | grep ^Revision | \
13 sed s/^.*:// | xargs`
14 cd git-svn-submodule
15 git config rietveld.server localhost:1
16 git checkout -q --track -b work
17 echo "some work done" >> test
18 git add test; git commit -q -m "work \
19 TBR=foo"
20
21 git_diff=`git diff HEAD^ | sed -n '/^@@/,$p' | xargs`
22
23 test_expect_success "dcommitted code" \
24 "$GIT_CL dcommit -f --bypass-hooks -m 'dcommit'"
25
26 cd ..
27
28 next_svn_revision=`svn info file://$PWD/svnrepo | grep ^Revision | \
29 sed s/^.*:// | xargs`
30
31 test_expect_success "svn got new revision" \
32 "test $next_svn_revision = `expr $prev_svn_revision + 1`"
33
34 svn_diff=`svn diff -c $next_svn_revision file://$PWD/svnrepo | \
35 sed -n '/^@@/,$p' | xargs`
36
37 test_expect_success "svn diff is correct" \
38 "test \"$git_diff\" = \"$svn_diff\""
39
40 cd git-svn-submodule
41 git svn fetch
42 last_svn_rev=`git show refs/remotes/trunk | grep git-svn-id: | \
43 grep -o trunk@[0-9]* | xargs`
44
45 test_expect_success "git svn fetch gets new svn revision" \
46 "test $last_svn_rev = trunk@$next_svn_revision"
47 )
48 SUCCESS=$?
49
50 #cleanup
51
52 if [ $SUCCESS == 0 ]; then
53 echo PASS
54 fi
OLDNEW
« git_cl.py ('K') | « git_cl.py ('k') | tests/test-lib.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698