summaryrefslogtreecommitdiff
path: root/tests/tests/quilt-gbp
blob: ac8a42651b4abb0201c25895c785f466748928d5 (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
51
#!/bin/bash
set -e
. tests/lib

t-tstunt-parsechangelog

t-newtag

t-gbp-example-prep

t-expect-fail 'quilt fixup cannot be linear' \
  t-dgit build-source

t-dgit --quilt=gbp build-source

t-dgit --quilt=gbp --gbp=no-such-command-gbp build-source

echo spong >debian/pointless-for-dgit-test
git add debian/pointless-for-dgit-test
git commit -m Pointless

t-expect-fail no-such-command-gbp \
t-dgit --quilt=gbp --clean=git --gbp=no-such-command-gbp build-source

t-dgit --quilt=gbp --clean=git build-source

t-expect-fail 'specifies a different tree to your HEAD commit' \
  t-dgit push

test-push () {
	t-refs-same-start
	t-ref-head

	t-dgit --quilt=gbp push

	t-gbp-pushed-good
}

test-push

echo wombat >>debian/pointless-for-dgit-test
git add debian/pointless-for-dgit-test
git commit -m 'Pointless 2'

t-commit 'Check pseudomerge' 1.0-3

t-dgit --quilt=gbp --clean=git build-source

test-push

echo ok.