]>
Commit | Line | Data |
---|---|---|
ae6ea526 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
6 | setupenvironment | |
7 | configarchitecture 'amd64' | |
8 | ||
9 | insertpackage 'unstable' 'cool' 'amd64' '1.0' | |
10 | ||
11 | setupaptarchive 2> /dev/null | |
12 | ||
13 | echo 'NotAutomatic: yes' >> aptarchive/dists/unstable/Release | |
14 | ||
15 | signreleasefiles | |
16 | find aptarchive/dists -name 'InRelease' -delete | |
17 | ||
8de79b68 | 18 | rm -rf rootdir/var/lib/apt/lists |
ae6ea526 DK |
19 | |
20 | OUTPUT="$(aptget update 2>&1)" | |
21 | msgtest 'Check that parsing happens without warnings' 'with missing newline' | |
22 | if echo "${OUTPUT}" | grep '^W:' > /dev/null; then | |
23 | msgfail | |
24 | echo "${OUTPUT}" | |
25 | else | |
26 | msgpass | |
27 | fi |