diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-09-02 12:52:04 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-09-02 12:52:04 +0200 |
commit | e8379ba3b9e4d5ab3e2225252ca6fde1217fac28 (patch) | |
tree | fe5e18378e0ac74ede3e63ae491046d8f2111c91 /test | |
parent | b29c37128c2c77490f5851158a7631ed107c79fc (diff) |
set the quiet value for apt-cache so the tests will actually see
the notices as they will not be shown otherwise
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/framework | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/framework b/test/integration/framework index 2b26fc8f7..b5fc46865 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -483,7 +483,7 @@ N: No packages found" local ARCH=$(dpkg-architecture -qDEB_HOST_ARCH_CPU) eval `apt-config shell ARCH APT::Architecture` echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' > $COMPAREFILE - aptcache show $PACKAGE 2>&1 | checkdiff $COMPAREFILE - && msgpass || msgfail + aptcache show -q=0 $PACKAGE 2>&1 | checkdiff $COMPAREFILE - && msgpass || msgfail rm $COMPAREFILE } |