]> git.saurik.com Git - apt.git/blobdiff - test/integration/test-bug-733028-gpg-resource-limit
tests: support spaces in path and TMPDIR
[apt.git] / test / integration / test-bug-733028-gpg-resource-limit
index f9c80496350d046cfa3293ffa3eeef38c5d44bb9..430c8ad61f64b82090f6c120149b97706f3bc010 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 set -e
 
-TESTDIR=$(readlink -f $(dirname $0))
-. $TESTDIR/framework
+TESTDIR="$(readlink -f "$(dirname "$0")")"
+. "$TESTDIR/framework"
 setupenvironment
 configarchitecture 'i386'
 
@@ -17,11 +17,11 @@ done
 aptkey list | grep '^pub' > aptkey.list
 testfileequal ./aptkey.list 'pub   2048R/DBAC8DAE 2010-08-18'
 
+testsuccess aptget update
 msgtest 'Test for no gpg errors/warnings in' 'apt-get update'
-aptget update > update.log 2>&1
-if grep -iq 'GPG' update.log; then
+if grep -iq 'GPG' rootdir/tmp/testsuccess.output; then
+       cat rootdir/tmp/testsuccess.output
        msgfail
-       cat update.log
 else
        msgpass
 fi