summaryrefslogtreecommitdiffstats
path: root/test/integration/skip-bug-711456-apt-cdrom-multiple-cds-multiarch
blob: 9abaee1f1ac7446307a0a3168a2cfea44e500f5f (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
#!/bin/sh
set -e

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

buildsimplenativepackage 'testing' 'amd64,i386' '0.8.15' 'stable' 'Depends: libtest'
buildsimplenativepackage 'libtest' 'amd64,i386' '0.8.15' 'stable' 'Multi-Arch: same'
buildsimplenativepackage 'libtest' 'amd64,i386' '1' 'unstable' 'Multi-Arch: same'

# needed by the ftparchive.conf
cd aptarchive
ln -s ../incoming pool
createaptftparchiveconfig
cd - >/dev/null
# create an amd64 cdrom
sed -i 's#Architectures .*$#Architectures "amd64 source";#' aptarchive/ftparchive.conf
setupaptarchive --no-update
changetocdrom 'Debian APT Testdisk amd64 0.8.15'
mv rootdir/media/cdrom rootdir/media/cdrom-amd64
addtrap 'prefix' "chmod -R +w $PWD/rootdir/media/cdrom-amd64/dists/;"
chmod -R -w rootdir/media/cdrom-amd64/dists
ln -s $PWD/rootdir/media/cdrom-amd64 $PWD/rootdir/media/cdrom
aptcdrom add -m -o quiet=1
rm $PWD/rootdir/media/cdrom
# do it again to create a i386 cdrom
sed -i 's#Architectures .*$#Architectures "i386 source";#' aptarchive/ftparchive.conf
setupaptarchive --no-update
changetocdrom 'Debian APT Testdisk i386 0.8.15'
mv rootdir/media/cdrom rootdir/media/cdrom-i386
addtrap 'prefix' "chmod -R +w $PWD/rootdir/media/cdrom-i386/dists/;"
chmod -R -w rootdir/media/cdrom-i386/dists
ln -s $PWD/rootdir/media/cdrom-i386 $PWD/rootdir/media/cdrom
aptcdrom add -m -o quiet=1

# play with the cdroms
testdpkgnotinstalled testing
aptget install testing -t stable -y #> /dev/null 2>&1
testdpkginstalled testing

testdpkgnotinstalled testing:i386
aptget install testing:i386 -t stable -y #> /dev/null 2>&1
testdpkginstalled testing:i386

aptget dist-upgrade -y