mirror of
https://github.com/ukui/apt.git
synced 2026-06-16 19:16:16 -07:00
832f95f4d0
I actually tried to amend the previous commit, but apparently I forgot to add the file mode change. Gbp-Dch: ignore
36 lines
753 B
Bash
Executable File
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
|