1
0
Fork 0
apt/test/integration/test-dpkg-protected
Daniel Baumann 1af95933dd
Adding upstream version 3.0.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-30 17:53:03 +02:00

20 lines
550 B
Bash
Executable file

#!/bin/sh
set -e
TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64'
insertinstalledpackage 'protected-package' 'native' '1' 'Protected: yes'
setupaptarchive
if dpkg --assert-protected-field 2>/dev/null; then
testsuccess aptget remove protected-package "$@" -o Debug::pkgDpkgPm=1 -y --allow-remove-essential
cp rootdir/tmp/testsuccess.output rootdir/tmp/output
testsuccess grep -- '--force-remove-protected' rootdir/tmp/output
else
msgskip "dpkg does not support protected field"
fi