diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-06-25 12:20:52 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-06-27 11:43:09 +0200 |
commit | a9e4fd6534a2ae6a5a983df77e5b1efa32f3a756 (patch) | |
tree | a3b912b293d9cd4105973835f6c4a0343b155d6d | |
parent | 1136a707b7792394ea4b1d039dda4f321fec9da4 (diff) |
tests: add epoch-packages to try clean with epochs
Git-Dch: Ignore
-rwxr-xr-x | test/integration/test-apt-get-clean | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/test/integration/test-apt-get-clean b/test/integration/test-apt-get-clean index 6bf20c8d7..d05073218 100755 --- a/test/integration/test-apt-get-clean +++ b/test/integration/test-apt-get-clean @@ -9,6 +9,7 @@ configarchitecture 'amd64' insertpackage 'testing' 'foo' 'all' '1' insertpackage 'unstable' 'foo' 'all' '2' +insertpackage 'experimental' 'foo' 'all' '1:1' insertinstalledpackage 'foo' 'all' '3' setupaptarchive --no-update @@ -21,17 +22,33 @@ testsuccess aptget clean testsuccess aptget clean -s # generate some dirt and clean it up -touch rootdir/var/lib/apt/lists/partial/http.debian.net_debian_dists_sid_main_i18n_Translation-en -mkdir -p rootdir/var/cache/apt/archives/lost+found -touch rootdir/var/cache/apt/archives/foo_1_all.deb -touch rootdir/var/cache/apt/archives/foo_2_all.deb -touch rootdir/var/cache/apt/archives/foo_3_all.deb -touch rootdir/var/cache/apt/archives/foo_4_all.deb +generatedirt() { + touch rootdir/var/lib/apt/lists/partial/http.debian.net_debian_dists_sid_main_i18n_Translation-en + mkdir -p rootdir/var/cache/apt/archives/lost+found + touch rootdir/var/cache/apt/archives/foo_1_all.deb + touch rootdir/var/cache/apt/archives/foo_1%3a1_all.deb + touch rootdir/var/cache/apt/archives/foo_2%3a1_all.deb + touch rootdir/var/cache/apt/archives/foo_2_all.deb + touch rootdir/var/cache/apt/archives/foo_3_all.deb + touch rootdir/var/cache/apt/archives/foo_4_all.deb +} -testsuccess aptget clean +generatedirt +testsuccess aptget autoclean +testsuccess test -e rootdir/var/lib/apt/lists/partial/http.debian.net_debian_dists_sid_main_i18n_Translation-en +testsuccess test -e rootdir/var/cache/apt/archives/foo_1_all.deb +testsuccess test -e rootdir/var/cache/apt/archives/foo_1%3a1_all.deb +testfailure test -e rootdir/var/cache/apt/archives/foo_2%3a1_all.deb +testsuccess test -e rootdir/var/cache/apt/archives/foo_2_all.deb +testfailure test -e rootdir/var/cache/apt/archives/foo_3_all.deb +testfailure test -e rootdir/var/cache/apt/archives/foo_4_all.deb +generatedirt +testsuccess aptget clean testfailure test -e rootdir/var/lib/apt/lists/partial/http.debian.net_debian_dists_sid_main_i18n_Translation-en testfailure test -e rootdir/var/cache/apt/archives/foo_1_all.deb +testfailure test -e rootdir/var/cache/apt/archives/foo_1%3a1_all.deb +testfailure test -e rootdir/var/cache/apt/archives/foo_2%3a1_all.deb testfailure test -e rootdir/var/cache/apt/archives/foo_2_all.deb testfailure test -e rootdir/var/cache/apt/archives/foo_3_all.deb testfailure test -e rootdir/var/cache/apt/archives/foo_4_all.deb |