1
0
Fork 0
apt/test/integration/test-srcrecord
Daniel Baumann 6810ba718b
Adding upstream version 3.0.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-20 21:10:43 +02:00

35 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