##// END OF EJS Templates
subrepo: re-backout 2245fcd0e160, remove test...
Mads Kiilerich -
r13138:ce05c813 default
parent child Browse files
Show More
@@ -67,58 +67,3 b" subrepo debug for 'main' clone"
67 revision 863c1745b441bd97a8c4a096e87793073f4fb215
67 revision 863c1745b441bd97a8c4a096e87793073f4fb215
68
68
69 $ "$TESTDIR/killdaemons.py"
69 $ "$TESTDIR/killdaemons.py"
70
71
72 Create repo with nested relative subrepos
73
74 $ hg init r1
75 $ hg init r1/sub
76 $ echo sub = sub > r1/.hgsub
77 $ hg add --cwd r1 .hgsub
78 $ hg init r1/sub/subsub
79 $ echo subsub = subsub > r1/sub/.hgsub
80 $ hg add --cwd r1/sub .hgsub
81 $ echo c1 > r1/sub/subsub/f
82 $ hg add --cwd r1/sub/subsub f
83 $ hg ci --cwd r1 -m0
84 committing subrepository sub
85 committing subrepository sub/subsub
86
87 Ensure correct relative paths are used when pulling
88
89 $ hg init r2
90 $ cd r2/
91 $ hg pull -u ../r1
92 pulling from ../r1
93 requesting all changes
94 adding changesets
95 adding manifests
96 adding file changes
97 added 1 changesets with 2 changes to 2 files
98 pulling subrepo sub from ../r1/sub
99 requesting all changes
100 adding changesets
101 adding manifests
102 adding file changes
103 added 1 changesets with 2 changes to 2 files
104 pulling subrepo sub/subsub from ../r1/sub/subsub
105 requesting all changes
106 adding changesets
107 adding manifests
108 adding file changes
109 added 1 changesets with 1 changes to 1 files
110 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
111 $ cd ..
112
113 Verify subrepo default paths were set correctly
114
115 $ hg -R r2/sub paths
116 default = $TESTTMP/r1/sub
117 $ cat r2/sub/.hg/hgrc
118 [paths]
119 default = ../../r1/sub
120 $ hg -R r2/sub/subsub paths
121 default = $TESTTMP/r1/sub/subsub
122 $ cat r2/sub/subsub/.hg/hgrc
123 [paths]
124 default = ../../../r1/sub/subsub
General Comments 0
You need to be logged in to leave comments. Login now