diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-04-04 17:09:43 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-04-04 17:09:43 +0200 |
commit | 53ba4e2c2dd29758be0a911489ca5c23e5107513 (patch) | |
tree | 1c01eba553ca6e2deda76be16a26a02ca6ffa4b0 /test/integration/test-apt-ftparchive-cachedb | |
parent | 215b0faf7b00f836e54f9903c4fe7398c0927e0f (diff) |
ensure clean works
Diffstat (limited to 'test/integration/test-apt-ftparchive-cachedb')
-rwxr-xr-x | test/integration/test-apt-ftparchive-cachedb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/integration/test-apt-ftparchive-cachedb b/test/integration/test-apt-ftparchive-cachedb index 2a3bfce99..147272a2c 100755 --- a/test/integration/test-apt-ftparchive-cachedb +++ b/test/integration/test-apt-ftparchive-cachedb @@ -91,3 +91,10 @@ ensure_correct_contents_file testequal " Misses in Cache: 0 dists/test/Contents-i386: New 402 B Misses in Cache: 0" grep Misses stats-out.txt +# and clean +rm -rf aptarchive/pool/main/* +testequal "packages-main-i386.db" aptftparchive clean ftparchive.conf +aptftparchive clean ftparchive.conf -o Debug::APT::FTPArchive::Clean=1 > clean-out.txt 2>&1 +testequal "0 Number of unique keys in the tree" grep unique clean-out.txt +testequal "packages-main-i386.db" grep packages-main-i386.db clean-out.txt + |