summaryrefslogtreecommitdiff
path: root/test/integration/test-bug-728500-tempdir
blob: 3ae94c58ffd2315cd373917d4a3564a4ef1e15d6 (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
25
26
27
28
29
30
#!/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
if aptget update -o Debug::Acquire::gpg=1 >${OUTPUT} 2>&1; then
	msgpass
else
	echo
	cat $OUTPUT
	msgfail
fi
unset TMPDIR

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