]> git.saurik.com Git - apt.git/blobdiff - test/integration/test-bug-lp1445239-download-loop
zh_TW.po: remove several fuzzy tags after review
[apt.git] / test / integration / test-bug-lp1445239-download-loop
index 342e3c61e532a0c64e6c4947f233a893307b080e..a12d5252dbc877d7ccd584907459a05d5fb75356 100755 (executable)
@@ -6,8 +6,8 @@
 
 set -e
 
-TESTDIR=$(readlink -f $(dirname $0))
-. $TESTDIR/framework
+TESTDIR="$(readlink -f "$(dirname "$0")")"
+. "$TESTDIR/framework"
 setupenvironment
 configarchitecture 'amd64'
 
@@ -19,9 +19,9 @@ dd if=/dev/zero of=$TESTFILE bs=100k count=1 2>/dev/null
 
 DOWNLOADLOG='rootdir/tmp/testdownloadfile.log'
 
-TARGET=testfile-downloaded
+TARGET=./downloaded/testfile-downloaded
 dd if=/dev/zero of=$TARGET bs=99k count=1 2>/dev/null
-if ! downloadfile http://localhost:8080/testfile "$TARGET" > "$DOWNLOADLOG"; then
+if ! downloadfile http://localhost:${APTHTTPPORT}/testfile "$TARGET" > "$DOWNLOADLOG"; then
     cat >&2 "$DOWNLOADLOG"
     msgfail
 else