]> git.saurik.com Git - apt.git/blobdiff - test/integration/test-apt-https-no-redirect
use the same code to detect quiet setting in all tools
[apt.git] / test / integration / test-apt-https-no-redirect
index 73352a28cac1b2977ff9c3fd0949a589d88c1a52..bc744d6f27227d49d2ad634d2afc0fc33d71ae0d 100755 (executable)
@@ -25,6 +25,11 @@ msgtest 'download of a file does not work if' 'https redirected to http'
 downloadfile 'https://localhost:4433/redirectme/working' redirectfile >curloutput 2>&1 && msgfail || msgpass
 
 msgtest 'libcurl has forbidden access in last request to' 'http resource'
-grep -q -- 'Protocol http not supported or disabled in libcurl' curloutput && msgpass || msgfail
+if grep -q -E -- 'Protocol "?http"? not supported or disabled in libcurl' curloutput; then
+       msgpass
+else
+       cat curloutput
+       msgfail
+fi