##// END OF EJS Templates
largefiles: add tests for summary/outgoing improved in subsequent patches...
FUJIWARA Katsunori -
r21881:6f332778 default
parent child Browse files
Show More
@@ -490,6 +490,64 b' check messages when there are files to u'
490 b
490 b
491
491
492
492
493 $ cp clone2/b clone2/b1
494 $ cp clone2/b clone2/b2
495 $ hg -R clone2 add --large clone2/b1 clone2/b2
496 $ hg -R clone2 commit -m '#2: add largefiles referring same entity'
497 Invoking status precommit hook
498 A b1
499 A b2
500 $ hg -R clone2 summary --large
501 parent: 2:6095d0695d70 tip
502 #2: add largefiles referring same entity
503 branch: default
504 commit: (clean)
505 update: (current)
506 largefiles: 3 to upload
507 $ hg -R clone2 outgoing --large -T "{rev}:{node|short}\n"
508 comparing with $TESTTMP/issue3651/src (glob)
509 searching for changes
510 1:1acbe71ce432
511 2:6095d0695d70
512 largefiles to upload:
513 b
514 b1
515 b2
516
517
518 $ echo bbb > clone2/b
519 $ hg -R clone2 commit -m '#3: add new largefile entity as existing file'
520 Invoking status precommit hook
521 M b
522 $ echo bbbb > clone2/b
523 $ hg -R clone2 commit -m '#4: add new largefile entity as existing file'
524 Invoking status precommit hook
525 M b
526 $ cp clone2/b1 clone2/b
527 $ hg -R clone2 commit -m '#5: refer existing largefile entity again'
528 Invoking status precommit hook
529 M b
530 $ hg -R clone2 summary --large
531 parent: 5:036794ea641c tip
532 #5: refer existing largefile entity again
533 branch: default
534 commit: (clean)
535 update: (current)
536 largefiles: 3 to upload
537 $ hg -R clone2 outgoing --large -T "{rev}:{node|short}\n"
538 comparing with $TESTTMP/issue3651/src (glob)
539 searching for changes
540 1:1acbe71ce432
541 2:6095d0695d70
542 3:7983dce246cc
543 4:233f12ada4ae
544 5:036794ea641c
545 largefiles to upload:
546 b
547 b1
548 b2
549
550
493 $ cd ..
551 $ cd ..
494
552
495 merge action 'd' for 'local renamed directory to d2/g' which has no filename
553 merge action 'd' for 'local renamed directory to d2/g' which has no filename
General Comments 0
You need to be logged in to leave comments. Login now