##// END OF EJS Templates
histedit: make verification configurable...
histedit: make verification configurable Before we can add a 'base' action to histedit need to change verification so that action can specify which steps of verification should run for it. Also it's everything we need for the exec and stop actions implementation. I thought about baking verification into each histedit action (so each of them is responsible for verifying its constraints) but it felt wrong because: - every action would need to know its context (eg. the list of all other actions) - a lot of duplicated work will be added - each action will iterate through all others - the steps of the verification would need to be extracted and named anyway in order to be reused The verifyrules function grows too big now. I plan to refator it in one of the next series.

File last commit:

r26066:89872688 default
r27082:4898e442 default
Show More
test-convert-bzr-merges.t
72 lines | 1.8 KiB | text/troff | Tads3Lexer
/ tests / test-convert-bzr-merges.t
Gregory Szorc
tests: move '#require bzr' into .t files...
r26066 #require bzr
Matt Mackall
tests: unify test-convert-bzr-merges
r12516 N.B. bzr 1.13 has a bug that breaks this test. If you see this
test fail, check your bzr version. Upgrading to bzr 1.13.1
should fix it.
$ . "$TESTDIR/bzr-definitions"
test multiple merges at once
$ mkdir test-multimerge
$ cd test-multimerge
$ bzr init -q source
$ cd source
$ echo content > file
$ bzr add -q file
$ bzr commit -q -m 'Initial add'
$ cd ..
$ bzr branch -q source source-branch1
$ cd source-branch1
$ echo morecontent >> file
$ echo evenmorecontent > file-branch1
$ bzr add -q file-branch1
$ bzr commit -q -m 'Added branch1 file'
$ cd ../source
$ sleep 1
$ echo content > file-parent
$ bzr add -q file-parent
$ bzr commit -q -m 'Added parent file'
$ cd ..
$ bzr branch -q source source-branch2
$ cd source-branch2
$ echo somecontent > file-branch2
$ bzr add -q file-branch2
$ bzr commit -q -m 'Added brach2 file'
$ sleep 1
$ cd ../source
$ bzr merge -q ../source-branch1
$ bzr merge -q --force ../source-branch2
$ bzr commit -q -m 'Merged branches'
$ cd ..
$ hg convert --datesort source source-hg
initializing destination source-hg repository
scanning source...
sorting...
converting...
4 Initial add
3 Added branch1 file
2 Added parent file
1 Added brach2 file
0 Merged branches
$ glog -R source-hg
Patrick Mezard
convert/bzr: convert all branches (issue3229) (BC)...
r16060 o 5@source "(octopus merge fixup)" files:
Matt Mackall
tests: unify test-convert-bzr-merges
r12516 |\
Patrick Mezard
convert/bzr: convert all branches (issue3229) (BC)...
r16060 | o 4@source "Merged branches" files: file-branch2
Matt Mackall
tests: unify test-convert-bzr-merges
r12516 | |\
Patrick Mezard
convert/bzr: convert all branches (issue3229) (BC)...
r16060 o---+ 3@source-branch2 "Added brach2 file" files: file-branch2
Matt Mackall
tests: unify test-convert-bzr-merges
r12516 / /
Patrick Mezard
convert/bzr: convert all branches (issue3229) (BC)...
r16060 | o 2@source "Added parent file" files: file-parent
Matt Mackall
tests: unify test-convert-bzr-merges
r12516 | |
Patrick Mezard
convert/bzr: convert all branches (issue3229) (BC)...
r16060 o | 1@source-branch1 "Added branch1 file" files: file file-branch1
Matt Mackall
tests: unify test-convert-bzr-merges
r12516 |/
Patrick Mezard
convert/bzr: convert all branches (issue3229) (BC)...
r16060 o 0@source "Initial add" files: file
Matt Mackall
tests: unify test-convert-bzr-merges
r12516
$ manifest source-hg tip
% manifest of tip
644 file
644 file-branch1
644 file-branch2
644 file-parent
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..