diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-28 09:28:29 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-28 09:28:29 +0200 |
commit | b433026f2803b42904937059cc62d902f2ca6294 (patch) | |
tree | 6d29b99c856ccf4443f3fb2c9bb40a9695fa4b4c /test | |
parent | ed6ba81db1b2832089ea443cf0030ab3f15fda97 (diff) | |
parent | ae6ea526d65eb560b825677e8aac4a3fa15934e4 (diff) |
merged from lp:~donkult/apt/sid
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/test-bug-633350-do-not-kill-last-char-in-Release | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/integration/test-bug-633350-do-not-kill-last-char-in-Release b/test/integration/test-bug-633350-do-not-kill-last-char-in-Release new file mode 100755 index 000000000..3d3835507 --- /dev/null +++ b/test/integration/test-bug-633350-do-not-kill-last-char-in-Release @@ -0,0 +1,27 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' + +insertpackage 'unstable' 'cool' 'amd64' '1.0' + +setupaptarchive 2> /dev/null + +echo 'NotAutomatic: yes' >> aptarchive/dists/unstable/Release + +signreleasefiles +find aptarchive/dists -name 'InRelease' -delete + +rm -rf rootdir/var/lib/apt/lists rootdir/var/cache/apt + +OUTPUT="$(aptget update 2>&1)" +msgtest 'Check that parsing happens without warnings' 'with missing newline' +if echo "${OUTPUT}" | grep '^W:' > /dev/null; then + msgfail + echo "${OUTPUT}" +else + msgpass +fi |