diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-09-14 20:30:15 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-09-14 20:30:15 +0200 |
commit | 3e60519c4a2f7baf59553f94700646f4fef4d28d (patch) | |
tree | 0b5c7deb860eed58c40c472bb62c6fa00e281af6 /test/integration/test-package-reinstallation | |
parent | cbfc289d6eb2711ef12033e4eb024befd0b31815 (diff) | |
parent | 75a90b93257ea81d42331c03b56bd6589c62e065 (diff) |
merged from donkult
Diffstat (limited to 'test/integration/test-package-reinstallation')
-rwxr-xr-x | test/integration/test-package-reinstallation | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/integration/test-package-reinstallation b/test/integration/test-package-reinstallation new file mode 100755 index 000000000..359f69284 --- /dev/null +++ b/test/integration/test-package-reinstallation @@ -0,0 +1,17 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture "i386" + +insertinstalledpackage 'libc-bin' 'i386' '2.13-8' 'Replaces: libc6' +insertpackage 'unstable' 'libc-bin' 'i386' '2.13-8' 'Replaces: libc6' +insertinstalledpackage 'libc6' 'i386' '2.13-8' 'Depends: libc-bin (= 2.13-8)' +insertpackage 'unstable' 'libc6' 'i386' '2.13-8' 'Depends: libc-bin (= 2.13-8)' +insertinstalledpackage 'apt' 'i386' '0.8.15' 'Depends: libc6' + +setupaptarchive + +aptget install --reinstall libc6 libc-bin -s -o Debug::pkgPackageManager=1 |