summaryrefslogtreecommitdiff
path: root/test/integration/test-bug-728500-tempdir
blob: 0451fc1ed97ca3e0d11fbef4800b38caa85e1c6a (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
#!/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 >${OUTPUT} 2>&1; then
	msgpass
else
	echo
	cat $OUTPUT
	msgfail
fi
unset TMPDIR

testequal 'coolstuff' aptcache pkgnames