##// END OF EJS Templates
test-bheads: use a case-insensitive set of filenames (issue2274)...
Nicolas Dumazet -
r11543:0a2762d8 stable
parent child Browse files
Show More
@@ -137,21 +137,21 b' hg ci -m "b3 (HN)"'
137 137 echo '% case NN: msg'
138 138 hg up -q null
139 139 hg branch -f b
140 echo 1 > B
140 echo 1 > bb
141 141 hg ci -Am "b4 (NN): new topo root for branch b"
142 142
143 143 echo '% case HN: no msg'
144 echo 2 >> B
144 echo 2 >> bb
145 145 hg ci -m "b5 (HN)"
146 146
147 147 echo '% case BN: msg'
148 148 hg branch -f default
149 echo 1 > A
149 echo 1 > aa
150 150 hg ci -Am "a6 (BN): new branch root"
151 151
152 152 echo '% case CN: msg'
153 153 hg up -q 4
154 echo 3 >> BB
154 echo 3 >> bbb
155 155 hg ci -Am "b7 (CN): regular new head"
156 156
157 157 echo '% case BB: msg'
@@ -187,15 +187,15 b' marked working directory as branch b'
187 187 adding b
188 188 % case NN: msg
189 189 marked working directory as branch b
190 adding B
190 adding bb
191 191 created new head
192 192 % case HN: no msg
193 193 % case BN: msg
194 194 marked working directory as branch default
195 adding A
195 adding aa
196 196 created new head
197 197 % case CN: msg
198 adding BB
198 adding bbb
199 199 created new head
200 200 % case BB: msg
201 201 marked working directory as branch default
General Comments 0
You need to be logged in to leave comments. Login now