123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/sh
- set -e
- TESTDIR="$(readlink -f "$(dirname "$0")")"
- . "$TESTDIR/framework"
- setupenvironment
- configarchitecture 'i386'
- cat > rootdir/etc/apt/preferences <<EOF
- Package: *
- Pin: release testing
- Pin-Priority: 600
- Package: *
- Pin: release unstable
- Pin-Priority: 1
- EOF
- insertpackage 'testing,installed' 'foo' 'all' '1'
- insertpackage 'testing-updates' 'foo' 'all' '2'
- insertpackage 'unstable' 'foo' 'all' '3'
- insertinstalledpackage 'bar' 'all' '1'
- insertpackage 'testing' 'bar' 'all' '2'
- setupaptarchive
- testsuccessequal "Listing...
- bar/testing 2 all [upgradable from: 1]
- N: There is 1 additional version. Please use the '-a' switch to see it" apt list --upgradable
- testsuccessequal "Listing...
- bar/testing 2 all [upgradable from: 1]
- dpkg/now 1.16.2+fake all [installed,local]
- foo/testing,now 1 all [installed]" apt list
|