test: install binaries from local d/control file

The source package in the apt cache might be older than the
packaging from salsa.debian.org/systemd-team/systemd so it might not
list all the current binary packages.
This is currently the case for systemd-timesyncd, so TEST-30 fails.

Simply grep the control file rather than using apt-cache when iterating
over the packages contents.
This commit is contained in:
Luca Boccassi 2021-02-14 19:29:42 +00:00 committed by Zbigniew Jędrzejewski-Szmek
parent 92ef9e568b
commit 7eba0c50f5

View file

@ -750,7 +750,7 @@ install_compiled_systemd() {
install_debian_systemd() {
ddebug "Install debian systemd"
local _systemd_pkgs=$(apt-cache showsrc systemd | grep -m 1 -E '^Binary:' | cut -d ':' -f 2 | tr -d ,)
local _systemd_pkgs=$(grep -E '^Package:' ${SOURCE_DIR}/debian/control | cut -d ':' -f 2)
local _files=""
for deb in $_systemd_pkgs; do
_files=$(dpkg-query -L $deb 2>/dev/null) || continue