123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- #!/bin/sh
- set -e
- TESTDIR="$(readlink -f "$(dirname "$0")")"
- . "$TESTDIR/framework"
- setupenvironment
- configarchitecture 'amd64' 'armel'
- #insertinstalledpackage 'xserver-xorg-core' 'amd64' '2:1.7.6-2ubuntu7.10'
- insertpackage 'unstable' 'libsame' 'armel,amd64' '1' 'Multi-Arch: same'
- insertpackage 'unstable' 'foo' 'all' '1'
- setupaptarchive
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Conf libsame (1 unstable [amd64])' aptget -s install libsame
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame:armel
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame:armel (1 unstable [armel])
- Conf libsame:armel (1 unstable [armel])' aptget -s install libsame:armel
- testfailureequal 'Reading package lists...
- Building dependency tree...
- E: Unable to locate package libsame:armhf' aptget -s install libsame:armhf
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Conf libsame (1 unstable [amd64])' aptget -s install libsame:amd64
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame libsame:armel
- 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Inst libsame:armel (1 unstable [armel])
- Conf libsame (1 unstable [amd64])
- Conf libsame:armel (1 unstable [armel])' aptget -s install libsame:armel libsame:amd64
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame libsame:armel
- 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Inst libsame:armel (1 unstable [armel])
- Conf libsame (1 unstable [amd64])
- Conf libsame:armel (1 unstable [armel])' aptget -s install libsame:*
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Conf libsame (1 unstable [amd64])' aptget -s install libsame:any
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame libsame:armel
- 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Inst libsame:armel (1 unstable [armel])
- Conf libsame (1 unstable [amd64])
- Conf libsame:armel (1 unstable [armel])' aptget -s install libsame:a*
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Conf libsame (1 unstable [amd64])' aptget -s install libsame:linux-any
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- libsame libsame:armel
- 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
- Inst libsame (1 unstable [amd64])
- Inst libsame:armel (1 unstable [armel])
- Conf libsame (1 unstable [amd64])
- Conf libsame:armel (1 unstable [armel])' aptget -s install libsame:linux-*
- testfailureequal 'Reading package lists...
- Building dependency tree...
- E: Unable to locate package libsame:windows-any' aptget -s install libsame:windows-any
- testfailureequal 'Reading package lists...
- Building dependency tree...
- E: Unable to locate package foo:armel' aptget -s install foo:armel
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- foo
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst foo (1 unstable [all])
- Conf foo (1 unstable [all])' aptget -s install foo
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- foo
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst foo (1 unstable [all])
- Conf foo (1 unstable [all])' aptget -s install foo:all
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- foo
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst foo (1 unstable [all])
- Conf foo (1 unstable [all])' aptget -s install foo:amd64
- testsuccessequal 'Reading package lists...
- Building dependency tree...
- The following NEW packages will be installed:
- foo
- 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
- Inst foo (1 unstable [all])
- Conf foo (1 unstable [all])' aptget -s install foo:native
|