diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-11-19 16:00:33 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-11-19 17:13:56 +0100 |
commit | 87d6947d51717e8b0e975d913986161598a7259a (patch) | |
tree | aa7dfd6a63cbfffd75ace2bafc00589449aa02e6 /test/integration/test-apt-helper | |
parent | bc7a59dded57338e9b5e523726b246dbdd4e0935 (diff) |
tests: use quiet level 0 by default in tests
Git-Dch: Ignore
Diffstat (limited to 'test/integration/test-apt-helper')
-rwxr-xr-x | test/integration/test-apt-helper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/test-apt-helper b/test/integration/test-apt-helper index b78201ef0..a0454a5a2 100755 --- a/test/integration/test-apt-helper +++ b/test/integration/test-apt-helper @@ -95,6 +95,6 @@ testfailureequal 'E: Must specify at least one pair url/filename' apthelper down testfailureequal 'E: Must specify at least one pair url/filename' apthelper download-file 'http://example.org/' testfailureequal 'E: Need one URL as argument' apthelper auto-detect-proxy testfailureequal 'E: Must specify at least one SRV record' apthelper srv-lookup -testfailureequal 'E: GetSrvRec failed for localhost' apthelper srv-lookup 'localhost' -testfailureequal "E: GetSrvRec failed for localhost:${APTHTTPPORT}" apthelper srv-lookup "localhost:${APTHTTPPORT}" -testfailureequal "E: GetSrvRec failed for localhost:${APTHTTPSPORT}" apthelper srv-lookup "localhost:${APTHTTPSPORT}" +testfailureequal 'E: GetSrvRec failed for localhost' apthelper -q=1 srv-lookup 'localhost' +testfailureequal "E: GetSrvRec failed for localhost:${APTHTTPPORT}" apthelper -q=1 srv-lookup "localhost:${APTHTTPPORT}" +testfailureequal "E: GetSrvRec failed for localhost:${APTHTTPSPORT}" apthelper -q=1 srv-lookup "localhost:${APTHTTPSPORT}" |