0s autopkgtest: DBG: testbed init 0s autopkgtest [03:09:47]: starting date and time: 2025-02-16 03:09:47+0000 0s autopkgtest [03:09:47]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [03:09:47]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.htdk9bmv/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade selint --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-32.secgroup --name adt-plucky-s390x-selint-20250216-030947-juju-7f2275-prod-proposed-migration-environment-15-caf7f86f-5d36-402b-8ac3-b02edf998e1d --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.0L5lQB 100s autopkgtest: DBG: sending command to testbed: print-execute-command 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.376xp_x4/runcmd 100s autopkgtest: DBG: sending command to testbed: capabilities 100s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine suggested-normal-user=ubuntu revert-full-system revert root-on-testbed 100s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'revert', 'root-on-testbed', 'has_internet'] 100s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0L5lQB'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.0L5lQB/wrapper.sh 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0L5lQB/wrapper.sh'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest [03:11:27]: testbed dpkg architecture: s390x 100s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [03:11:28]: testbed apt version: 2.9.28 101s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed has eatmydata 101s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [03:11:28]: @@@@@@@@@@@@@@@@@@@@ test bed setup 101s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [03:11:28]: testbed release detected to be: None 101s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: adding APT source: Types: deb deb-src 101s URIs: http://ftpmaster.internal/ubuntu/ 101s Suites: plucky-proposed 101s Components: main restricted universe multiverse 101s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 101s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 102s Package: * 102s Pin: release plucky-proposed 102s Pin-Priority: 500 102s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [03:11:29]: updating testbed package index (apt update) 102s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 102s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 102s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 102s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 102s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 103s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 103s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 103s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 103s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 103s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 103s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 103s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 103s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 103s Fetched 2083 kB in 1s (2092 kB/s) 104s Reading package lists... 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 104s Package: * 104s Pin: release plucky-proposed 104s Pin-Priority: 100 104s 104s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 104s Pin: release plucky-proposed 104s Pin-Priority: 995 104s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.0L5lQB/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 104s + lsb_release --codename --short 104s + RELEASE=plucky 104s + cat 104s + [ plucky != trusty ] 104s Reading package lists... 104s Building dependency tree...+ DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 104s 104s Reading state information... 104s Calculating upgrade... 104s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 104s + 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 104s /usr/lib/apt/apt-helper analyze-pattern ?true 104s + uname -r 104s + sed s/\./\\./g 104s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 104s + apt list ?obsolete 104s + tail+ -n+2 104s grep -v ^linux-.*6\.12\.0-15-generic.* 104s + cut -d/ -f1 105s + obsolete_pkgs=linux-image-6.11.0-8-generic 105s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s The following packages will be REMOVED: 105s linux-image-6.11.0-8-generic* 105s 0 upgraded, 0 newly installed, 1 to remove and 6 not upgraded. 105s After this operation, 10.5 MB disk space will be freed. 105s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80973 files and directories currently installed.) 105s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 105s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-15-generic 105s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-15-generic 105s /etc/kernel/postrm.d/initramfs-tools: 105s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 105s /etc/kernel/postrm.d/zz-zipl: 105s Using config file '/etc/zipl.conf' 105s Building bootmap in '/boot' 105s Adding IPL section 'ubuntu' (default) 105s Preparing boot device for LD-IPL: vda (0000). 105s Done. 106s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 106s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 106s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 106s + grep -q trusty /etc/lsb-release 106s + [ ! -d /usr/share/doc/unattended-upgrades ] 106s + [ ! -d /usr/share/doc/lxd ] 106s + [ ! -d /usr/share/doc/lxd-client ] 106s + [ ! -d /usr/share/doc/snapd ] 106s + type iptables 106s + cat 106s + chmod 755 /etc/rc.local 106s + . /etc/rc.local 106s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 106s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 106s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 106s + uname -m 106s + [ s390x = ppc64le ] 106s + [ -d /run/systemd/system ] 106s + systemd-detect-virt --quiet --vm 106s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 106s + cat 106s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 106s + echo COMPRESS=lz4 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [03:11:33]: upgrading testbed (apt dist-upgrade and autopurge) 106s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 106s Reading package lists... 106s Building dependency tree... 106s Reading state information... 106s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 106s Starting 2 pkgProblemResolver with broken count: 0 106s Done 107s Entering ResolveByKeep 107s 107s The following packages were automatically installed and are no longer required: 107s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 107s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 107s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 107s linux-tools-6.11.0-8-generic 107s Use 'sudo apt autoremove' to remove them. 107s The following packages will be upgraded: 107s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 107s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 107s Need to get 10.7 MB of archives. 107s After this operation, 305 kB of additional disk space will be used. 107s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 107s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 108s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 110s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 110s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 110s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 111s Preconfiguring packages ... 111s Fetched 10.7 MB in 3s (3066 kB/s) 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 111s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 111s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 111s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 111s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 111s Checking for services that may need to be restarted... 111s Checking init scripts... 111s Checking for services that may need to be restarted... 111s Checking init scripts... 111s Stopping some services possibly affected by the upgrade (will be restarted later): 111s cron: stopping...done. 111s 111s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Setting up libc6:s390x (2.41-1ubuntu1) ... 111s Checking for services that may need to be restarted... 111s Checking init scripts... 111s Restarting services possibly affected by the upgrade: 111s cron: restarting...done. 111s 111s Services restarted successfully. 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80970 files and directories currently installed.) 111s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 111s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 111s Setting up libc-bin (2.41-1ubuntu1) ... 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80970 files and directories currently installed.) 111s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 112s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 112s Setting up iproute2 (6.13.0-1ubuntu1) ... 112s Setting up locales (2.41-1ubuntu1) ... 112s Installing new version of config file /etc/locale.alias ... 112s Generating locales (this might take a while)... 113s en_US.UTF-8... done 113s Generation complete. 113s Setting up libc-dev-bin (2.41-1ubuntu1) ... 113s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 113s Processing triggers for man-db (2.13.0-1) ... 114s Processing triggers for systemd (257.2-3ubuntu1) ... 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 116s The following packages will be REMOVED: 116s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 116s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 116s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 116s linux-tools-6.11.0-8-generic* 116s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 116s After this operation, 167 MB disk space will be freed. 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80971 files and directories currently installed.) 116s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 116s Removing libpython3.12t64:s390x (3.12.9-1) ... 116s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 116s Removing libnsl2:s390x (1.3.0-3build3) ... 116s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 116s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 117s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s Processing triggers for libc-bin (2.41-1ubuntu1) ... 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55871 files and directories currently installed.) 117s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 117s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.0L5lQB/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 117s autopkgtest: DBG: testbed command exited with code 1 117s autopkgtest [03:11:44]: rebooting testbed after setup commands that affected boot 117s autopkgtest: DBG: sending command to testbed: reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0L5lQB'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.0L5lQB/autopkgtest-reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0L5lQB'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.0L5lQB/autopkgtest-reboot-prepare 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [03:12:04]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 137s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0L5lQB/testbed-packages"], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/testbed-packages /tmp/autopkgtest-work.htdk9bmv/out/testbed-packages 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0L5lQB'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.0L5lQB/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0L5lQB'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.0L5lQB/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0L5lQB/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: Binaries: initialising 140s autopkgtest [03:12:07]: @@@@@@@@@@@@@@@@@@@@ apt-source selint 140s autopkgtest: DBG: blame += selint 140s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 140s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'selint'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^selint$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'selint=1.5.0-2'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: install_deps: deps_new=[] 140s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.0L5lQB/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source selint=1.5.0-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x selint_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 141s + cd / 141s + mktemp -d /tmp/autopkgtest.0L5lQB/build.XXX 141s + builddir=/tmp/autopkgtest.0L5lQB/build.FfJ 141s + cd /tmp/autopkgtest.0L5lQB/build.FfJ 141s + apt-get source -d -q --only-source selint=1.5.0-2 141s + OUT=Reading package lists... 141s NOTICE: 'selint' packaging is maintained in the 'Git' version control system at: 141s https://salsa.debian.org/selinux-team/selint.git 141s Please use: 141s git clone https://salsa.debian.org/selinux-team/selint.git 141s to retrieve the latest (possibly unreleased) updates to the package. 141s Need to get 146 kB of source archives. 141s Get:1 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (dsc) [2143 B] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (tar) [136 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (diff) [7168 B] 141s Fetched 146 kB in 0s (355 kB/s) 141s Download complete and in download only mode 141s + [ -n ] 141s + echo Reading package lists... 141s NOTICE: 'selint' packaging is maintained in the 'Git' version control system at: 141s https://salsa.debian.org/selinux-team/selint.git 141s Please use: 141s git clone https://salsa.debian.org/selinux-team/selint.git 141s to retrieve the latest (possibly unreleased) updates to the package. 141s Need to get 146 kB of source archives. 141s Get:1 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (dsc) [2143 B] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (tar) [136 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (diff) [7168 B] 141s Fetched 146 kB in 0s (355 kB/s) 141s Download complete and in download only mode 141s + grep ^Get: 141s Get:1 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (dsc) [2143 B] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (tar) [136 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/universe selint 1.5.0-2 (diff) [7168 B] 141s + dpkg-source -x selint_1.5.0-2.dsc src 141s gpgv: Signature made Sun Jul 7 08:24:22 2024 UTC 141s gpgv: using RSA key 33CB284313E90BD27DCB4523600316A6DC277476 141s gpgv: Can't check signature: No public key 141s dpkg-source: warning: cannot verify inline signature for ./selint_1.5.0-2.dsc: no acceptable signature found 141s + chmod -R a+rX . 141s + cd src/. 141s + pwd 141s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [03:12:08]: testing package selint version 1.5.0-2 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/ /tmp/autopkgtest-work.htdk9bmv/out/pkg/debian/ 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: processing dependency selinux-policy-src 142s autopkgtest: DBG: processing dependency zstd 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency selint 142s autopkgtest: DBG: Test defined: name version path debian/tests/version command "None" restrictions [] features [] depends ['selinux-policy-src', 'zstd', 'selint'] 142s autopkgtest: DBG: Test defined: name refpolicy-test path debian/tests/refpolicy-test command "None" restrictions [] features [] depends ['selinux-policy-src', 'zstd', 'selint'] 142s autopkgtest [03:12:09]: build not needed 142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/build.FfJ/src/ /tmp/autopkgtest-work.htdk9bmv/out/tests-tree/ 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: processing dependency selinux-policy-src 142s autopkgtest: DBG: processing dependency zstd 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency selint 142s autopkgtest: DBG: Test defined: name version path debian/tests/version command "None" restrictions [] features [] depends ['selinux-policy-src', 'zstd', 'selint'] 142s autopkgtest: DBG: Test defined: name refpolicy-test path debian/tests/refpolicy-test command "None" restrictions [] features [] depends ['selinux-policy-src', 'zstd', 'selint'] 142s autopkgtest [03:12:09]: test version: preparing testbed 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['selinux-policy-src', 'zstd', 'selint'] 142s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 142s autopkgtest: DBG: install_deps: deps_new=['selinux-policy-src', 'zstd', 'selint'] 142s autopkgtest: DBG: install-deps: satisfying selinux-policy-src, zstd, selint 142s autopkgtest: DBG: can use apt-get on testbed: True 142s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'selinux-policy-src, zstd, selint'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 142s Reading package lists... 143s Building dependency tree... 143s Reading state information... 143s Starting pkgProblemResolver with broken count: 0 143s Starting 2 pkgProblemResolver with broken count: 0 143s Done 143s The following NEW packages will be installed: 143s checkpolicy libauparse0t64 libconfuse-common libconfuse2 policycoreutils 143s policycoreutils-python-utils python3-audit python3-networkx python3-selinux 143s python3-semanage python3-sepolgen python3-sepolicy python3-setools selint 143s selinux-policy-src selinux-utils semodule-utils 143s 0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded. 143s Need to get 15.9 MB of archives. 143s After this operation, 89.8 MB of additional disk space will be used. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x checkpolicy s390x 3.8-1 [275 kB] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libauparse0t64 s390x 1:4.0.2-2ubuntu1 [64.0 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libconfuse-common all 3.3-3build1 [5894 B] 143s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libconfuse2 s390x 3.3-3build1 [28.1 kB] 143s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x selinux-utils s390x 3.7-3ubuntu2 [72.3 kB] 144s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x policycoreutils s390x 3.7-2 [133 kB] 144s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-audit s390x 1:4.0.2-2ubuntu1 [58.7 kB] 144s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-selinux s390x 3.7-3ubuntu2 [173 kB] 144s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-semanage s390x 3.7-2.1 [68.9 kB] 144s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 145s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-setools s390x 4.5.1-1.1 [862 kB] 145s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x semodule-utils s390x 3.7-1 [15.2 kB] 145s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sepolgen all 3.7-4 [454 kB] 145s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sepolicy all 3.7-4 [1199 kB] 145s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x policycoreutils-python-utils all 3.7-4 [47.1 kB] 145s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x selint s390x 1.5.0-2 [91.2 kB] 145s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x selinux-policy-src all 2:2.20241211-2 [832 kB] 146s Fetched 15.9 MB in 3s (6130 kB/s) 146s Selecting previously unselected package checkpolicy. 146s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 146s Preparing to unpack .../00-checkpolicy_3.8-1_s390x.deb ... 146s Unpacking checkpolicy (3.8-1) ... 146s Selecting previously unselected package libauparse0t64:s390x. 146s Preparing to unpack .../01-libauparse0t64_1%3a4.0.2-2ubuntu1_s390x.deb ... 146s Adding 'diversion of /lib/s390x-linux-gnu/libauparse.so.0 to /lib/s390x-linux-gnu/libauparse.so.0.usr-is-merged by libauparse0t64' 146s Adding 'diversion of /lib/s390x-linux-gnu/libauparse.so.0.0.0 to /lib/s390x-linux-gnu/libauparse.so.0.0.0.usr-is-merged by libauparse0t64' 146s Unpacking libauparse0t64:s390x (1:4.0.2-2ubuntu1) ... 146s Selecting previously unselected package libconfuse-common. 146s Preparing to unpack .../02-libconfuse-common_3.3-3build1_all.deb ... 146s Unpacking libconfuse-common (3.3-3build1) ... 146s Selecting previously unselected package libconfuse2:s390x. 146s Preparing to unpack .../03-libconfuse2_3.3-3build1_s390x.deb ... 146s Unpacking libconfuse2:s390x (3.3-3build1) ... 146s Selecting previously unselected package selinux-utils. 146s Preparing to unpack .../04-selinux-utils_3.7-3ubuntu2_s390x.deb ... 146s Unpacking selinux-utils (3.7-3ubuntu2) ... 146s Selecting previously unselected package policycoreutils. 146s Preparing to unpack .../05-policycoreutils_3.7-2_s390x.deb ... 146s Unpacking policycoreutils (3.7-2) ... 146s Selecting previously unselected package python3-audit. 146s Preparing to unpack .../06-python3-audit_1%3a4.0.2-2ubuntu1_s390x.deb ... 146s Unpacking python3-audit (1:4.0.2-2ubuntu1) ... 146s Selecting previously unselected package python3-selinux. 146s Preparing to unpack .../07-python3-selinux_3.7-3ubuntu2_s390x.deb ... 146s Unpacking python3-selinux (3.7-3ubuntu2) ... 146s Selecting previously unselected package python3-semanage. 146s Preparing to unpack .../08-python3-semanage_3.7-2.1_s390x.deb ... 146s Unpacking python3-semanage (3.7-2.1) ... 146s Selecting previously unselected package python3-networkx. 146s Preparing to unpack .../09-python3-networkx_3.2.1-4ubuntu1_all.deb ... 146s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 146s Selecting previously unselected package python3-setools. 146s Preparing to unpack .../10-python3-setools_4.5.1-1.1_s390x.deb ... 146s Unpacking python3-setools (4.5.1-1.1) ... 146s Selecting previously unselected package semodule-utils. 146s Preparing to unpack .../11-semodule-utils_3.7-1_s390x.deb ... 146s Unpacking semodule-utils (3.7-1) ... 146s Selecting previously unselected package python3-sepolgen. 146s Preparing to unpack .../12-python3-sepolgen_3.7-4_all.deb ... 146s Unpacking python3-sepolgen (3.7-4) ... 147s Selecting previously unselected package python3-sepolicy. 147s Preparing to unpack .../13-python3-sepolicy_3.7-4_all.deb ... 147s Unpacking python3-sepolicy (3.7-4) ... 147s Selecting previously unselected package policycoreutils-python-utils. 147s Preparing to unpack .../14-policycoreutils-python-utils_3.7-4_all.deb ... 147s Unpacking policycoreutils-python-utils (3.7-4) ... 147s Selecting previously unselected package selint. 147s Preparing to unpack .../15-selint_1.5.0-2_s390x.deb ... 147s Unpacking selint (1.5.0-2) ... 147s Selecting previously unselected package selinux-policy-src. 147s Preparing to unpack .../16-selinux-policy-src_2%3a2.20241211-2_all.deb ... 147s Unpacking selinux-policy-src (2:2.20241211-2) ... 147s Setting up selinux-utils (3.7-3ubuntu2) ... 147s Setting up semodule-utils (3.7-1) ... 147s Setting up python3-semanage (3.7-2.1) ... 147s Setting up policycoreutils (3.7-2) ... 147s Setting up python3-networkx (3.2.1-4ubuntu1) ... 148s Setting up checkpolicy (3.8-1) ... 148s Setting up libconfuse-common (3.3-3build1) ... 148s Setting up libauparse0t64:s390x (1:4.0.2-2ubuntu1) ... 148s Setting up python3-selinux (3.7-3ubuntu2) ... 148s Setting up libconfuse2:s390x (3.3-3build1) ... 148s Setting up python3-setools (4.5.1-1.1) ... 148s Setting up python3-audit (1:4.0.2-2ubuntu1) ... 148s Setting up selint (1.5.0-2) ... 148s Setting up python3-sepolgen (3.7-4) ... 148s Setting up python3-sepolicy (3.7-4) ... 148s Setting up policycoreutils-python-utils (3.7-4) ... 148s Setting up selinux-policy-src (2:2.20241211-2) ... 148s Processing triggers for man-db (2.13.0-1) ... 149s Processing triggers for libc-bin (2.41-1ubuntu1) ... 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'selint'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0L5lQB/version-packages.all"], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/version-packages.all /tmp/autopkgtest-work.htdk9bmv/out/version-packages.all 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.0L5lQB/build.FfJ/src'], kind short, sout raw, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.0L5lQB/build.FfJ/src already exists 150s autopkgtest [03:12:17]: test version: [----------------------- 150s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.0L5lQB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.0L5lQB/version-artifacts --chdir=/tmp/autopkgtest.0L5lQB/build.FfJ/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.0L5lQB/version-stderr --stdout=/tmp/autopkgtest.0L5lQB/version-stdout --tmp=/tmp/autopkgtest.0L5lQB/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/version -- /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/version"], kind test, sout raw, serr raw, env [] 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.0L5lQB/version-artifacts 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: changing to directory: /tmp/autopkgtest.0L5lQB/build.FfJ/src 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: LANG=C.UTF-8 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LANGUAGE 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_ADDRESS 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_ALL 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_COLLATE 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_CTYPE 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_MEASUREMENT 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_MESSAGES 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_MONETARY 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_NAME 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_NUMERIC 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_PAPER 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_TELEPHONE 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_TIME 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: pretending to be a login shell 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: will write standard error to /tmp/autopkgtest.0L5lQB/version-stderr 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: will write stdout to /tmp/autopkgtest.0L5lQB/version-stdout 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.0L5lQB/autopkgtest_tmp 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: marking as executable: /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/version 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: command to run: /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/version 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: copying /tmp/tmp.AhM1CaAQst/out to stdout and file: /tmp/autopkgtest.0L5lQB/version-stdout 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: copying /tmp/tmp.AhM1CaAQst/err to standard error and file: /tmp/autopkgtest.0L5lQB/version-stdout 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: writing script pid 1586 to /tmp/autopkgtest_script_pid 150s + selint --version 150s SELint 1.5.0 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: checking for leaked background processes... 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: waiting for tee/cat subprocesses... 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: cleaning up... 150s /tmp/autopkgtest.0L5lQB/wrapper.sh: Exit status: 0 150s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest [03:12:18]: test version: -----------------------] 151s autopkgtest: DBG: testbed executing test finished with exit status 0 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/version-stdout /tmp/autopkgtest-work.htdk9bmv/out/version-stdout 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/version-stderr /tmp/autopkgtest-work.htdk9bmv/out/version-stderr 151s autopkgtest: DBG: got reply from testbed: ok 151s version PASS 151s autopkgtest [03:12:18]: test version: - - - - - - - - - - results - - - - - - - - - - 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/version-artifacts/ /tmp/autopkgtest-work.htdk9bmv/out/artifacts/ 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.0L5lQB/version-artifacts', '/tmp/autopkgtest.0L5lQB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest [03:12:18]: test refpolicy-test: preparing testbed 151s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['selinux-policy-src', 'zstd', 'selint'], deps_new=['selinux-policy-src', 'zstd', 'selint'] 151s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 151s autopkgtest: DBG: install_deps: deps_new=['selinux-policy-src', 'zstd', 'selint'] 151s autopkgtest: DBG: install-deps: satisfying selinux-policy-src, zstd, selint 151s autopkgtest: DBG: can use apt-get on testbed: True 151s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'selinux-policy-src, zstd, selint'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 152s Reading package lists... 152s Building dependency tree... 152s Reading state information... 152s Starting pkgProblemResolver with broken count: 0 152s Starting 2 pkgProblemResolver with broken count: 0 152s Done 152s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'selint'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0L5lQB/refpolicy-test-packages.all"], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/refpolicy-test-packages.all /tmp/autopkgtest-work.htdk9bmv/out/refpolicy-test-packages.all 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.0L5lQB/build.FfJ/src'], kind short, sout raw, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.0L5lQB/build.FfJ/src already exists 153s autopkgtest [03:12:20]: test refpolicy-test: [----------------------- 153s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.0L5lQB/wrapper.sh --debug --artifacts=/tmp/autopkgtest.0L5lQB/refpolicy-test-artifacts --chdir=/tmp/autopkgtest.0L5lQB/build.FfJ/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.0L5lQB/refpolicy-test-stderr --stdout=/tmp/autopkgtest.0L5lQB/refpolicy-test-stdout --tmp=/tmp/autopkgtest.0L5lQB/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/refpolicy-test -- /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/refpolicy-test"], kind test, sout raw, serr raw, env [] 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.0L5lQB/refpolicy-test-artifacts 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: changing to directory: /tmp/autopkgtest.0L5lQB/build.FfJ/src 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: LANG=C.UTF-8 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LANGUAGE 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_ADDRESS 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_ALL 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_COLLATE 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_CTYPE 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_IDENTIFICATION 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_MEASUREMENT 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_MESSAGES 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_MONETARY 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_NAME 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_NUMERIC 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_PAPER 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_TELEPHONE 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: unsetting environment: LC_TIME 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: pretending to be a login shell 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: will write standard error to /tmp/autopkgtest.0L5lQB/refpolicy-test-stderr 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: will write stdout to /tmp/autopkgtest.0L5lQB/refpolicy-test-stdout 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.0L5lQB/autopkgtest_tmp 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: marking as executable: /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/refpolicy-test 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: command to run: /tmp/autopkgtest.0L5lQB/build.FfJ/src/debian/tests/refpolicy-test 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: copying /tmp/tmp.X2F3gTHp1I/out to stdout and file: /tmp/autopkgtest.0L5lQB/refpolicy-test-stdout 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: copying /tmp/tmp.X2F3gTHp1I/err to standard error and file: /tmp/autopkgtest.0L5lQB/refpolicy-test-stdout 153s /tmp/autopkgtest.0L5lQB/wrapper.sh: writing script pid 1731 to /tmp/autopkgtest_script_pid 153s + tar xf /usr/src/selinux-policy-src.tar.* 153s + selint -r -s --summary-only selinux-policy-src/ 153s Warning: multiple module.conf files found (using selinux-policy-src/modules.conf, ignoring selinux-policy-src/policy/modules.conf) 153s Warning: Failed to load modules from selinux-policy-src/modules.conf: 9 153s Found the following issue counts: 153s C-005: 53 153s C-008: 19 153s S-009: 6 153s S-010: 6 153s W-001: 7 153s W-002: 11 153s W-003: 2 153s W-004: 3 153s W-011: 3 153s + selint -r -s -S -l E -F selinux-policy-src/ 154s Warning: multiple module.conf files found (using selinux-policy-src/modules.conf, ignoring selinux-policy-src/policy/modules.conf) 154s Warning: Failed to load modules from selinux-policy-src/modules.conf: 9 154s Found the following issue counts: 154s (none) 154s /tmp/autopkgtest.0L5lQB/wrapper.sh: checking for leaked background processes... 154s /tmp/autopkgtest.0L5lQB/wrapper.sh: waiting for tee/cat subprocesses... 154s /tmp/autopkgtest.0L5lQB/wrapper.sh: cleaning up... 154s /tmp/autopkgtest.0L5lQB/wrapper.sh: Exit status: 0 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [03:12:21]: test refpolicy-test: -----------------------] 154s autopkgtest: DBG: testbed executing test finished with exit status 0 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/refpolicy-test-stdout /tmp/autopkgtest-work.htdk9bmv/out/refpolicy-test-stdout 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/refpolicy-test-stderr /tmp/autopkgtest-work.htdk9bmv/out/refpolicy-test-stderr 154s autopkgtest: DBG: got reply from testbed: ok 154s refpolicy-test PASS 154s autopkgtest [03:12:21]: test refpolicy-test: - - - - - - - - - - results - - - - - - - - - - 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0L5lQB/refpolicy-test-artifacts/ /tmp/autopkgtest-work.htdk9bmv/out/artifacts/ 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.0L5lQB/refpolicy-test-artifacts', '/tmp/autopkgtest.0L5lQB/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 155s autopkgtest [03:12:22]: @@@@@@@@@@@@@@@@@@@@ summary 155s version PASS 155s refpolicy-test PASS 155s autopkgtest: DBG: testbed stop 155s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.0L5lQB 155s autopkgtest: DBG: sending command to testbed: close 172s autopkgtest: DBG: got reply from testbed: ok 172s autopkgtest: DBG: sending command to testbed: quit 172s nova [W] Using flock in prodstack6-s390x 172s Creating nova instance adt-plucky-s390x-selint-20250216-030947-juju-7f2275-prod-proposed-migration-environment-15-caf7f86f-5d36-402b-8ac3-b02edf998e1d from image adt/ubuntu-plucky-s390x-server-20250216.img (UUID 67327349-c50d-4fb2-aab8-abef6582e685)... 172s nova [W] Timed out waiting for 5c9a88c7-6259-4e6a-8ebd-f6d346bc4880 to get deleted.