Files
Julian Andres Klode 832f95f4d0 test/integration/test-srcrecord: Make executable
I actually tried to amend the previous commit, but apparently
I forgot to add the file mode change.

Gbp-Dch: ignore
2016-08-31 12:26:39 +02:00

36 lines
753 B
Bash
Executable File

#!/bin/sh
set -e
TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'native'
cat > aptarchive/Sources <<EOF
Package: space-before-comma
Binary: space-before-comma1 , space-before-comma2
Version: 1.0
Maintainer: Joe Sixpack <joe@example.org>
Architecture: all
Package: broken-field
Binary:, broken-field2
Version: 1.0
Maintainer: Joe Sixpack <joe@example.org>
Architecture: all
Package: broken-field-b
Binary: , broken-field-b2
Version: 1.0
Maintainer: Joe Sixpack <joe@example.org>
Architecture: all
EOF
setupaptarchive --no-update
testsuccess aptget update
testsuccess aptcache showsrc space-before-comma1
testsuccess aptcache showsrc broken-field2
testsuccess aptcache showsrc broken-field-b2