summaryrefslogtreecommitdiff
path: root/test/integration/test-bug-728500-tempdir
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2014-01-15 18:44:47 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2014-01-15 22:58:50 +0100
commitf74a6fa120759d0a1bd4a5aff0dc2c50911b5407 (patch)
treeaf08070ef3b99b13a73f8aefc652fc0e16ea1fea /test/integration/test-bug-728500-tempdir
parent50bd6fd3794dd1f61185302129dc6cd218d20b98 (diff)
rework some testcases to not spit out text
Rework also uncovers two FIXMEs Git-Dch: Ignore
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