comparison tests/test-push-warn @ 3797:2aef481ac73c

Don't report an error when closing heads during local push (issue387)
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 05 Dec 2006 23:25:28 +0100
parents 975c2469c316
children 27230c29bfec
comparison
equal deleted inserted replaced
3796:a0d0d24c4e71 3797:2aef481ac73c
45 done 45 done
46 46
47 HGMERGE=true hg merge 3 47 HGMERGE=true hg merge 3
48 hg ci -m c-d -d "1000000 0" 48 hg ci -m c-d -d "1000000 0"
49 49
50 hg push ../c 50 hg push ../c; echo $?
51 hg push -r 2 ../c 51 hg push -r 2 ../c; echo $?
52 hg push -r 3 -r 4 ../c 52 hg push -r 3 ../c; echo $?
53 hg push -f -r 3 -r 4 ../c 53 hg push -r 3 -r 4 ../c; echo $?
54 hg push -r 5 ../c 54 hg push -f -r 3 -r 4 ../c; echo $?
55 hg push -r 5 ../c; echo $?
55 56
56 exit 0 57 exit 0