summaryrefslogtreecommitdiff
path: root/test/integration/test-bug-728500-tempdir
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-01-24 23:00:57 +0100
committerMichael Vogt <mvo@debian.org>2014-01-24 23:00:57 +0100
commit34f7c486b10559997849c15c6b51577ec3f96bc1 (patch)
tree84a6a8c8a4c02c5d9b7d9fe1d52472c5e6eb7dec /test/integration/test-bug-728500-tempdir
parent1aef66d5e150c608276fabdf1c2d2aaca9c45b7f (diff)
parent2fd754cfe9a92fe85f4dd56447c70112b64b003e (diff)
Merge remote-tracking branch 'ajt/better-pdiffs-dk' into debian/sid
Diffstat (limited to 'test/integration/test-bug-728500-tempdir')
-rwxr-xr-xtest/integration/test-bug-728500-tempdir19
1 files changed, 15 insertions, 4 deletions
diff --git a/test/integration/test-bug-728500-tempdir b/test/integration/test-bug-728500-tempdir
index 0606538a1..0451fc1ed 100755
--- a/test/integration/test-bug-728500-tempdir
+++ b/test/integration/test-bug-728500-tempdir
@@ -7,12 +7,23 @@ TESTDIR=$(readlink -f $(dirname $0))
setupenvironment
configarchitecture 'i386'
-buildsimplenativepackage 'coolstuff' 'all' '1.0' 'unstable'
+insertpackage 'unstable' 'coolstuff' 'all' '1.0'
setupaptarchive
changetowebserver
-msgtest 'Test with incorect TMPDIR'
+msgtest 'Test apt-get update with incorrect' 'TMPDIR'
+
+OUTPUT=$(mktemp)
+addtrap "rm $OUTPUT;"
export TMPDIR=/does-not-exists
-aptget update && msgpass || msgfail
-unset TMPDIR \ No newline at end of file
+if aptget update >${OUTPUT} 2>&1; then
+ msgpass
+else
+ echo
+ cat $OUTPUT
+ msgfail
+fi
+unset TMPDIR
+
+testequal 'coolstuff' aptcache pkgnames