]> git.saurik.com Git - apt.git/blob - test/integration/test-bug-728500-tempdir
bff90c5f2f79e078952da1604732ca567a50d993
[apt.git] / test / integration / test-bug-728500-tempdir
1 #!/bin/sh
2
3 set -e
4
5 TESTDIR=$(readlink -f $(dirname $0))
6 . $TESTDIR/framework
7 setupenvironment
8 configarchitecture 'i386'
9
10 insertpackage 'unstable' 'coolstuff' 'all' '1.0'
11
12 setupaptarchive
13 changetowebserver
14
15 msgtest 'Test apt-get update with incorrect' 'TMPDIR'
16
17 OUTPUT="$(mktemp)"
18 addtrap "rm \"$OUTPUT\";"
19 export TMPDIR=/does-not-exists
20 testsuccess aptget update -o Debug::Acquire::gpg=1
21 unset TMPDIR
22
23 testsuccessequal 'coolstuff' aptcache pkgnames
24 testsuccess ls rootdir/var/lib/apt/lists/*InRelease