diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2012-05-19 23:07:30 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2012-05-19 23:07:30 +0200 |
commit | 177645edb5775337ccf6d3971835a122b12318d4 (patch) | |
tree | 4f5ccb632e2627f7d45fa9b5d3d6c0dc1cf7d1ec /test/integration | |
parent | 2d49cf5eeb041ebb115ed2bdec4840f0523071ee (diff) |
* apt-pkg/packagemanager.cc:
- do not run into loop on new-pre-depends-breaks (Closes: #673536)
Diffstat (limited to 'test/integration')
-rwxr-xr-x | test/integration/test-673536-pre-depends-breaks-loop | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/integration/test-673536-pre-depends-breaks-loop b/test/integration/test-673536-pre-depends-breaks-loop new file mode 100755 index 000000000..e9d3c4de6 --- /dev/null +++ b/test/integration/test-673536-pre-depends-breaks-loop @@ -0,0 +1,23 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'native' + +buildsimplenativepackage 'basic' 'native' '1' 'stable' +buildsimplenativepackage 'basic' 'native' '2' 'unstable' 'Pre-Depends: common' +buildsimplenativepackage 'common' 'native' '2' 'unstable' 'Breaks: basic (<= 1)' + +setupaptarchive + +# we check with 'real' packages here as the simulation reports a 'Conf broken' +# which is technical correct for the simulation, but testing errormsg is ugly + +aptget install basic=1 -qq > /dev/null +testdpkginstalled basic +testdpkgnotinstalled common + +aptget dist-upgrade -qq > /dev/null +testdpkginstalled basic common |