##// END OF EJS Templates
tests: demonstrate crash when trying to rebase merge without its parents...
Martin von Zweigbergk -
r33641:855a1856 default
parent child Browse files
Show More
@@ -473,6 +473,27 b' Test multiple root handling'
473
473
474 $ cd ..
474 $ cd ..
475
475
476 Detach both parents
477
478 $ hg init double-detach
479 $ cd double-detach
480
481 $ hg debugdrawdag <<EOF
482 > F
483 > /|
484 > C E
485 > | |
486 > B D G
487 > \|/
488 > A
489 > EOF
490
491 BROKEN: This raises an exception
492 $ hg rebase -d G -r 'B + D + F' 2>&1 | grep '^AssertionError'
493 AssertionError: no base found to rebase on (defineparents called wrong)
494
495 $ cd ..
496
476 test on rebase dropping a merge
497 test on rebase dropping a merge
477
498
478 (setup)
499 (setup)
General Comments 0
You need to be logged in to leave comments. Login now