diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-27 23:50:55 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-27 23:50:55 +0200 |
commit | ae6ea526d65eb560b825677e8aac4a3fa15934e4 (patch) | |
tree | ecbc02045dfc78aa9f09295f07918f9224edbdb5 /test/integration/test-bug-633350-do-not-kill-last-char-in-Release | |
parent | ed6ba81db1b2832089ea443cf0030ab3f15fda97 (diff) |
* apt-pkg/deb/deblistparser.cc:
- do not assume that the last char on a line is a \n (Closes: #633350)
Diffstat (limited to 'test/integration/test-bug-633350-do-not-kill-last-char-in-Release')
-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 |