##// END OF EJS Templates
test-annotate: conditionalize output instead of tests
Matt Harbison -
r33341:1a4eca3b default
parent child Browse files
Show More
@@ -1,1008 +1,1000
1 1 $ HGMERGE=true; export HGMERGE
2 2
3 3 init
4 4
5 5 $ hg init repo
6 6 $ cd repo
7 7
8 8 commit
9 9
10 10 $ echo 'a' > a
11 11 $ hg ci -A -m test -u nobody -d '1 0'
12 12 adding a
13 13
14 14 annotate -c
15 15
16 16 $ hg annotate -c a
17 17 8435f90966e4: a
18 18
19 19 annotate -cl
20 20
21 21 $ hg annotate -cl a
22 22 8435f90966e4:1: a
23 23
24 24 annotate -d
25 25
26 26 $ hg annotate -d a
27 27 Thu Jan 01 00:00:01 1970 +0000: a
28 28
29 29 annotate -n
30 30
31 31 $ hg annotate -n a
32 32 0: a
33 33
34 34 annotate -nl
35 35
36 36 $ hg annotate -nl a
37 37 0:1: a
38 38
39 39 annotate -u
40 40
41 41 $ hg annotate -u a
42 42 nobody: a
43 43
44 44 annotate -cdnu
45 45
46 46 $ hg annotate -cdnu a
47 47 nobody 0 8435f90966e4 Thu Jan 01 00:00:01 1970 +0000: a
48 48
49 49 annotate -cdnul
50 50
51 51 $ hg annotate -cdnul a
52 52 nobody 0 8435f90966e4 Thu Jan 01 00:00:01 1970 +0000:1: a
53 53
54 54 annotate (JSON)
55 55
56 56 $ hg annotate -Tjson a
57 57 [
58 58 {
59 59 "abspath": "a",
60 60 "lines": [{"line": "a\n", "rev": 0}],
61 61 "path": "a"
62 62 }
63 63 ]
64 64
65 65 $ hg annotate -Tjson -cdfnul a
66 66 [
67 67 {
68 68 "abspath": "a",
69 69 "lines": [{"date": [1.0, 0], "file": "a", "line": "a\n", "line_number": 1, "node": "8435f90966e442695d2ded29fdade2bac5ad8065", "rev": 0, "user": "nobody"}],
70 70 "path": "a"
71 71 }
72 72 ]
73 73
74 74 $ cat <<EOF >>a
75 75 > a
76 76 > a
77 77 > EOF
78 78 $ hg ci -ma1 -d '1 0'
79 79 $ hg cp a b
80 80 $ hg ci -mb -d '1 0'
81 81 $ cat <<EOF >> b
82 82 > b4
83 83 > b5
84 84 > b6
85 85 > EOF
86 86 $ hg ci -mb2 -d '2 0'
87 87
88 88 annotate multiple files (JSON)
89 89
90 90 $ hg annotate -Tjson a b
91 91 [
92 92 {
93 93 "abspath": "a",
94 94 "lines": [{"line": "a\n", "rev": 0}, {"line": "a\n", "rev": 1}, {"line": "a\n", "rev": 1}],
95 95 "path": "a"
96 96 },
97 97 {
98 98 "abspath": "b",
99 99 "lines": [{"line": "a\n", "rev": 0}, {"line": "a\n", "rev": 1}, {"line": "a\n", "rev": 1}, {"line": "b4\n", "rev": 3}, {"line": "b5\n", "rev": 3}, {"line": "b6\n", "rev": 3}],
100 100 "path": "b"
101 101 }
102 102 ]
103 103
104 104 annotate multiple files (template)
105 105
106 106 $ hg annotate -T'== {abspath} ==\n{lines % "{rev}: {line}"}' a b
107 107 == a ==
108 108 0: a
109 109 1: a
110 110 1: a
111 111 == b ==
112 112 0: a
113 113 1: a
114 114 1: a
115 115 3: b4
116 116 3: b5
117 117 3: b6
118 118
119 119 annotate -n b
120 120
121 121 $ hg annotate -n b
122 122 0: a
123 123 1: a
124 124 1: a
125 125 3: b4
126 126 3: b5
127 127 3: b6
128 128
129 129 annotate --no-follow b
130 130
131 131 $ hg annotate --no-follow b
132 132 2: a
133 133 2: a
134 134 2: a
135 135 3: b4
136 136 3: b5
137 137 3: b6
138 138
139 139 annotate -nl b
140 140
141 141 $ hg annotate -nl b
142 142 0:1: a
143 143 1:2: a
144 144 1:3: a
145 145 3:4: b4
146 146 3:5: b5
147 147 3:6: b6
148 148
149 149 annotate -nf b
150 150
151 151 $ hg annotate -nf b
152 152 0 a: a
153 153 1 a: a
154 154 1 a: a
155 155 3 b: b4
156 156 3 b: b5
157 157 3 b: b6
158 158
159 159 annotate -nlf b
160 160
161 161 $ hg annotate -nlf b
162 162 0 a:1: a
163 163 1 a:2: a
164 164 1 a:3: a
165 165 3 b:4: b4
166 166 3 b:5: b5
167 167 3 b:6: b6
168 168
169 169 $ hg up -C 2
170 170 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
171 171 $ cat <<EOF >> b
172 172 > b4
173 173 > c
174 174 > b5
175 175 > EOF
176 176 $ hg ci -mb2.1 -d '2 0'
177 177 created new head
178 178 $ hg merge
179 179 merging b
180 180 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
181 181 (branch merge, don't forget to commit)
182 182 $ hg ci -mmergeb -d '3 0'
183 183
184 184 annotate after merge
185 185
186 186 $ hg annotate -nf b
187 187 0 a: a
188 188 1 a: a
189 189 1 a: a
190 190 3 b: b4
191 191 4 b: c
192 192 3 b: b5
193 193
194 194 annotate after merge with -l
195 195
196 196 $ hg annotate -nlf b
197 197 0 a:1: a
198 198 1 a:2: a
199 199 1 a:3: a
200 200 3 b:4: b4
201 201 4 b:5: c
202 202 3 b:5: b5
203 203
204 204 $ hg up -C 1
205 205 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
206 206 $ hg cp a b
207 207 $ cat <<EOF > b
208 208 > a
209 209 > z
210 210 > a
211 211 > EOF
212 212 $ hg ci -mc -d '3 0'
213 213 created new head
214 214 $ hg merge
215 215 merging b
216 216 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
217 217 (branch merge, don't forget to commit)
218 218 $ cat <<EOF >> b
219 219 > b4
220 220 > c
221 221 > b5
222 222 > EOF
223 223 $ echo d >> b
224 224 $ hg ci -mmerge2 -d '4 0'
225 225
226 226 annotate after rename merge
227 227
228 228 $ hg annotate -nf b
229 229 0 a: a
230 230 6 b: z
231 231 1 a: a
232 232 3 b: b4
233 233 4 b: c
234 234 3 b: b5
235 235 7 b: d
236 236
237 237 annotate after rename merge with -l
238 238
239 239 $ hg annotate -nlf b
240 240 0 a:1: a
241 241 6 b:2: z
242 242 1 a:3: a
243 243 3 b:4: b4
244 244 4 b:5: c
245 245 3 b:5: b5
246 246 7 b:7: d
247 247
248 248 --skip nothing (should be the same as no --skip at all)
249 249
250 250 $ hg annotate -nlf b --skip '1::0'
251 251 0 a:1: a
252 252 6 b:2: z
253 253 1 a:3: a
254 254 3 b:4: b4
255 255 4 b:5: c
256 256 3 b:5: b5
257 257 7 b:7: d
258 258
259 259 --skip a modified line. Note a slight behavior difference in pure - this is
260 260 because the pure code comes up with slightly different deltas internally.
261 261
262 262 $ hg annotate -nlf b --skip 6
263 263 0 a:1: a
264 264 1 a:2: z (no-pure !)
265 265 0 a:1: z (pure !)
266 266 1 a:3: a
267 267 3 b:4: b4
268 268 4 b:5: c
269 269 3 b:5: b5
270 270 7 b:7: d
271 271
272 272 --skip added lines (and test multiple skip)
273 273
274 274 $ hg annotate -nlf b --skip 3
275 275 0 a:1: a
276 276 6 b:2: z
277 277 1 a:3: a
278 278 1 a:3: b4
279 279 4 b:5: c
280 280 1 a:3: b5
281 281 7 b:7: d
282 282
283 283 $ hg annotate -nlf b --skip 4
284 284 0 a:1: a
285 285 6 b:2: z
286 286 1 a:3: a
287 287 3 b:4: b4
288 288 1 a:3: c
289 289 3 b:5: b5
290 290 7 b:7: d
291 291
292 292 $ hg annotate -nlf b --skip 3 --skip 4
293 293 0 a:1: a
294 294 6 b:2: z
295 295 1 a:3: a
296 296 1 a:3: b4
297 297 1 a:3: c
298 298 1 a:3: b5
299 299 7 b:7: d
300 300
301 301 $ hg annotate -nlf b --skip 'merge()'
302 302 0 a:1: a
303 303 6 b:2: z
304 304 1 a:3: a
305 305 3 b:4: b4
306 306 4 b:5: c
307 307 3 b:5: b5
308 308 3 b:5: d
309 309
310 310 --skip everything -- use the revision the file was introduced in
311 311
312 312 $ hg annotate -nlf b --skip 'all()'
313 313 0 a:1: a
314 314 0 a:1: z
315 315 0 a:1: a
316 316 0 a:1: b4
317 317 0 a:1: c
318 318 0 a:1: b5
319 319 0 a:1: d
320 320
321 321 Issue2807: alignment of line numbers with -l
322 322
323 323 $ echo more >> b
324 324 $ hg ci -mmore -d '5 0'
325 325 $ echo more >> b
326 326 $ hg ci -mmore -d '6 0'
327 327 $ echo more >> b
328 328 $ hg ci -mmore -d '7 0'
329 329 $ hg annotate -nlf b
330 330 0 a: 1: a
331 331 6 b: 2: z
332 332 1 a: 3: a
333 333 3 b: 4: b4
334 334 4 b: 5: c
335 335 3 b: 5: b5
336 336 7 b: 7: d
337 337 8 b: 8: more
338 338 9 b: 9: more
339 339 10 b:10: more
340 340
341 341 linkrev vs rev
342 342
343 343 $ hg annotate -r tip -n a
344 344 0: a
345 345 1: a
346 346 1: a
347 347
348 348 linkrev vs rev with -l
349 349
350 350 $ hg annotate -r tip -nl a
351 351 0:1: a
352 352 1:2: a
353 353 1:3: a
354 354
355 355 Issue589: "undelete" sequence leads to crash
356 356
357 357 annotate was crashing when trying to --follow something
358 358
359 359 like A -> B -> A
360 360
361 361 generate ABA rename configuration
362 362
363 363 $ echo foo > foo
364 364 $ hg add foo
365 365 $ hg ci -m addfoo
366 366 $ hg rename foo bar
367 367 $ hg ci -m renamefoo
368 368 $ hg rename bar foo
369 369 $ hg ci -m renamebar
370 370
371 371 annotate after ABA with follow
372 372
373 373 $ hg annotate --follow foo
374 374 foo: foo
375 375
376 376 missing file
377 377
378 378 $ hg ann nosuchfile
379 379 abort: nosuchfile: no such file in rev e9e6b4fa872f
380 380 [255]
381 381
382 382 annotate file without '\n' on last line
383 383
384 384 $ printf "" > c
385 385 $ hg ci -A -m test -u nobody -d '1 0'
386 386 adding c
387 387 $ hg annotate c
388 388 $ printf "a\nb" > c
389 389 $ hg ci -m test
390 390 $ hg annotate c
391 391 [0-9]+: a (re)
392 392 [0-9]+: b (re)
393 393
394 394 Issue3841: check annotation of the file of which filelog includes
395 395 merging between the revision and its ancestor
396 396
397 397 to reproduce the situation with recent Mercurial, this script uses (1)
398 398 "hg debugsetparents" to merge without ancestor check by "hg merge",
399 399 and (2) the extension to allow filelog merging between the revision
400 400 and its ancestor by overriding "repo._filecommit".
401 401
402 402 $ cat > ../legacyrepo.py <<EOF
403 403 > from mercurial import node, error
404 404 > def reposetup(ui, repo):
405 405 > class legacyrepo(repo.__class__):
406 406 > def _filecommit(self, fctx, manifest1, manifest2,
407 407 > linkrev, tr, changelist):
408 408 > fname = fctx.path()
409 409 > text = fctx.data()
410 410 > flog = self.file(fname)
411 411 > fparent1 = manifest1.get(fname, node.nullid)
412 412 > fparent2 = manifest2.get(fname, node.nullid)
413 413 > meta = {}
414 414 > copy = fctx.renamed()
415 415 > if copy and copy[0] != fname:
416 416 > raise error.Abort('copying is not supported')
417 417 > if fparent2 != node.nullid:
418 418 > changelist.append(fname)
419 419 > return flog.add(text, meta, tr, linkrev,
420 420 > fparent1, fparent2)
421 421 > raise error.Abort('only merging is supported')
422 422 > repo.__class__ = legacyrepo
423 423 > EOF
424 424
425 425 $ cat > baz <<EOF
426 426 > 1
427 427 > 2
428 428 > 3
429 429 > 4
430 430 > 5
431 431 > EOF
432 432 $ hg add baz
433 433 $ hg commit -m "baz:0"
434 434
435 435 $ cat > baz <<EOF
436 436 > 1 baz:1
437 437 > 2
438 438 > 3
439 439 > 4
440 440 > 5
441 441 > EOF
442 442 $ hg commit -m "baz:1"
443 443
444 444 $ cat > baz <<EOF
445 445 > 1 baz:1
446 446 > 2 baz:2
447 447 > 3
448 448 > 4
449 449 > 5
450 450 > EOF
451 451 $ hg debugsetparents 17 17
452 452 $ hg --config extensions.legacyrepo=../legacyrepo.py commit -m "baz:2"
453 453 $ hg debugindexdot .hg/store/data/baz.i
454 454 digraph G {
455 455 -1 -> 0
456 456 0 -> 1
457 457 1 -> 2
458 458 1 -> 2
459 459 }
460 460 $ hg annotate baz
461 461 17: 1 baz:1
462 462 18: 2 baz:2
463 463 16: 3
464 464 16: 4
465 465 16: 5
466 466
467 467 $ cat > baz <<EOF
468 468 > 1 baz:1
469 469 > 2 baz:2
470 470 > 3 baz:3
471 471 > 4
472 472 > 5
473 473 > EOF
474 474 $ hg commit -m "baz:3"
475 475
476 476 $ cat > baz <<EOF
477 477 > 1 baz:1
478 478 > 2 baz:2
479 479 > 3 baz:3
480 480 > 4 baz:4
481 481 > 5
482 482 > EOF
483 483 $ hg debugsetparents 19 18
484 484 $ hg --config extensions.legacyrepo=../legacyrepo.py commit -m "baz:4"
485 485 $ hg debugindexdot .hg/store/data/baz.i
486 486 digraph G {
487 487 -1 -> 0
488 488 0 -> 1
489 489 1 -> 2
490 490 1 -> 2
491 491 2 -> 3
492 492 3 -> 4
493 493 2 -> 4
494 494 }
495 495 $ hg annotate baz
496 496 17: 1 baz:1
497 497 18: 2 baz:2
498 498 19: 3 baz:3
499 499 20: 4 baz:4
500 500 16: 5
501 501
502 502 annotate clean file
503 503
504 504 $ hg annotate -ncr "wdir()" foo
505 505 11 472b18db256d : foo
506 506
507 507 annotate modified file
508 508
509 509 $ echo foofoo >> foo
510 510 $ hg annotate -r "wdir()" foo
511 511 11 : foo
512 512 20+: foofoo
513 513
514 514 $ hg annotate -cr "wdir()" foo
515 515 472b18db256d : foo
516 516 b6bedd5477e7+: foofoo
517 517
518 518 $ hg annotate -ncr "wdir()" foo
519 519 11 472b18db256d : foo
520 520 20 b6bedd5477e7+: foofoo
521 521
522 522 $ hg annotate --debug -ncr "wdir()" foo
523 523 11 472b18db256d1e8282064eab4bfdaf48cbfe83cd : foo
524 524 20 b6bedd5477e797f25e568a6402d4697f3f895a72+: foofoo
525 525
526 526 $ hg annotate -udr "wdir()" foo
527 527 test Thu Jan 01 00:00:00 1970 +0000: foo
528 528 test [A-Za-z0-9:+ ]+: foofoo (re)
529 529
530 530 $ hg annotate -ncr "wdir()" -Tjson foo
531 531 [
532 532 {
533 533 "abspath": "foo",
534 534 "lines": [{"line": "foo\n", "node": "472b18db256d1e8282064eab4bfdaf48cbfe83cd", "rev": 11}, {"line": "foofoo\n", "node": null, "rev": null}],
535 535 "path": "foo"
536 536 }
537 537 ]
538 538
539 539 annotate added file
540 540
541 541 $ echo bar > bar
542 542 $ hg add bar
543 543 $ hg annotate -ncr "wdir()" bar
544 544 20 b6bedd5477e7+: bar
545 545
546 546 annotate renamed file
547 547
548 548 $ hg rename foo renamefoo2
549 549 $ hg annotate -ncr "wdir()" renamefoo2
550 550 11 472b18db256d : foo
551 551 20 b6bedd5477e7+: foofoo
552 552
553 553 annotate missing file
554 554
555 555 $ rm baz
556 #if windows
556
557 557 $ hg annotate -ncr "wdir()" baz
558 abort: $TESTTMP\repo\baz: The system cannot find the file specified
558 abort: $TESTTMP\repo\baz: The system cannot find the file specified (windows !)
559 abort: No such file or directory: $TESTTMP/repo/baz (no-windows !)
559 560 [255]
560 #else
561 $ hg annotate -ncr "wdir()" baz
562 abort: No such file or directory: $TESTTMP/repo/baz
563 [255]
564 #endif
565 561
566 562 annotate removed file
567 563
568 564 $ hg rm baz
569 #if windows
565
570 566 $ hg annotate -ncr "wdir()" baz
571 abort: $TESTTMP\repo\baz: The system cannot find the file specified
567 abort: $TESTTMP\repo\baz: The system cannot find the file specified (windows !)
568 abort: No such file or directory: $TESTTMP/repo/baz (no-windows !)
572 569 [255]
573 #else
574 $ hg annotate -ncr "wdir()" baz
575 abort: No such file or directory: $TESTTMP/repo/baz
576 [255]
577 #endif
578 570
579 571 $ hg revert --all --no-backup --quiet
580 572 $ hg id -n
581 573 20
582 574
583 575 Test followlines() revset; we usually check both followlines(pat, range) and
584 576 followlines(pat, range, descend=True) to make sure both give the same result
585 577 when they should.
586 578
587 579 $ echo a >> foo
588 580 $ hg ci -m 'foo: add a'
589 581 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5)'
590 582 16: baz:0
591 583 19: baz:3
592 584 20: baz:4
593 585 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5, startrev=20)'
594 586 16: baz:0
595 587 19: baz:3
596 588 20: baz:4
597 589 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5, startrev=19)'
598 590 16: baz:0
599 591 19: baz:3
600 592 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5, startrev=19, descend=True)'
601 593 19: baz:3
602 594 20: baz:4
603 595 $ printf "0\n0\n" | cat - baz > baz1
604 596 $ mv baz1 baz
605 597 $ hg ci -m 'added two lines with 0'
606 598 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 5:7)'
607 599 16: baz:0
608 600 19: baz:3
609 601 20: baz:4
610 602 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5, descend=true, startrev=19)'
611 603 19: baz:3
612 604 20: baz:4
613 605 $ echo 6 >> baz
614 606 $ hg ci -m 'added line 8'
615 607 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 5:7)'
616 608 16: baz:0
617 609 19: baz:3
618 610 20: baz:4
619 611 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5, startrev=19, descend=1)'
620 612 19: baz:3
621 613 20: baz:4
622 614 $ sed 's/3/3+/' baz > baz.new
623 615 $ mv baz.new baz
624 616 $ hg ci -m 'baz:3->3+'
625 617 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 5:7, descend=0)'
626 618 16: baz:0
627 619 19: baz:3
628 620 20: baz:4
629 621 24: baz:3->3+
630 622 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:5, startrev=17, descend=True)'
631 623 19: baz:3
632 624 20: baz:4
633 625 24: baz:3->3+
634 626 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 1:2, descend=false)'
635 627 22: added two lines with 0
636 628
637 629 file patterns are okay
638 630 $ hg log -T '{rev}: {desc}\n' -r 'followlines("path:baz", 1:2)'
639 631 22: added two lines with 0
640 632
641 633 renames are followed
642 634 $ hg mv baz qux
643 635 $ sed 's/4/4+/' qux > qux.new
644 636 $ mv qux.new qux
645 637 $ hg ci -m 'qux:4->4+'
646 638 $ hg log -T '{rev}: {desc}\n' -r 'followlines(qux, 5:7)'
647 639 16: baz:0
648 640 19: baz:3
649 641 20: baz:4
650 642 24: baz:3->3+
651 643 25: qux:4->4+
652 644
653 645 but are missed when following children
654 646 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 5:7, startrev=22, descend=True)'
655 647 24: baz:3->3+
656 648
657 649 merge
658 650 $ hg up 24 --quiet
659 651 $ echo 7 >> baz
660 652 $ hg ci -m 'one more line, out of line range'
661 653 created new head
662 654 $ sed 's/3+/3-/' baz > baz.new
663 655 $ mv baz.new baz
664 656 $ hg ci -m 'baz:3+->3-'
665 657 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 5:7)'
666 658 16: baz:0
667 659 19: baz:3
668 660 20: baz:4
669 661 24: baz:3->3+
670 662 27: baz:3+->3-
671 663 $ hg merge 25
672 664 merging baz and qux to qux
673 665 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
674 666 (branch merge, don't forget to commit)
675 667 $ hg ci -m merge
676 668 $ hg log -T '{rev}: {desc}\n' -r 'followlines(qux, 5:7)'
677 669 16: baz:0
678 670 19: baz:3
679 671 20: baz:4
680 672 24: baz:3->3+
681 673 25: qux:4->4+
682 674 27: baz:3+->3-
683 675 28: merge
684 676 $ hg up 25 --quiet
685 677 $ hg merge 27
686 678 merging qux and baz to qux
687 679 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
688 680 (branch merge, don't forget to commit)
689 681 $ hg ci -m 'merge from other side'
690 682 created new head
691 683 $ hg log -T '{rev}: {desc}\n' -r 'followlines(qux, 5:7)'
692 684 16: baz:0
693 685 19: baz:3
694 686 20: baz:4
695 687 24: baz:3->3+
696 688 25: qux:4->4+
697 689 27: baz:3+->3-
698 690 29: merge from other side
699 691 $ hg up 24 --quiet
700 692
701 693 we are missing the branch with rename when following children
702 694 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 5:7, startrev=26, descend=True)'
703 695 27: baz:3+->3-
704 696
705 697 we follow all branches in descending direction
706 698 $ hg up 23 --quiet
707 699 $ sed 's/3/+3/' baz > baz.new
708 700 $ mv baz.new baz
709 701 $ hg ci -m 'baz:3->+3'
710 702 created new head
711 703 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 2:5, startrev=16, descend=True)' --graph
712 704 @ 30: baz:3->+3
713 705 :
714 706 : o 27: baz:3+->3-
715 707 : :
716 708 : o 24: baz:3->3+
717 709 :/
718 710 o 20: baz:4
719 711 |\
720 712 | o 19: baz:3
721 713 |/
722 714 o 18: baz:2
723 715 :
724 716 o 16: baz:0
725 717 |
726 718 ~
727 719
728 720 Issue5595: on a merge changeset with different line ranges depending on
729 721 parent, be conservative and use the surrounding interval to avoid loosing
730 722 track of possible further descendants in specified range.
731 723
732 724 $ hg up 23 --quiet
733 725 $ hg cat baz -r 24
734 726 0
735 727 0
736 728 1 baz:1
737 729 2 baz:2
738 730 3+ baz:3
739 731 4 baz:4
740 732 5
741 733 6
742 734 $ cat > baz << EOF
743 735 > 0
744 736 > 0
745 737 > a
746 738 > b
747 739 > 3+ baz:3
748 740 > 4 baz:4
749 741 > y
750 742 > z
751 743 > EOF
752 744 $ hg ci -m 'baz: mostly rewrite with some content from 24'
753 745 created new head
754 746 $ hg merge --tool :merge-other 24
755 747 merging baz
756 748 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
757 749 (branch merge, don't forget to commit)
758 750 $ hg ci -m 'merge forgetting about baz rewrite'
759 751 $ cat > baz << EOF
760 752 > 0
761 753 > 0
762 754 > 1 baz:1
763 755 > 2+ baz:2
764 756 > 3+ baz:3
765 757 > 4 baz:4
766 758 > 5
767 759 > 6
768 760 > EOF
769 761 $ hg ci -m 'baz: narrow change (2->2+)'
770 762 $ hg log -T '{rev}: {desc}\n' -r 'followlines(baz, 3:4, startrev=20, descend=True)' --graph
771 763 @ 33: baz: narrow change (2->2+)
772 764 |
773 765 o 32: merge forgetting about baz rewrite
774 766 |\
775 767 | o 31: baz: mostly rewrite with some content from 24
776 768 | :
777 769 | : o 30: baz:3->+3
778 770 | :/
779 771 +---o 27: baz:3+->3-
780 772 | :
781 773 o : 24: baz:3->3+
782 774 :/
783 775 o 20: baz:4
784 776 |\
785 777 ~ ~
786 778
787 779 check error cases
788 780 $ hg up 24 --quiet
789 781 $ hg log -r 'followlines()'
790 782 hg: parse error: followlines takes at least 1 positional arguments
791 783 [255]
792 784 $ hg log -r 'followlines(baz)'
793 785 hg: parse error: followlines requires a line range
794 786 [255]
795 787 $ hg log -r 'followlines(baz, 1)'
796 788 hg: parse error: followlines expects a line range
797 789 [255]
798 790 $ hg log -r 'followlines(baz, 1:2, startrev=desc("b"))'
799 791 hg: parse error: followlines expects exactly one revision
800 792 [255]
801 793 $ hg log -r 'followlines("glob:*", 1:2)'
802 794 hg: parse error: followlines expects exactly one file
803 795 [255]
804 796 $ hg log -r 'followlines(baz, 1:)'
805 797 hg: parse error: line range bounds must be integers
806 798 [255]
807 799 $ hg log -r 'followlines(baz, :1)'
808 800 hg: parse error: line range bounds must be integers
809 801 [255]
810 802 $ hg log -r 'followlines(baz, x:4)'
811 803 hg: parse error: line range bounds must be integers
812 804 [255]
813 805 $ hg log -r 'followlines(baz, 5:4)'
814 806 hg: parse error: line range must be positive
815 807 [255]
816 808 $ hg log -r 'followlines(baz, 0:4)'
817 809 hg: parse error: fromline must be strictly positive
818 810 [255]
819 811 $ hg log -r 'followlines(baz, 2:40)'
820 812 abort: line range exceeds file size
821 813 [255]
822 814 $ hg log -r 'followlines(baz, 2:4, startrev=20, descend=[1])'
823 815 hg: parse error at 43: syntax error in revset 'followlines(baz, 2:4, startrev=20, descend=[1])'
824 816 [255]
825 817 $ hg log -r 'followlines(baz, 2:4, startrev=20, descend=a)'
826 818 hg: parse error: descend argument must be a boolean
827 819 [255]
828 820
829 821 Test empty annotate output
830 822
831 823 $ printf '\0' > binary
832 824 $ touch empty
833 825 $ hg ci -qAm 'add binary and empty files'
834 826
835 827 $ hg annotate binary empty
836 828 binary: binary file
837 829
838 830 $ hg annotate -Tjson binary empty
839 831 [
840 832 {
841 833 "abspath": "binary",
842 834 "path": "binary"
843 835 },
844 836 {
845 837 "abspath": "empty",
846 838 "lines": [],
847 839 "path": "empty"
848 840 }
849 841 ]
850 842
851 843 Test annotate with whitespace options
852 844
853 845 $ cd ..
854 846 $ hg init repo-ws
855 847 $ cd repo-ws
856 848 $ cat > a <<EOF
857 849 > aa
858 850 >
859 851 > b b
860 852 > EOF
861 853 $ hg ci -Am "adda"
862 854 adding a
863 855 $ sed 's/EOL$//g' > a <<EOF
864 856 > a a
865 857 >
866 858 > EOL
867 859 > b b
868 860 > EOF
869 861 $ hg ci -m "changea"
870 862
871 863 Annotate with no option
872 864
873 865 $ hg annotate a
874 866 1: a a
875 867 0:
876 868 1:
877 869 1: b b
878 870
879 871 Annotate with --ignore-space-change
880 872
881 873 $ hg annotate --ignore-space-change a
882 874 1: a a
883 875 1:
884 876 0:
885 877 0: b b
886 878
887 879 Annotate with --ignore-all-space
888 880
889 881 $ hg annotate --ignore-all-space a
890 882 0: a a
891 883 0:
892 884 1:
893 885 0: b b
894 886
895 887 Annotate with --ignore-blank-lines (similar to no options case)
896 888
897 889 $ hg annotate --ignore-blank-lines a
898 890 1: a a
899 891 0:
900 892 1:
901 893 1: b b
902 894
903 895 $ cd ..
904 896
905 897 Annotate with linkrev pointing to another branch
906 898 ------------------------------------------------
907 899
908 900 create history with a filerev whose linkrev points to another branch
909 901
910 902 $ hg init branchedlinkrev
911 903 $ cd branchedlinkrev
912 904 $ echo A > a
913 905 $ hg commit -Am 'contentA'
914 906 adding a
915 907 $ echo B >> a
916 908 $ hg commit -m 'contentB'
917 909 $ hg up --rev 'desc(contentA)'
918 910 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
919 911 $ echo unrelated > unrelated
920 912 $ hg commit -Am 'unrelated'
921 913 adding unrelated
922 914 created new head
923 915 $ hg graft -r 'desc(contentB)'
924 916 grafting 1:fd27c222e3e6 "contentB"
925 917 $ echo C >> a
926 918 $ hg commit -m 'contentC'
927 919 $ echo W >> a
928 920 $ hg log -G
929 921 @ changeset: 4:072f1e8df249
930 922 | tag: tip
931 923 | user: test
932 924 | date: Thu Jan 01 00:00:00 1970 +0000
933 925 | summary: contentC
934 926 |
935 927 o changeset: 3:ff38df03cc4b
936 928 | user: test
937 929 | date: Thu Jan 01 00:00:00 1970 +0000
938 930 | summary: contentB
939 931 |
940 932 o changeset: 2:62aaf3f6fc06
941 933 | parent: 0:f0932f74827e
942 934 | user: test
943 935 | date: Thu Jan 01 00:00:00 1970 +0000
944 936 | summary: unrelated
945 937 |
946 938 | o changeset: 1:fd27c222e3e6
947 939 |/ user: test
948 940 | date: Thu Jan 01 00:00:00 1970 +0000
949 941 | summary: contentB
950 942 |
951 943 o changeset: 0:f0932f74827e
952 944 user: test
953 945 date: Thu Jan 01 00:00:00 1970 +0000
954 946 summary: contentA
955 947
956 948
957 949 Annotate should list ancestor of starting revision only
958 950
959 951 $ hg annotate a
960 952 0: A
961 953 3: B
962 954 4: C
963 955
964 956 $ hg annotate a -r 'wdir()'
965 957 0 : A
966 958 3 : B
967 959 4 : C
968 960 4+: W
969 961
970 962 Even when the starting revision is the linkrev-shadowed one:
971 963
972 964 $ hg annotate a -r 3
973 965 0: A
974 966 3: B
975 967
976 968 $ cd ..
977 969
978 970 Issue5360: Deleted chunk in p1 of a merge changeset
979 971
980 972 $ hg init repo-5360
981 973 $ cd repo-5360
982 974 $ echo 1 > a
983 975 $ hg commit -A a -m 1
984 976 $ echo 2 >> a
985 977 $ hg commit -m 2
986 978 $ echo a > a
987 979 $ hg commit -m a
988 980 $ hg update '.^' -q
989 981 $ echo 3 >> a
990 982 $ hg commit -m 3 -q
991 983 $ hg merge 2 -q
992 984 $ cat > a << EOF
993 985 > b
994 986 > 1
995 987 > 2
996 988 > 3
997 989 > a
998 990 > EOF
999 991 $ hg resolve --mark -q
1000 992 $ hg commit -m m
1001 993 $ hg annotate a
1002 994 4: b
1003 995 0: 1
1004 996 1: 2
1005 997 3: 3
1006 998 2: a
1007 999
1008 1000 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now