blob: fa01e0379a064399a3ba83160ff63f6f22570d2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -e
local TESTDIR=$(readlink -f $(dirname $0))
. $TESTDIR/framework
setupenvironment
configarchitecture "i386"
msgtest 'Test apt-ftparchive with encoded tar header package'
cp $TESTDIR/deb-bug-330162-encoded-tar-header.deb aptarchive/
test -z "$(aptftparchive packages aptarchive/ 2>&1 | grep 'E:')" && msgpass || msgfail
|