summaryrefslogtreecommitdiff
path: root/test/integration/test-bug-728500-tempdir
blob: bff90c5f2f79e078952da1604732ca567a50d993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e

TESTDIR=$(readlink -f $(dirname $0))
. $TESTDIR/framework
setupenvironment
configarchitecture 'i386'

insertpackage 'unstable' 'coolstuff' 'all' '1.0'

setupaptarchive
changetowebserver

msgtest 'Test apt-get update with incorrect' 'TMPDIR'

OUTPUT="$(mktemp)"
addtrap "rm \"$OUTPUT\";"
export TMPDIR=/does-not-exists
testsuccess aptget update -o Debug::Acquire::gpg=1
unset TMPDIR

testsuccessequal 'coolstuff' aptcache pkgnames
testsuccess ls rootdir/var/lib/apt/lists/*InRelease