summaryrefslogtreecommitdiffstats
path: root/test/integration/test-bug-680041-apt-mark-holds-correctly
blob: bdb086616915612b7a695172cce5577638314d1d (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64'

insertinstalledpackage 'pkgarch' 'amd64' '1'
insertinstalledpackage 'pkgall' 'all' '1'

insertpackage 'unstable' 'pkgarch' 'amd64' '2'
insertpackage 'unstable' 'pkgall' 'all' '2'

setupaptarchive

runtests() {
	testempty aptmark showhold

	testfailureequal 'Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages will be upgraded:
  pkgall pkgarch
2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/84 B of archives.
After this operation, 0 B of additional disk space will be used.
E: Trivial Only specified but this is not a trivial operation.' aptget dist-upgrade --trivial-only

	testsuccessequal 'pkgarch set on hold.' aptmark hold pkgarch
	testsuccessequal 'pkgarch' aptmark showhold

	testfailureequal 'Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages have been kept back:
  pkgarch
The following packages will be upgraded:
  pkgall
1 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/42 B of archives.
After this operation, 0 B of additional disk space will be used.
E: Trivial Only specified but this is not a trivial operation.' aptget dist-upgrade --trivial-only

	testsuccessequal 'Canceled hold on pkgarch.' aptmark unhold pkgarch
	testempty aptmark showhold

	testfailureequal 'Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages will be upgraded:
  pkgall pkgarch
2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/84 B of archives.
After this operation, 0 B of additional disk space will be used.
E: Trivial Only specified but this is not a trivial operation.' aptget dist-upgrade --trivial-only

	testsuccessequal 'pkgall set on hold.' aptmark hold pkgall
	testsuccessequal 'pkgall' aptmark showhold

	testfailureequal 'Reading package lists...
Building dependency tree...
Calculating upgrade...
The following packages have been kept back:
  pkgall
The following packages will be upgraded:
  pkgarch
1 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/42 B of archives.
After this operation, 0 B of additional disk space will be used.
E: Trivial Only specified but this is not a trivial operation.' aptget dist-upgrade --trivial-only

	testsuccessequal 'Canceled hold on pkgall.' aptmark unhold pkgall
	testempty aptmark showhold
}
# single-arch
runtests
# multi-arch
configarchitecture 'amd64' 'i386'
runtests