diff options
author | Michael Vogt <mvo@debian.org> | 2014-09-05 12:03:28 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-09-05 12:05:21 +0200 |
commit | d059cc2668f284a7db77a15d1d742326d464e963 (patch) | |
tree | e0dab302f628dccb6cea44ec49f90eea91100bc0 /test | |
parent | 3b5607fc31371190470074371793cb8500b5139e (diff) |
Fix incorrect upgradable listing in "apt list" (thanks to Michael Musenbrock)
The "apt list" command was using only the pkgDepCache but not the
pkgPolicy to figure out if a package is upgradable. This lead to
incorrect display of upgradable package when the user used the
policy to pin-down packages. Thanks to Michael Musenbrock for the
initial patch.
Closes: #753297
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/test-bug-753297-upgradable | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/integration/test-bug-753297-upgradable b/test/integration/test-bug-753297-upgradable new file mode 100755 index 000000000..068704b3e --- /dev/null +++ b/test/integration/test-bug-753297-upgradable @@ -0,0 +1,34 @@ +#!/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 + +insertinstalledpackage 'foo' 'all' '1' +insertpackage 'testing' 'foo' 'all' '1' +insertpackage 'testing-updates' 'foo' 'all' '2' +insertpackage 'unstable' 'foo' 'all' '3' + +insertinstalledpackage 'bar' 'all' '1' +insertpackage 'testing' 'bar' 'all' '2' + +setupaptarchive + +testequal "Listing... +bar/testing 2 all [upgradable from: 1]" apt list --upgradable + +testequal "Listing... +bar/testing 2 all [upgradable from: 1] +foo/testing,now 1 all [installed]" apt list |