| 1 | #!/bin/sh |
| 2 | set -e |
| 3 | |
| 4 | TESTDIR=$(readlink -f $(dirname $0)) |
| 5 | . $TESTDIR/framework |
| 6 | setupenvironment |
| 7 | configarchitecture 'amd64' |
| 8 | |
| 9 | insertinstalledpackage 'python3' 'all' '3.2.3-6' |
| 10 | |
| 11 | insertpackage 'unstable' 'python3' 'amd64' '3.3.2-16' 'Multi-Arch: allowed' |
| 12 | insertpackage 'stable' 'python3-gnupg' 'all' '0.3.5-2' 'Depends: python3:any (>= 3.2.3-3~)' |
| 13 | |
| 14 | insertpackage 'unstable' 'python-mips' 'amd64' '3' 'Depends: python3:mips' |
| 15 | |
| 16 | setupaptarchive |
| 17 | |
| 18 | INSTALLLOG='Reading package lists... |
| 19 | Building dependency tree... |
| 20 | The following extra packages will be installed: |
| 21 | python3 |
| 22 | The following NEW packages will be installed: |
| 23 | python3-gnupg |
| 24 | The following packages will be upgraded: |
| 25 | python3 |
| 26 | 1 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. |
| 27 | Inst python3 [3.2.3-6] (3.3.2-16 unstable [amd64]) |
| 28 | Inst python3-gnupg (0.3.5-2 stable [all]) |
| 29 | Conf python3 (3.3.2-16 unstable [amd64]) |
| 30 | Conf python3-gnupg (0.3.5-2 stable [all])' |
| 31 | |
| 32 | FAILLOG='Reading package lists... |
| 33 | Building dependency tree... |
| 34 | Some packages could not be installed. This may mean that you have |
| 35 | requested an impossible situation or if you are using the unstable |
| 36 | distribution that some required packages have not yet been created |
| 37 | or been moved out of Incoming. |
| 38 | The following information may help to resolve the situation: |
| 39 | |
| 40 | The following packages have unmet dependencies: |
| 41 | python-mips : Depends: python3:mips but it is not installable |
| 42 | E: Unable to correct problems, you have held broken packages.' |
| 43 | |
| 44 | testequal "$INSTALLLOG" aptget install python3-gnupg -s |
| 45 | aptcache showpkg python3 > showpkg.log |
| 46 | testequal "$FAILLOG" aptget install python-mips -s |
| 47 | |
| 48 | # same test, but this time in a multi-arch environment |
| 49 | configarchitecture 'amd64' 'armhf' |
| 50 | rm rootdir/var/cache/apt/*.bin |
| 51 | |
| 52 | testequal "$INSTALLLOG" aptget install python3-gnupg -s |
| 53 | testequal "$(sed 's#3.3.2-16 - python3#3.3.2-16 - python3:any:armhf python3#' showpkg.log)" aptcache showpkg python3 |
| 54 | testequal "$FAILLOG" aptget install python-mips -s |