| 1 | #!/bin/sh |
| 2 | set -e |
| 3 | |
| 4 | TESTDIR=$(readlink -f $(dirname $0)) |
| 5 | . $TESTDIR/framework |
| 6 | setupenvironment |
| 7 | configarchitecture 'amd64' 'i386' 'armel' |
| 8 | |
| 9 | buildsimplenativepackage '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… |
| 12 | insertinstalledpackage 'libsame' 'amd64,i386' '1.0' 'Multi-Arch: same' |
| 13 | sed -e 's#/installed#/unstable#' -e 's#Installed-Size: 42#Installed-Size: 1#' -i rootdir/var/lib/dpkg/status |
| 14 | |
| 15 | setupaptarchive |
| 16 | |
| 17 | REINSTALL='Reading package lists... |
| 18 | Building dependency tree... |
| 19 | 0 upgraded, 0 newly installed, 2 reinstalled, 0 to remove and 0 not upgraded. |
| 20 | Inst libsame [1.0] (1.0 unstable [amd64]) |
| 21 | Inst libsame:i386 [1.0] (1.0 unstable [i386]) |
| 22 | Conf libsame (1.0 unstable [amd64]) |
| 23 | Conf libsame:i386 (1.0 unstable [i386])' |
| 24 | |
| 25 | testequal "$REINSTALL" aptget install --reinstall libsame -s |
| 26 | testequal "$REINSTALL" aptget install --reinstall libsame:amd64 -s |
| 27 | testequal "$REINSTALL" aptget install --reinstall libsame:i386 -s |
| 28 | testequal "$REINSTALL" aptget install --reinstall libsame:amd64 libsame:i386 -s |