]>
Commit | Line | Data |
---|---|---|
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 | setupaptarchive | |
12 | ||
13 | testsuccess aptget install libsame libsame:i386 | |
14 | ||
15 | REINSTALL='Reading package lists... | |
16 | Building dependency tree... | |
17 | Reading state information... | |
18 | 0 upgraded, 0 newly installed, 2 reinstalled, 0 to remove and 0 not upgraded. | |
19 | Inst libsame [1.0] (1.0 unstable [amd64]) | |
20 | Inst libsame:i386 [1.0] (1.0 unstable [i386]) | |
21 | Conf libsame (1.0 unstable [amd64]) | |
22 | Conf libsame:i386 (1.0 unstable [i386])' | |
23 | ||
24 | testequal "$REINSTALL" aptget install --reinstall libsame -s | |
25 | testequal "$REINSTALL" aptget install --reinstall libsame:amd64 -s | |
26 | testequal "$REINSTALL" aptget install --reinstall libsame:i386 -s | |
27 | testequal "$REINSTALL" aptget install --reinstall libsame:amd64 libsame:i386 -s |