* test/libapt/assert.h, test/libapt/run-tests:
[ntk/apt.git] / test / integration / test-ubuntu-bug-859188-multiarch-reinstall
CommitLineData
9535a4db
DK
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6setupenvironment
7configarchitecture 'amd64' 'i386' 'armel'
8
9buildsimplenativepackage 'libsame' 'amd64,i386,armel' '1.0' 'unstable' 'Multi-Arch: same'
10
11# FIXME: hack around dpkg's current inability to handle multiarch, a clean install would be better…
12insertinstalledpackage 'libsame' 'amd64,i386' '1.0' 'Multi-Arch: same'
13sed -e 's#/installed#/unstable#' -e 's#Installed-Size: 42#Installed-Size: 1#' -i rootdir/var/lib/dpkg/status
14
15setupaptarchive
16
17REINSTALL='Reading package lists...
18Building dependency tree...
190 upgraded, 0 newly installed, 2 reinstalled, 0 to remove and 0 not upgraded.
20Inst libsame [1.0] (1.0 unstable [amd64])
21Inst libsame:i386 [1.0] (1.0 unstable [i386])
22Conf libsame (1.0 unstable [amd64])
23Conf libsame:i386 (1.0 unstable [i386])'
24
25testequal "$REINSTALL" aptget install --reinstall libsame -s
26testequal "$REINSTALL" aptget install --reinstall libsame:amd64 -s
27testequal "$REINSTALL" aptget install --reinstall libsame:i386 -s
28testequal "$REINSTALL" aptget install --reinstall libsame:amd64 libsame:i386 -s