summaryrefslogtreecommitdiff
path: root/tests/test-update-branches.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-update-branches.t')
-rw-r--r--tests/test-update-branches.t46
1 files changed, 10 insertions, 36 deletions
diff --git a/tests/test-update-branches.t b/tests/test-update-branches.t
index e6a578e..d900037 100644
--- a/tests/test-update-branches.t
+++ b/tests/test-update-branches.t
@@ -15,11 +15,6 @@
$ hg init
$ echo foo > foo
$ echo zero > a
- $ hg init sub
- $ echo suba > sub/suba
- $ hg --cwd sub ci -Am addsuba
- adding suba
- $ echo 'sub = sub' > .hgsub
$ hg ci -qAm0
$ echo one > a ; hg ci -m1
$ echo two > a ; hg ci -m2
@@ -34,46 +29,44 @@ Initial repo state:
$ hg --config 'extensions.graphlog=' \
> glog --template '{rev}:{node|short} {parents} {branches}\n'
- @ 5:ff252e8273df b1
+ @ 5:e1bb631146ca b1
|
- o 4:d047485b3896 0:60829823a42a b1
+ o 4:a4fdb3b883c4 0:b608b9236435 b1
|
- | o 3:6efa171f091b 1:0786582aa4b1
+ | o 3:4b57d2520816 1:44592833ba9f
| |
- | | o 2:bd10386d478c
+ | | o 2:063f31070f65
| |/
- | o 1:0786582aa4b1
+ | o 1:44592833ba9f
|/
- o 0:60829823a42a
+ o 0:b608b9236435
Test helper functions:
$ revtest () {
> msg=$1
- > dirtyflag=$2 # 'clean', 'dirty' or 'dirtysub'
+ > dirtyflag=$2 # 'clean' or 'dirty'
> startrev=$3
> targetrev=$4
> opt=$5
> hg up -qC $startrev
> test $dirtyflag = dirty && echo dirty > foo
- > test $dirtyflag = dirtysub && echo dirty > sub/suba
> hg up $opt $targetrev
> hg parent --template 'parent={rev}\n'
- > hg stat -S
+ > hg stat
> }
$ norevtest () {
> msg=$1
- > dirtyflag=$2 # 'clean', 'dirty' or 'dirtysub'
+ > dirtyflag=$2 # 'clean' or 'dirty'
> startrev=$3
> opt=$4
> hg up -qC $startrev
> test $dirtyflag = dirty && echo dirty > foo
- > test $dirtyflag = dirtysub && echo dirty > sub/suba
> hg up $opt
> hg parent --template 'parent={rev}\n'
- > hg stat -S
+ > hg stat
> }
Test cases are documented in a table in the update function of merge.py.
@@ -106,30 +99,16 @@ Cases are run as shown in that table, row by row.
parent=2
M foo
- $ revtest 'none dirtysub linear' dirtysub 1 2
- 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
- parent=2
- M sub/suba
-
$ revtest 'none dirty same' dirty 2 3
abort: crosses branches (merge branches or use --clean to discard changes)
parent=2
M foo
- $ revtest 'none dirtysub same' dirtysub 2 3
- abort: crosses branches (merge branches or use --clean to discard changes)
- parent=2
- M sub/suba
-
$ revtest 'none dirty cross' dirty 3 4
abort: crosses branches (merge branches or use --clean to discard changes)
parent=3
M foo
- $ revtest 'none dirtysub cross' dirtysub 3 4
- abort: crosses branches (merge branches or use --clean to discard changes)
- parent=3
- M sub/suba
$ revtest '-C dirty linear' dirty 1 2 -C
2 files updated, 0 files merged, 0 files removed, 0 files unresolved
@@ -140,11 +119,6 @@ Cases are run as shown in that table, row by row.
parent=1
M foo
- $ revtest '-c dirtysub linear' dirtysub 1 2 -c
- abort: uncommitted local changes
- parent=1
- M sub/suba
-
$ norevtest '-c clean same' clean 2 -c
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
parent=3