summaryrefslogtreecommitdiff
path: root/tests/tests/overwrite-chkclog
blob: fee21816365924757ad4924f91418a7db32cd138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
set -e
. tests/lib

t-setup-import examplegit

cd example

suite=stable

t-commit 'No changes, just send to stable' '' stable

t-dgit -wgf build

t-expect-fail 'Perhaps debian/changelog does not mention' \
t-dgit push --overwrite stable

t-dgit setup-mergechangelogs

t-expect-fail 'fix conflicts and then commit the result' \
git merge dgit/dgit/stable

git checkout master which
EDITOR=: git commit

perl -i~ -pe 's/^(\w+ \(\S+\)) stable/$1 UNRELEASED/ if $.>1' debian/changelog
git add debian/changelog
git commit -m 'UNRELEASED changelog'

t-dgit -wgf build

t-expect-fail E:'Distribution.*is UNRELEASED' \
t-dgit push --overwrite stable

git revert --no-edit 'HEAD^{/UNRELEASED changelog}'

t-dgit -wgf build

perl -i~ -pe 's/^(\w+ \(\S+)(\) stable)/$1+X$2/ if $.>1' debian/changelog
git add debian/changelog
git commit -m 'Break changelog'

t-expect-fail 'Perhaps debian/changelog does not mention' \
t-dgit push --overwrite stable

git revert --no-edit 'HEAD^{/Break changelog}'

t-dgit push --overwrite stable

t-ok