run apt-get download in quiet mode as it messes with output otherwise
authorDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 11 Oct 2011 12:44:05 +0000 (14:44 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 11 Oct 2011 12:44:05 +0000 (14:44 +0200)
test/integration/test-apt-get-download

index 7db93c3..4edb7c1 100755 (executable)
@@ -13,13 +13,12 @@ buildsimplenativepackage 'apt' 'all' '2.0' 'unstable'
 setupaptarchive
 
 testdownload() {
-       msgtest 'Test download of package file' $1
-       if [ -z "$3" ]; then
-               aptget download ${2}
-       else
-               aptget download ${2}/${3}
+       local APT="$2"
+       if [ -n "$3" ]; then
+               APT="${APT}/${3}"
        fi
-       test -f $1 && msgpass || msgfail
+       msgtest "Test download of package file $1 with" "$APT"
+       aptget -qq download ${APT} && test -f $1 && msgpass || msgfail
 }
 
 testdownload apt_1.0_all.deb apt stable