0s autopkgtest: DBG: testbed init 0s autopkgtest [03:40:30]: starting date and time: 2025-02-16 03:40:30+0000 0s autopkgtest [03:40:30]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [03:40:30]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.z_6a2szc/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 weborf --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-13.secgroup --name adt-plucky-s390x-weborf-20250216-034030-juju-7f2275-prod-proposed-migration-environment-15-93487768-a047-4565-860e-51d5f74057fd --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 116s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.xs0yoS 116s autopkgtest: DBG: sending command to testbed: print-execute-command 116s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.o6jorpy7/runcmd 116s autopkgtest: DBG: sending command to testbed: capabilities 116s autopkgtest: DBG: got reply from testbed: ok isolation-machine suggested-normal-user=ubuntu revert revert-full-system reboot root-on-testbed 116s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'suggested-normal-user=ubuntu', 'revert', 'revert-full-system', 'reboot', 'root-on-testbed', 'has_internet'] 116s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xs0yoS'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.xs0yoS/wrapper.sh 116s autopkgtest: DBG: got reply from testbed: ok 116s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xs0yoS/wrapper.sh'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [03:42:27]: testbed dpkg architecture: s390x 117s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [03:42:27]: testbed apt version: 2.9.28 117s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed has eatmydata 117s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [03:42:27]: @@@@@@@@@@@@@@@@@@@@ test bed setup 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [03:42:27]: testbed release detected to be: None 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT source: Types: deb deb-src 118s URIs: http://ftpmaster.internal/ubuntu/ 118s Suites: plucky-proposed 118s Components: main restricted universe multiverse 118s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 118s Package: * 118s Pin: release plucky-proposed 118s Pin-Priority: 500 118s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [03:42:28]: updating testbed package index (apt update) 118s 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'] 118s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 118s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 119s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 119s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 119s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 119s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 119s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 119s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [810 kB] 119s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 119s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 119s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [855 kB] 119s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 119s Fetched 2035 kB in 1s (2062 kB/s) 120s Reading package lists... 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 120s Package: * 120s Pin: release plucky-proposed 120s Pin-Priority: 100 120s 120s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 120s Pin: release plucky-proposed 120s Pin-Priority: 995 120s 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 [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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.xs0yoS/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 120s autopkgtest: DBG: testbed command exited with code 0 120s 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'] 120s + lsb_release --codename --short 120s + RELEASE=plucky 120s + cat 120s + [ plucky != trusty ] 120s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 120s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s Calculating upgrade... 121s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 121s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 121s + /usr/lib/apt/apt-helper analyze-pattern ?true 121s + uname -r 121s + sed s/\./\\./g 121s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 121s + apt list ?obsolete 121s + + cut -d/ -f1 121s tail -n+2 121s + grep -v ^linux-.*6\.12\.0-15-generic.* 121s + obsolete_pkgs=linux-image-6.11.0-8-generic 121s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 123s The following packages will be REMOVED: 123s + grep -q trusty /etc/lsb-release 123s + [ ! -d /usr/share/doc/unattended-upgrades ] 123s + [ ! -d /usr/share/doc/lxd ] 123s + [ ! -d /usr/share/doc/lxd-client ] 123s + [ ! -d /usr/share/doc/snapd ] 123s + type iptables 123s + cat 123s + chmod 755 /etc/rc.local 123s + . /etc/rc.local 123s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 123s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 123s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 123s + uname -m 123s + [ s390x = ppc64le ] 123s + [ -d /run/systemd/system ] 123s + systemd-detect-virt --quiet --vm 123s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 123s + cat 123s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 123s + echo COMPRESS=lz4 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [03:42:32]: upgrading testbed (apt dist-upgrade and autopurge) 123s 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'] 123s linux-image-6.11.0-8-generic* 123s 0 upgraded, 0 newly installed, 1 to remove and 6 not upgraded. 123s After this operation, 10.5 MB disk space will be freed. 123s (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.) 123s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 123s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-15-generic 123s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-15-generic 123s /etc/kernel/postrm.d/initramfs-tools: 123s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 123s /etc/kernel/postrm.d/zz-zipl: 123s Using config file '/etc/zipl.conf' 123s Building bootmap in '/boot' 123s Adding IPL section 'ubuntu' (default) 123s Preparing boot device for LD-IPL: vda (0000). 123s Done. 123s (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.) 123s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 123s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 123s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s Entering ResolveByKeep 123s 123s The following packages were automatically installed and are no longer required: 123s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 123s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 123s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 123s linux-tools-6.11.0-8-generic 123s Use 'sudo apt autoremove' to remove them. 123s The following packages will be upgraded: 123s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 123s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s Need to get 10.7 MB of archives. 123s After this operation, 305 kB of additional disk space will be used. 123s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 123s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 124s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 124s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 124s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 124s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 124s Preconfiguring packages ... 124s Fetched 10.7 MB in 1s (10.2 MB/s) 124s (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.) 124s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 125s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 125s Checking for services that may need to be restarted... 125s Checking init scripts... 125s Checking for services that may need to be restarted... 125s Checking init scripts... 125s Stopping some services possibly affected by the upgrade (will be restarted later): 125s cron: stopping...done. 125s 125s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Setting up libc6:s390x (2.41-1ubuntu1) ... 125s Checking for services that may need to be restarted... 125s Checking init scripts... 125s Restarting services possibly affected by the upgrade: 125s cron: restarting...done. 125s 125s Services restarted successfully. 125s (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.) 125s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 125s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 125s Setting up libc-bin (2.41-1ubuntu1) ... 125s (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.) 125s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 125s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 125s Setting up iproute2 (6.13.0-1ubuntu1) ... 125s Setting up locales (2.41-1ubuntu1) ... 125s Installing new version of config file /etc/locale.alias ... 126s Generating locales (this might take a while)... 127s en_US.UTF-8... done 127s Generation complete. 127s Setting up libc-dev-bin (2.41-1ubuntu1) ... 127s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 127s Processing triggers for man-db (2.13.0-1) ... 128s Processing triggers for systemd (257.2-3ubuntu1) ... 128s autopkgtest: DBG: testbed command exited with code 0 128s 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'] 129s Reading package lists... 129s Building dependency tree... 129s Reading state information... 129s Starting pkgProblemResolver with broken count: 0 129s Starting 2 pkgProblemResolver with broken count: 0 129s Done 129s The following packages will be REMOVED: 129s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 129s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 129s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 129s linux-tools-6.11.0-8-generic* 129s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 129s After this operation, 167 MB disk space will be freed. 129s (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.) 129s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 129s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 129s Removing libpython3.12t64:s390x (3.12.9-1) ... 129s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 129s Removing libnsl2:s390x (1.3.0-3build3) ... 129s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 129s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 130s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 130s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 130s Processing triggers for libc-bin (2.41-1ubuntu1) ... 130s (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.) 130s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 130s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 131s autopkgtest: DBG: testbed command exited with code 0 131s 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.xs0yoS/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 131s autopkgtest: DBG: testbed command exited with code 1 131s autopkgtest [03:42:41]: rebooting testbed after setup commands that affected boot 131s autopkgtest: DBG: sending command to testbed: reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xs0yoS'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.xs0yoS/autopkgtest-reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xs0yoS'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.xs0yoS/autopkgtest-reboot-prepare 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest [03:43:00]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 150s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], 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.xs0yoS/testbed-packages"], 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.xs0yoS/testbed-packages /tmp/autopkgtest-work.z_6a2szc/out/testbed-packages 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xs0yoS'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.xs0yoS/autopkgtest-reboot 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.xs0yoS'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.xs0yoS/autopkgtest-reboot-prepare 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.xs0yoS/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: Binaries: initialising 152s autopkgtest [03:43:02]: @@@@@@@@@@@@@@@@@@@@ apt-source weborf 152s autopkgtest: DBG: blame += weborf 152s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 152s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'weborf'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^qweborf$'], kind short, sout pipe, serr raw, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'qweborf=1.4-1'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^weborf$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'weborf=1.4-1'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^weborf-daemon$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'weborf-daemon=1.4-1'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: install_deps: deps_new=[] 153s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s 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.xs0yoS/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source weborf=1.4-1 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 weborf_*.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'] 154s + cd / 154s + mktemp -d /tmp/autopkgtest.xs0yoS/build.XXX 154s + builddir=/tmp/autopkgtest.xs0yoS/build.AQS 154s + cd /tmp/autopkgtest.xs0yoS/build.AQS 154s + apt-get source -d -q --only-source weborf=1.4-1 154s + OUT=Reading package lists... 154s NOTICE: 'weborf' packaging is maintained in the 'Git' version control system at: 154s https://codeberg.org/ltworf/weborf.git 154s Please use: 154s git clone https://codeberg.org/ltworf/weborf.git 154s to retrieve the latest (possibly unreleased) updates to the package. 154s Need to get 264 kB of source archives. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (dsc) [2292 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (tar) [245 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (asc) [833 B] 154s Get:4 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (diff) [15.9 kB] 154s Fetched 264 kB in 1s (493 kB/s) 154s Download complete and in download only mode 154s + [ -n ] 154s + grep ^Get: 154s + echo Reading package lists... 154s NOTICE: 'weborf' packaging is maintained in the 'Git' version control system at: 154s https://codeberg.org/ltworf/weborf.git 154s Please use: 154s git clone https://codeberg.org/ltworf/weborf.git 154s to retrieve the latest (possibly unreleased) updates to the package. 154s Need to get 264 kB of source archives. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (dsc) [2292 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (tar) [245 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (asc) [833 B] 154s Get:4 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (diff) [15.9 kB] 154s Fetched 264 kB in 1s (493 kB/s) 154s Download complete and in download only mode 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (dsc) [2292 B] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (tar) [245 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (asc) [833 B] 154s Get:4 http://ftpmaster.internal/ubuntu plucky/universe weborf 1.4-1 (diff) [15.9 kB] 154s + dpkg-source -x weborf_1.4-1.dsc src 154s gpgv: Signature made Sun Jul 21 21:02:16 2024 UTC 154s gpgv: using RSA key 42748B9E76D899799E1FBE14B3A7CF0C801886CF 154s gpgv: Can't check signature: No public key 154s dpkg-source: warning: cannot verify inline signature for ./weborf_1.4-1.dsc: no acceptable signature found 154s + chmod -R a+rX . 154s + cd src/. 154s + pwd 154s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [03:43:04]: testing package weborf version 1.4-1 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/build.AQS/src/debian/ /tmp/autopkgtest-work.z_6a2szc/out/pkg/debian/ 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command1 path None command "testsuite/version_and_help" restrictions ['allow-stderr', 'superficial'] features [] depends ['weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command2 path None command "testsuite/site1http" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command3 path None command "testsuite/site1https" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command4 path None command "testsuite/ip_listener" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command5 path None command "testsuite/vhost" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command6 path None command "testsuite/etag" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command7 path None command "testsuite/index_file" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command8 path None command "testsuite/range" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command9 path None command "testsuite/cgi" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command10 path None command "testsuite/cachedir" restrictions ['allow-stderr', 'rw-build-tree'] features [] depends ['curl', 'weborf'] 155s autopkgtest: DBG: processing dependency curl 155s autopkgtest: DBG: processing dependency weborf 155s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 155s autopkgtest: DBG: Test defined: name command11 path None command "testsuite/site1mimetype" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 155s autopkgtest [03:43:05]: build not needed 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/build.AQS/src/ /tmp/autopkgtest-work.z_6a2szc/out/tests-tree/ 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command1 path None command "testsuite/version_and_help" restrictions ['allow-stderr', 'superficial'] features [] depends ['weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command2 path None command "testsuite/site1http" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command3 path None command "testsuite/site1https" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command4 path None command "testsuite/ip_listener" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command5 path None command "testsuite/vhost" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command6 path None command "testsuite/etag" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command7 path None command "testsuite/index_file" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command8 path None command "testsuite/range" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command9 path None command "testsuite/cgi" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command10 path None command "testsuite/cachedir" restrictions ['allow-stderr', 'rw-build-tree'] features [] depends ['curl', 'weborf'] 156s autopkgtest: DBG: processing dependency curl 156s autopkgtest: DBG: processing dependency weborf 156s autopkgtest: DBG: marked alternatives ['weborf'] as a synthesised dependency 156s autopkgtest: DBG: Test defined: name command11 path None command "testsuite/site1mimetype" restrictions ['allow-stderr'] features [] depends ['curl', 'weborf'] 156s autopkgtest [03:43:06]: test command1: preparing testbed 156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['weborf'] 156s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 156s autopkgtest: DBG: install_deps: deps_new=['weborf'] 156s autopkgtest: DBG: install-deps: satisfying weborf 156s autopkgtest: DBG: can use apt-get on testbed: True 156s 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', 'weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 156s Reading package lists... 157s Building dependency tree... 157s Reading state information... 157s Starting pkgProblemResolver with broken count: 0 157s Starting 2 pkgProblemResolver with broken count: 0 157s Done 157s The following NEW packages will be installed: 157s weborf 157s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 157s Need to get 32.8 kB of archives. 157s After this operation, 99.3 kB of additional disk space will be used. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x weborf s390x 1.4-1 [32.8 kB] 157s Fetched 32.8 kB in 0s (159 kB/s) 157s Selecting previously unselected package weborf. 158s (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.) 158s Preparing to unpack .../weborf_1.4-1_s390x.deb ... 158s Unpacking weborf (1.4-1) ... 158s Setting up weborf (1.4-1) ... 158s Processing triggers for man-db (2.13.0-1) ... 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command1-packages.all"], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command1-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command1-packages.all 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 159s autopkgtest [03:43:09]: test command1: testsuite/version_and_help 159s autopkgtest [03:43:09]: test command1: [----------------------- 159s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command1-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command1-stderr --stdout=/tmp/autopkgtest.xs0yoS/command1-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/version_and_help"], kind test, sout raw, serr raw, env [] 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command1-artifacts 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command1-stderr 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command1-stdout 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 159s /tmp/autopkgtest.xs0yoS/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 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/version_and_help 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.ts9deJOlBE/out to stdout and file: /tmp/autopkgtest.xs0yoS/command1-stdout 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.ts9deJOlBE/err to standard error and file: /tmp/autopkgtest.xs0yoS/command1-stdout 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 1367 to /tmp/autopkgtest_script_pid 159s +++ dirname testsuite/version_and_help 159s ++ cd testsuite 159s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 159s ++ BINNAME=weborf 159s ++ trap cleanup EXIT 159s + weborf --help 159s Usage: weborf [OPTIONS] 159s Start the weborf webserver 159s 159s Compiled for IPv6 159s Has webdav support 159s Has MIME support 159s Default port is 8080 159s Default base directory /srv/www 159s Signature used weborf/1.4 (GNU/Linux) 159s 159s -a, --auth followed by absolute path of the program to handle authentication 159s -b, --basedir followed by absolute path of basedir 159s -C, --cache sets the directory to use for cache files 159s -c, --cgi list of cgi files and binary to execute them comma-separated 159s -d run as a daemon 159s -h, --help display this help and exit 159s -I, --index list of index files, comma-separated 159s -i, --ip followed by IP address to listen (dotted format) 159s -k, --caps lists the capabilities of the binary 159s -m, --mime sends content type header to clients 159s -p, --port followed by port number to listen 159s -T --inetd must be specified when using weborf with inetd or xinetd 159s -t --tar will send the directories as .tar.gz files 159s -u --uid followed by a valid uid 159s If started by root weborf will use this user to read files and execute scripts 159s -g --gid followed by a valid gid 159s -V, --virtual list of virtualhosts in the form host=basedir, comma-separated 159s -v, --version print program version 159s -S, --cert the certificate to use 159s -K, --key the private key to use with the certificate 159s -Y, --yesexec enables CGI 159s 159s Report bugs here https://bugs.launchpad.net/weborf 159s or to tiposchi@tiscali.it 159s + weborf --version 159s Weborf 1.4 159s Copyright (C) 2007-2020 Salvo 'LtWorf' Tomaselli. 159s This is free software. You may redistribute copies of it under the terms of 159s the GNU General Public License . 159s There is NO WARRANTY, to the extent permitted by law. 159s 159s Written by Salvo 'LtWorf' Tomaselli and Salvo Rinaldi. 159s Synchronized queue by Prof. Giuseppe Pappalardo. 159s 159s https://ltworf.codeberg.page/weborf/ 159s + weborf -k 159s version:1.4 159s ipv:6 159s webdav:yes 159s mime:yes 159s embedded_auth:no 159s https:yes 159s + cleanup 159s + [[ -n '' ]] 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 159s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [03:43:09]: test command1: -----------------------] 159s autopkgtest: DBG: testbed executing test finished with exit status 0 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command1-stdout /tmp/autopkgtest-work.z_6a2szc/out/command1-stdout 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command1-stderr /tmp/autopkgtest-work.z_6a2szc/out/command1-stderr 160s autopkgtest: DBG: got reply from testbed: ok 160s command1 PASS (superficial) 160s autopkgtest [03:43:10]: test command1: - - - - - - - - - - results - - - - - - - - - - 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command1-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command1-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest [03:43:10]: test command2: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['weborf'], deps_new=['curl', 'weborf'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 160s autopkgtest: DBG: install-deps: satisfying curl, weborf 160s autopkgtest: DBG: can use apt-get on testbed: True 160s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 160s Building dependency tree... 160s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command2-packages.all"], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command2-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command2-packages.all 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 162s autopkgtest [03:43:12]: test command2: testsuite/site1http 162s autopkgtest [03:43:12]: test command2: [----------------------- 162s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command2-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command2-stderr --stdout=/tmp/autopkgtest.xs0yoS/command2-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/site1http"], kind test, sout raw, serr raw, env [] 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command2-artifacts 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command2-stderr 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command2-stdout 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 162s /tmp/autopkgtest.xs0yoS/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 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/site1http 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.mn2uDosxqE/out to stdout and file: /tmp/autopkgtest.xs0yoS/command2-stdout 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.mn2uDosxqE/err to standard error and file: /tmp/autopkgtest.xs0yoS/command2-stdout 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 1514 to /tmp/autopkgtest_script_pid 162s +++ dirname testsuite/site1http 162s ++ cd testsuite 162s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 162s ++ BINNAME=weborf 162s ++ trap cleanup EXIT 162s + run_weborf -b site1 -p 12345 162s + weborf -b site1 -p 12345 162s ++ jobs -p 162s + WEBORF_PID=1534 162s + sleep 0.2 162s ++ ls /proc/1534/fd/ 162s ++ wc -l 162s + [[ 5 -lt 4 ]] 162s ++ curl -s http://127.0.0.1:12345/robots.txt 162s + ROBOTS='User-agent: * 162s Disallow: /' 162s ++ cat site1/robots.txt 162s + [[ User-agent: * 162s Disallow: / = User-agent: * 162s Disallow: / ]] 162s ++ curl -s http://127.0.0.1:12345/empty 162s + ROBOTS= 162s + [[ '' = '' ]] 162s + grep 'import os' 162s + curl -s http://127.0.0.1:12345/cgi.py 162s import os 162s + cleanup 162s + [[ -n 1534 ]] 162s + kill -9 1534 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 162s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [03:43:12]: test command2: -----------------------] 162s autopkgtest: DBG: testbed executing test finished with exit status 0 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command2-stdout /tmp/autopkgtest-work.z_6a2szc/out/command2-stdout 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command2-stderr /tmp/autopkgtest-work.z_6a2szc/out/command2-stderr 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest [03:43:13]: test command2: - - - - - - - - - - results - - - - - - - - - - 163s command2 PASS 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command2-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command2-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [03:43:13]: test command3: preparing testbed 163s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 163s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 163s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 163s autopkgtest: DBG: install-deps: satisfying curl, weborf 163s autopkgtest: DBG: can use apt-get on testbed: True 163s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 163s Reading package lists... 163s Building dependency tree... 163s Reading state information... 164s Starting pkgProblemResolver with broken count: 0 164s Starting 2 pkgProblemResolver with broken count: 0 164s Done 164s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command3-packages.all"], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command3-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command3-packages.all 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 164s autopkgtest [03:43:14]: test command3: testsuite/site1https 164s autopkgtest [03:43:14]: test command3: [----------------------- 164s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command3-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command3-stderr --stdout=/tmp/autopkgtest.xs0yoS/command3-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/site1https"], kind test, sout raw, serr raw, env [] 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command3-artifacts 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command3-stderr 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command3-stdout 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 165s /tmp/autopkgtest.xs0yoS/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 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/site1https 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.2I36sNxZs0/out to stdout and file: /tmp/autopkgtest.xs0yoS/command3-stdout 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.2I36sNxZs0/err to standard error and file: /tmp/autopkgtest.xs0yoS/command3-stdout 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 1675 to /tmp/autopkgtest_script_pid 165s +++ dirname testsuite/site1https 165s ++ cd testsuite 165s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 165s ++ BINNAME=weborf 165s ++ trap cleanup EXIT 165s + run_weborf -b site1 -p 12346 --cert cert/certificate.pem --key cert/key.pem 165s + weborf -b site1 -p 12346 --cert cert/certificate.pem --key cert/key.pem 165s ++ jobs -p 165s + WEBORF_PID=1695 165s + sleep 0.2 165s ++ ls /proc/1695/fd/ 165s ++ wc -l 165s + [[ 5 -lt 4 ]] 165s ++ curl -s -k https://127.0.0.1:12346/robots.txt 165s + ROBOTS='User-agent: * 165s Disallow: /' 165s ++ cat site1/robots.txt 165s + [[ User-agent: * 165s Disallow: / = User-agent: * 165s Disallow: / ]] 165s + cleanup 165s + [[ -n 1695 ]] 165s + kill -9 1695 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 165s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest [03:43:15]: test command3: -----------------------] 165s autopkgtest: DBG: testbed executing test finished with exit status 0 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command3-stdout /tmp/autopkgtest-work.z_6a2szc/out/command3-stdout 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command3-stderr /tmp/autopkgtest-work.z_6a2szc/out/command3-stderr 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest [03:43:16]: test command3: - - - - - - - - - - results - - - - - - - - - - 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command3-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 166s command3 PASS 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command3-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [03:43:16]: test command4: preparing testbed 166s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 166s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 166s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 166s autopkgtest: DBG: install-deps: satisfying curl, weborf 166s autopkgtest: DBG: can use apt-get on testbed: True 166s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 166s Reading package lists... 166s Building dependency tree... 166s Reading state information... 166s Starting pkgProblemResolver with broken count: 0 166s Starting 2 pkgProblemResolver with broken count: 0 166s Done 167s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command4-packages.all"], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command4-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command4-packages.all 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 167s autopkgtest [03:43:17]: test command4: testsuite/ip_listener 167s autopkgtest [03:43:17]: test command4: [----------------------- 167s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command4-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command4-stderr --stdout=/tmp/autopkgtest.xs0yoS/command4-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/ip_listener"], kind test, sout raw, serr raw, env [] 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command4-artifacts 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command4-stderr 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command4-stdout 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 167s /tmp/autopkgtest.xs0yoS/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 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/ip_listener 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.siKvtoe56M/out to stdout and file: /tmp/autopkgtest.xs0yoS/command4-stdout 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.siKvtoe56M/err to standard error and file: /tmp/autopkgtest.xs0yoS/command4-stdout 167s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 1833 to /tmp/autopkgtest_script_pid 167s +++ dirname testsuite/ip_listener 167s ++ cd testsuite 167s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 167s ++ BINNAME=weborf 167s ++ trap cleanup EXIT 167s + run_weborf -b site1 -p 12340 --ip 127.0.0.2 167s + weborf -b site1 -p 12340 --ip 127.0.0.2 167s ++ jobs -p 167s + WEBORF_PID=1853 167s + sleep 0.2 168s ++ ls /proc/1853/fd/ 168s ++ wc -l 168s + [[ 5 -lt 4 ]] 168s + curl -s http://127.0.0.1:12340/robots.txt 168s + curl -s http://127.0.0.2:12340/robots.txt 168s 168s 168s 168s 168s ERROR: The requested URL could not be retrieved 168s 168s 168s
168s

ERROR

168s

The requested URL could not be retrieved

168s
168s
168s 168s
168s

The following error was encountered while trying to retrieve the URL: http://127.0.0.2:12340/robots.txt

168s 168s
168s

Connection to 127.0.0.2 failed.

168s
168s 168s

The system returned: (111) Connection refused

168s 168s

The remote host or network may be down. Please try the request again.

168s 168s

Your cache administrator is webmaster.

168s 168s
168s
168s 168s
168s 168s 168s + cleanup 168s + [[ -n 1853 ]] 168s + kill -9 1853 168s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 168s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 168s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 168s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest [03:43:18]: test command4: -----------------------] 168s autopkgtest: DBG: testbed executing test finished with exit status 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command4-stdout /tmp/autopkgtest-work.z_6a2szc/out/command4-stdout 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command4-stderr /tmp/autopkgtest-work.z_6a2szc/out/command4-stderr 168s autopkgtest: DBG: got reply from testbed: ok 169s command4 PASS 169s autopkgtest [03:43:19]: test command4: - - - - - - - - - - results - - - - - - - - - - 169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command4-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 169s autopkgtest: DBG: got reply from testbed: ok 169s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command4-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest [03:43:19]: test command5: preparing testbed 169s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 169s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 169s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 169s autopkgtest: DBG: install-deps: satisfying curl, weborf 169s autopkgtest: DBG: can use apt-get on testbed: True 169s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 169s Reading package lists... 169s Building dependency tree... 169s Reading state information... 169s Starting pkgProblemResolver with broken count: 0 169s Starting 2 pkgProblemResolver with broken count: 0 169s Done 170s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command5-packages.all"], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command5-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command5-packages.all 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 170s autopkgtest [03:43:20]: test command5: testsuite/vhost 170s autopkgtest [03:43:20]: test command5: [----------------------- 170s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command5-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command5-stderr --stdout=/tmp/autopkgtest.xs0yoS/command5-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/vhost"], kind test, sout raw, serr raw, env [] 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command5-artifacts 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command5-stderr 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command5-stdout 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 170s /tmp/autopkgtest.xs0yoS/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 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/vhost 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.UE5gjgJQAM/out to stdout and file: /tmp/autopkgtest.xs0yoS/command5-stdout 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.UE5gjgJQAM/err to standard error and file: /tmp/autopkgtest.xs0yoS/command5-stdout 170s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 1994 to /tmp/autopkgtest_script_pid 170s +++ dirname testsuite/vhost 170s ++ cd testsuite 170s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 170s ++ BINNAME=weborf 170s ++ trap cleanup EXIT 170s + run_weborf -p 12342 --virtual localhost:12342=site1,127.0.0.1:12342=site2 -b site1 170s + weborf -p 12342 --virtual localhost:12342=site1,127.0.0.1:12342=site2 -b site1 170s ++ jobs -p 170s + WEBORF_PID=2014 170s + sleep 0.2 171s ++ ls /proc/2014/fd/ 171s ++ wc -l 171s + [[ 5 -lt 4 ]] 171s + grep User-agent 171s + curl -vs http://localhost:12342/robots.txt 171s * Uses proxy env variable 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' 171s * Host localhost:12342 was resolved. 171s * IPv6: ::1 171s * IPv4: 127.0.0.1 171s * Trying [::1]:12342... 171s * Connected to localhost (::1) port 12342 171s * using HTTP/1.x 171s > GET /robots.txt HTTP/1.1 171s > Host: localhost:12342 171s > User-Agent: curl/8.12.1-DEV 171s > Accept: */* 171s > 171s * Request completely sent off 171s < HTTP/1.1 200 OK 171s < Server: weborf/1.4 (GNU/Linux) 171s < ETag: "1718774685" 171s < Content-Length: 26 171s < 171s { [26 bytes data] 171s * Connection #0 to host localhost left intact 171s User-agent: * 171s + grep site2 171s + curl -vs http://127.0.0.1:12342/site2.txt 171s * Uses proxy env variable 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' 171s * Trying 127.0.0.1:12342... 171s * Connected to 127.0.0.1 (127.0.0.1) port 12342 171s * using HTTP/1.x 171s > GET /site2.txt HTTP/1.1 171s > Host: 127.0.0.1:12342 171s > User-Agent: curl/8.12.1-DEV 171s > Accept: */* 171s > 171s * Request completely sent off 171s < HTTP/1.1 200 OK 171s < Server: weborf/1.4 (GNU/Linux) 171s < ETag: "1718774685" 171s < Content-Length: 6 171s < 171s { [6 bytes data] 171s site2 171s * Connection #0 to host 127.0.0.1 left intact 171s + cleanup 171s + [[ -n 2014 ]] 171s + kill -9 2014 171s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 171s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 171s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 171s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest [03:43:21]: test command5: -----------------------] 171s autopkgtest: DBG: testbed executing test finished with exit status 0 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command5-stdout /tmp/autopkgtest-work.z_6a2szc/out/command5-stdout 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command5-stderr /tmp/autopkgtest-work.z_6a2szc/out/command5-stderr 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest [03:43:21]: test command5: - - - - - - - - - - results - - - - - - - - - - 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command5-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 171s command5 PASS 172s autopkgtest: DBG: got reply from testbed: ok 172s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command5-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest [03:43:22]: test command6: preparing testbed 172s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 172s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 172s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 172s autopkgtest: DBG: install-deps: satisfying curl, weborf 172s autopkgtest: DBG: can use apt-get on testbed: True 172s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 172s Reading package lists... 172s Building dependency tree... 172s Reading state information... 172s Starting pkgProblemResolver with broken count: 0 172s Starting 2 pkgProblemResolver with broken count: 0 172s Done 173s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command6-packages.all"], kind short, sout raw, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command6-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command6-packages.all 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 173s autopkgtest [03:43:23]: test command6: testsuite/etag 173s autopkgtest [03:43:23]: test command6: [----------------------- 173s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command6-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command6-stderr --stdout=/tmp/autopkgtest.xs0yoS/command6-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/etag"], kind test, sout raw, serr raw, env [] 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command6-artifacts 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command6-stderr 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command6-stdout 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 173s /tmp/autopkgtest.xs0yoS/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 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/etag 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.Ic4KaEunY9/out to stdout and file: /tmp/autopkgtest.xs0yoS/command6-stdout 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.Ic4KaEunY9/err to standard error and file: /tmp/autopkgtest.xs0yoS/command6-stdout 173s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 2154 to /tmp/autopkgtest_script_pid 173s +++ dirname testsuite/etag 173s ++ cd testsuite 173s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 173s ++ BINNAME=weborf 173s ++ trap cleanup EXIT 173s + run_weborf -b site1 -p 12349 173s + weborf -b site1 -p 12349 173s ++ jobs -p 173s + WEBORF_PID=2174 173s + sleep 0.2 174s ++ ls /proc/2174/fd/ 174s ++ wc -l 174s + [[ 5 -lt 4 ]] 174s + grep ETag 174s + curl -sv http://127.0.0.1:12349/robots.txt 174s < ETag: "1718774685" 174s ++ curl -sv http://127.0.0.1:12349/robots.txt 174s ++ grep ETag 174s ++ cut '-d ' -f3 174s ++ tr -d '\r' 174s + ETAG='"1718774685"' 174s ++ curl -vs -H 'If-None-Match: "1718774685"' http://localhost:12349/robots.txt 174s * Uses proxy env variable 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' 174s * Host localhost:12349 was resolved. 174s * IPv6: ::1 174s * IPv4: 127.0.0.1 174s * Trying [::1]:12349... 174s * Connected to localhost (::1) port 12349 174s * using HTTP/1.x 174s > GET /robots.txt HTTP/1.1 174s > Host: localhost:12349 174s > User-Agent: curl/8.12.1-DEV 174s > Accept: */* 174s > If-None-Match: "1718774685" 174s > 174s * Request completely sent off 174s < HTTP/1.1 304 Found 174s < Server: weborf/1.4 (GNU/Linux) 174s < ETag: "1718774685" 174s < 174s * Connection #0 to host localhost left intact 174s + CACHED= 174s ++ printf 174s printf: usage: printf [-v var] format [arguments] 174s ++ wc -c 174s + [[ 0 = 0 ]] 174s ++ curl -vs -H 'If-None-Match: "aaaa"' http://localhost:12349/robots.txt 174s * Uses proxy env variable 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' 174s * Host localhost:12349 was resolved. 174s * IPv6: ::1 174s * IPv4: 127.0.0.1 174s * Trying [::1]:12349... 174s * Connected to localhost (::1) port 12349 174s * using HTTP/1.x 174s > GET /robots.txt HTTP/1.1 174s > Host: localhost:12349 174s > User-Agent: curl/8.12.1-DEV 174s > Accept: */* 174s > If-None-Match: "aaaa" 174s > 174s < HTTP/1.1 200 OK 174s < Server: weborf/1.4 (GNU/Linux) 174s < ETag: "1718774685" 174s < Content-Length: 26 174s < 174s { [26 bytes data] 174s * Connection #0 to host localhost left intact 174s + NON_CACHED='User-agent: * 174s Disallow: /' 174s ++ cat site1/robots.txt 174s + [[ User-agent: * 174s Disallow: / = User-agent: * 174s Disallow: / ]] 174s ++ curl -vs -H 'If-Range: "1718774685"' --range 0-3 http://localhost:12349/robots.txt 174s * Uses proxy env variable 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' 174s * Host localhost:12349 was resolved. 174s * IPv6: ::1 174s * IPv4: 127.0.0.1 174s * Trying [::1]:12349... 174s * Connected to localhost (::1) port 12349 174s * using HTTP/1.x 174s > GET /robots.txt HTTP/1.1 174s > Host: localhost:12349 174s > Range: bytes=0-3 174s > User-Agent: curl/8.12.1-DEV 174s > Accept: */* 174s > If-Range: "1718774685" 174s > 174s < HTTP/1.1 206 OK 174s < Server: weborf/1.4 (GNU/Linux) 174s < ETag: "1718774685" 174s < Content-Length: 4 174s < Accept-Ranges: bytes 174s < Content-Range: bytes 0-3/26 174s < 174s { [4 bytes data] 174s * Connection #0 to host localhost left intact 174s + CACHED=User 174s ++ printf User 174s ++ wc -c 174s + [[ 4 = 4 ]] 174s ++ curl -vs -H 'If-Range: "qwe"' --range 0-3 http://localhost:12349/robots.txt 174s * Uses proxy env variable 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' 174s * Host localhost:12349 was resolved. 174s * IPv6: ::1 174s * IPv4: 127.0.0.1 174s * Trying [::1]:12349... 174s * Connected to localhost (::1) port 12349 174s * using HTTP/1.x 174s > GET /robots.txt HTTP/1.1 174s > Host: localhost:12349 174s > Range: bytes=0-3 174s > User-Agent: curl/8.12.1-DEV 174s > Accept: */* 174s > If-Range: "qwe" 174s > 174s * Request completely sent off 174s < HTTP/1.1 200 OK 174s < Server: weborf/1.4 (GNU/Linux) 174s < ETag: "1718774685" 174s < Content-Length: 26 174s < 174s { [26 bytes data] 174s * Connection #0 to host localhost left intact 174s + CACHED='User-agent: * 174s Disallow: /' 174s ++ wc -c 174s ++ printf User-agent: cachedir cert cgi etag functions.sh index_file ip_listener range site1 site1http site1https site1mimetype site2 version_and_help vhost Disallow: / 174s + [[ 11 != 4 ]] 174s + cleanup 174s + [[ -n 2174 ]] 174s + kill -9 2174 174s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 174s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 174s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 174s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest [03:43:24]: test command6: -----------------------] 174s autopkgtest: DBG: testbed executing test finished with exit status 0 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command6-stdout /tmp/autopkgtest-work.z_6a2szc/out/command6-stdout 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command6-stderr /tmp/autopkgtest-work.z_6a2szc/out/command6-stderr 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest [03:43:24]: test command6: - - - - - - - - - - results - - - - - - - - - - 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command6-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 174s command6 PASS 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command6-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest [03:43:25]: test command7: preparing testbed 175s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 175s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 175s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 175s autopkgtest: DBG: install-deps: satisfying curl, weborf 175s autopkgtest: DBG: can use apt-get on testbed: True 175s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 175s Reading package lists... 175s Building dependency tree... 175s Reading state information... 175s Starting pkgProblemResolver with broken count: 0 175s Starting 2 pkgProblemResolver with broken count: 0 175s Done 176s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command7-packages.all"], kind short, sout raw, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command7-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command7-packages.all 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 176s autopkgtest [03:43:26]: test command7: testsuite/index_file 176s autopkgtest [03:43:26]: test command7: [----------------------- 176s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command7-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command7-stderr --stdout=/tmp/autopkgtest.xs0yoS/command7-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/index_file"], kind test, sout raw, serr raw, env [] 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command7-artifacts 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command7-stderr 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command7-stdout 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 176s /tmp/autopkgtest.xs0yoS/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 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/index_file 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.lAuP0V6pLG/out to stdout and file: /tmp/autopkgtest.xs0yoS/command7-stdout 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.lAuP0V6pLG/err to standard error and file: /tmp/autopkgtest.xs0yoS/command7-stdout 176s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 2331 to /tmp/autopkgtest_script_pid 176s +++ dirname testsuite/index_file 176s ++ cd testsuite 176s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 176s ++ BINNAME=weborf 176s ++ trap cleanup EXIT 176s + run_weborf -b site1 -p 12351 --index index.txt,index.dat 176s + weborf -b site1 -p 12351 --index index.txt,index.dat 176s ++ jobs -p 176s + WEBORF_PID=2351 176s + sleep 0.2 177s ++ ls /proc/2351/fd/ 177s ++ wc -l 177s + [[ 5 -lt 4 ]] 177s ++ curl -Lvs http://localhost:12351/sub1/ 177s * Uses proxy env variable 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' 177s * Host localhost:12351 was resolved. 177s * IPv6: ::1 177s * IPv4: 127.0.0.1 177s * Trying [::1]:12351... 177s * Connected to localhost (::1) port 12351 177s * using HTTP/1.x 177s > GET /sub1/ HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s * Request completely sent off 177s < HTTP/1.1 303 Found 177s < Server: weborf/1.4 (GNU/Linux) 177s < Content-Length: 0 177s < Location: /sub1/index.txt 177s * Ignoring the response-body 177s * setting size while ignoring 177s < 177s * Connection #0 to host localhost left intact 177s * Issue another request to this URL: 'http://localhost:12351/sub1/index.txt' 177s * Uses proxy env variable 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' 177s * Re-using existing connection with host localhost 177s > GET /sub1/index.txt HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s * Request completely sent off 177s < HTTP/1.1 200 OK 177s < Server: weborf/1.4 (GNU/Linux) 177s < ETag: "1718774685" 177s < Content-Length: 11 177s < 177s { [11 bytes data] 177s * Connection #0 to host localhost left intact 177s ++ cat site1/sub1/index.txt 177s + [[ lollellero = lollellero ]] 177s ++ curl -Lvs http://localhost:12351/sub2/ 177s * Uses proxy env variable 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' 177s * Host localhost:12351 was resolved. 177s * IPv6: ::1 177s * IPv4: 127.0.0.1 177s * Trying [::1]:12351... 177s * Connected to localhost (::1) port 12351 177s * using HTTP/1.x 177s > GET /sub2/ HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s < HTTP/1.1 303 Found 177s < Server: weborf/1.4 (GNU/Linux) 177s < Content-Length: 0 177s < Location: /sub2/index.dat 177s * Ignoring the response-body 177s * setting size while ignoring 177s < 177s * Connection #0 to host localhost left intact 177s * Issue another request to this URL: 'http://localhost:12351/sub2/index.dat' 177s * Uses proxy env variable 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' 177s * Re-using existing connection with host localhost 177s > GET /sub2/index.dat HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s < HTTP/1.1 200 OK 177s < Server: weborf/1.4 (GNU/Linux) 177s < ETag: "1718774685" 177s < Content-Length: 7 177s < 177s * Request completely sent off 177s { [7 bytes data] 177s * Connection #0 to host localhost left intact 177s ++ cat site1/sub2/index.dat 177s + [[ qbetto = qbetto ]] 177s ++ curl -Lvs http://localhost:12351/sub1 177s * Uses proxy env variable 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' 177s * Host localhost:12351 was resolved. 177s * IPv6: ::1 177s * IPv4: 127.0.0.1 177s * Trying [::1]:12351... 177s * Connected to localhost (::1) port 12351 177s * using HTTP/1.x 177s > GET /sub1 HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s * Request completely sent off 177s < HTTP/1.1 301 Found 177s < Server: weborf/1.4 (GNU/Linux) 177s < Content-Length: 0 177s < Location: /sub1/ 177s * Ignoring the response-body 177s * setting size while ignoring 177s < 177s * Connection #0 to host localhost left intact 177s * Issue another request to this URL: 'http://localhost:12351/sub1/' 177s * Uses proxy env variable 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' 177s * Re-using existing connection with host localhost 177s > GET /sub1/ HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s < HTTP/1.1 303 Found 177s < Server: weborf/1.4 (GNU/Linux) 177s < Content-Length: 0 177s < Location: /sub1/index.txt 177s * Ignoring the response-body 177s * setting size while ignoring 177s < 177s * Connection #0 to host localhost left intact 177s * Issue another request to this URL: 'http://localhost:12351/sub1/index.txt' 177s * Uses proxy env variable 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' 177s * Re-using existing connection with host localhost 177s > GET /sub1/index.txt HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s < HTTP/1.1 200 OK 177s < Server: weborf/1.4 (GNU/Linux) 177s < ETag: "1718774685" 177s < Content-Length: 11 177s < 177s * Request completely sent off 177s { [11 bytes data] 177s * Connection #0 to host localhost left intact 177s ++ cat site1/sub1/index.txt 177s + [[ lollellero = lollellero ]] 177s ++ curl -Lvs http://localhost:12351/sub2 177s * Uses proxy env variable 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' 177s * Host localhost:12351 was resolved. 177s * IPv6: ::1 177s * IPv4: 127.0.0.1 177s * Trying [::1]:12351... 177s * Connected to localhost (::1) port 12351 177s * using HTTP/1.x 177s > GET /sub2 HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s * Request completely sent off 177s < HTTP/1.1 301 Found 177s < Server: weborf/1.4 (GNU/Linux) 177s < Content-Length: 0 177s < Location: /sub2/ 177s * Ignoring the response-body 177s * setting size while ignoring 177s < 177s * Connection #0 to host localhost left intact 177s * Issue another request to this URL: 'http://localhost:12351/sub2/' 177s * Uses proxy env variable 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' 177s * Re-using existing connection with host localhost 177s > GET /sub2/ HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s * Request completely sent off 177s < HTTP/1.1 303 Found 177s < Server: weborf/1.4 (GNU/Linux) 177s < Content-Length: 0 177s < Location: /sub2/index.dat 177s * Ignoring the response-body 177s * setting size while ignoring 177s < 177s * Connection #0 to host localhost left intact 177s * Issue another request to this URL: 'http://localhost:12351/sub2/index.dat' 177s * Uses proxy env variable 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' 177s * Re-using existing connection with host localhost 177s > GET /sub2/index.dat HTTP/1.1 177s > Host: localhost:12351 177s > User-Agent: curl/8.12.1-DEV 177s > Accept: */* 177s > 177s * Request completely sent off 177s < HTTP/1.1 200 OK 177s < Server: weborf/1.4 (GNU/Linux) 177s < ETag: "1718774685" 177s < Content-Length: 7 177s < 177s { [7 bytes data] 177s * Connection #0 to host localhost left intact 177s ++ cat site1/sub2/index.dat 177s + [[ qbetto = qbetto ]] 177s + cleanup 177s + [[ -n 2351 ]] 177s + kill -9 2351 177s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 177s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 177s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 177s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest [03:43:27]: test command7: -----------------------] 177s autopkgtest: DBG: testbed executing test finished with exit status 0 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command7-stdout /tmp/autopkgtest-work.z_6a2szc/out/command7-stdout 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command7-stderr /tmp/autopkgtest-work.z_6a2szc/out/command7-stderr 177s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest [03:43:28]: test command7: - - - - - - - - - - results - - - - - - - - - - 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command7-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 178s command7 PASS 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command7-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest [03:43:28]: test command8: preparing testbed 178s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 178s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 178s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 178s autopkgtest: DBG: install-deps: satisfying curl, weborf 178s autopkgtest: DBG: can use apt-get on testbed: True 178s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 178s Reading package lists... 178s Building dependency tree... 178s Reading state information... 178s Starting pkgProblemResolver with broken count: 0 178s Starting 2 pkgProblemResolver with broken count: 0 178s Done 179s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command8-packages.all"], kind short, sout raw, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command8-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command8-packages.all 179s autopkgtest: DBG: got reply from testbed: ok 179s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 179s autopkgtest [03:43:29]: test command8: testsuite/range 179s autopkgtest [03:43:29]: test command8: [----------------------- 179s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command8-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command8-stderr --stdout=/tmp/autopkgtest.xs0yoS/command8-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/range"], kind test, sout raw, serr raw, env [] 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command8-artifacts 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command8-stderr 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command8-stdout 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 179s /tmp/autopkgtest.xs0yoS/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 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/range 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.NCNAXj5fXq/out to stdout and file: /tmp/autopkgtest.xs0yoS/command8-stdout 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.NCNAXj5fXq/err to standard error and file: /tmp/autopkgtest.xs0yoS/command8-stdout 179s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 2495 to /tmp/autopkgtest_script_pid 179s +++ dirname testsuite/range 179s ++ cd testsuite 179s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 179s ++ BINNAME=weborf 179s ++ trap cleanup EXIT 179s + run_weborf -b site1 -p 12348 179s + weborf -b site1 -p 12348 179s ++ jobs -p 179s + WEBORF_PID=2515 179s + sleep 0.2 180s ++ ls /proc/2515/fd/ 180s ++ wc -l 180s + [[ 5 -lt 4 ]] 180s + grep Content-Length 180s + curl -sv http://127.0.0.1:12348/robots.txt 180s < Content-Length: 26 180s ++ curl -sv http://127.0.0.1:12348/robots.txt 180s ++ grep Content-Length 180s ++ cut '-d ' -f3 180s ++ tr -d '\r' 180s + CONTENT_LENGTH=26 180s ++ curl -s -r0-5 http://127.0.0.1:12348/robots.txt 180s ++ curl -s -r6-10 http://127.0.0.1:12348/robots.txt 180s ++ curl -s -r11- http://127.0.0.1:12348/robots.txt 180s + ROBOTS='User-agent: * 180s Disallow: /' 180s + curl -s -r0-25 http://127.0.0.1:12348/robots.txt 180s User-agent: * 180s Disallow: / 180s + curl -s --fail -r0-26 http://127.0.0.1:12348/robots.txt 180s ++ curl -s -r0-0 http://127.0.0.1:12348/robots.txt 180s ++ wc -c 180s + [[ 1 = 1 ]] 180s ++ cat site1/robots.txt 180s + [[ User-agent: * 180s Disallow: / = User-agent: * 180s Disallow: / ]] 180s + cleanup 180s + [[ -n 2515 ]] 180s + kill -9 2515 180s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 180s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 180s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 180s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest [03:43:30]: test command8: -----------------------] 180s autopkgtest: DBG: testbed executing test finished with exit status 0 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command8-stdout /tmp/autopkgtest-work.z_6a2szc/out/command8-stdout 180s autopkgtest: DBG: got reply from testbed: ok 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command8-stderr /tmp/autopkgtest-work.z_6a2szc/out/command8-stderr 180s autopkgtest: DBG: got reply from testbed: ok 180s autopkgtest [03:43:30]: test command8: - - - - - - - - - - results - - - - - - - - - - 180s command8 PASS 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command8-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command8-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 181s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest [03:43:31]: test command9: preparing testbed 181s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 181s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 181s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 181s autopkgtest: DBG: install-deps: satisfying curl, weborf 181s autopkgtest: DBG: can use apt-get on testbed: True 181s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 181s Reading package lists... 181s Building dependency tree... 181s Reading state information... 181s Starting pkgProblemResolver with broken count: 0 181s Starting 2 pkgProblemResolver with broken count: 0 181s Done 182s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command9-packages.all"], kind short, sout raw, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command9-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command9-packages.all 182s autopkgtest: DBG: got reply from testbed: ok 182s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 182s autopkgtest [03:43:32]: test command9: testsuite/cgi 182s autopkgtest [03:43:32]: test command9: [----------------------- 182s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command9-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command9-stderr --stdout=/tmp/autopkgtest.xs0yoS/command9-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/cgi"], kind test, sout raw, serr raw, env [] 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command9-artifacts 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command9-stderr 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command9-stdout 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 182s /tmp/autopkgtest.xs0yoS/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 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/cgi 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.TEpIMPHrzf/out to stdout and file: /tmp/autopkgtest.xs0yoS/command9-stdout 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.TEpIMPHrzf/err to standard error and file: /tmp/autopkgtest.xs0yoS/command9-stdout 182s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 2667 to /tmp/autopkgtest_script_pid 182s +++ dirname testsuite/cgi 182s ++ cd testsuite 182s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 182s ++ BINNAME=weborf 182s ++ trap cleanup EXIT 182s + run_weborf -b site1 -p 12350 --yesexec --cgi .py,/usr/bin/python3 182s + weborf -b site1 -p 12350 --yesexec --cgi .py,/usr/bin/python3 182s ++ jobs -p 182s + WEBORF_PID=2687 182s + sleep 0.2 183s ++ ls /proc/2687/fd/ 183s ++ wc -l 183s + [[ 5 -lt 4 ]] 183s + curl -vs http://localhost:12350/cgi.py 183s * Uses proxy env variable 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' 183s * Host localhost:12350 was resolved. 183s * IPv6: ::1 183s * IPv4: 127.0.0.1 183s * Trying [::1]:12350... 183s * Connected to localhost (::1) port 12350 183s * using HTTP/1.x 183s > GET /cgi.py HTTP/1.1 183s > Host: localhost:12350 183s > User-Agent: curl/8.12.1-DEV 183s > Accept: */* 183s > 183s * Request completely sent off 183s < HTTP/1.1 200 OK 183s < Server: weborf/1.4 (GNU/Linux) 183s < Connection: close 183s < X-Extra: Ciao 183s < Content-Type: text/plain 183s < 183s { [442 bytes data] 183s * shutting down connection #0 183s + grep 1545650587 183s + curl -vs -H 'If-None-Match: "1545650587"' http://localhost:12350/cgi.py 183s SERVER_PROTOCOL HTTP/1.1 183s HTTP_HOST localhost:12350 183s HTTP_USER_AGENT curl/8.12.1-DEV 183s HTTP_ACCEPT */* 183s SERVER_ADDR ::1 183s SERVER_PORT 12350 183s SERVER_SIGNATURE weborf/1.4 (GNU/Linux) 183s SERVER_SOFTWARE weborf/1.4 (GNU/Linux) 183s GATEWAY_INTERFACE CGI/1.1 183s REQUEST_METHOD GET 183s REDIRECT_STATUS Ciao 183s SCRIPT_FILENAME site1/cgi.py 183s DOCUMENT_ROOT site1 183s REMOTE_ADDR ::1 183s SCRIPT_NAME /cgi.py 183s SERVER_NAME localhost:12350 183s REQUEST_URI /cgi.py 183s QUERY_STRING 183s LC_CTYPE C.UTF-8 183s * Uses proxy env variable 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' 183s * Host localhost:12350 was resolved. 183s * IPv6: ::1 183s * IPv4: 127.0.0.1 183s * Trying [::1]:12350... 183s * Connected to localhost (::1) port 12350 183s * using HTTP/1.x 183s > GET /cgi.py HTTP/1.1 183s > Host: localhost:12350 183s > User-Agent: curl/8.12.1-DEV 183s > Accept: */* 183s > If-None-Match: "1545650587" 183s > 183s * Request completely sent off 183s < HTTP/1.1 200 OK 183s < Server: weborf/1.4 (GNU/Linux) 183s < Connection: close 183s < X-Extra: Ciao 183s < Content-Type: text/plain 183s < 183s { [474 bytes data] 183s * shutting down connection #0 183s + grep ciccio 183s + curl -vs 'http://localhost:12350/cgi.py?ciccio' 183s * Uses proxy env variable 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' 183s * Host localhost:12350 was resolved. 183s * IPv6: ::1 183s * IPv4: 127.0.0.1 183s * Trying [::1]:12350... 183s * Connected to localhost (::1) port 12350 183s * using HTTP/1.x 183s > GET /cgi.py?ciccio HTTP/1.1 183s > Host: localhost:12350 183s > User-Agent: curl/8.12.1-DEV 183s > Accept: */* 183s > 183s * Request completely sent off 183s < HTTP/1.1 200 OK 183s < Server: weborf/1.4 (GNU/Linux) 183s < Connection: close 183s < X-Extra: Ciao 183s < Content-Type: text/plain 183s < 183s { [455 bytes data] 183s * shutting down connection #0 183s + grep lallallero 183s + curl -vs --data lallallero http://localhost:12350/cgi.py 183s * Uses proxy env variable 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' 183s * Host localhost:12350 was resolved. 183s * IPv6: ::1 183s * IPv4: 127.0.0.1 183s * Trying [::1]:12350... 183s * Connected to localhost (::1) port 12350 183s * using HTTP/1.x 183s > POST /cgi.py HTTP/1.1 183s > Host: localhost:12350 183s > User-Agent: curl/8.12.1-DEV 183s > Accept: */* 183s > Content-Length: 10 183s > Content-Type: application/x-www-form-urlencoded 183s > 183s } [10 bytes data] 183s * upload completely sent off: 10 bytes 183s < HTTP/1.1 200 OK 183s < Server: weborf/1.4 (GNU/Linux) 183s < Connection: close 183s < X-Extra: Ciao 183s < Content-Type: text/plain 183s < 183s { [616 bytes data] 183s * shutting down connection #0 183s + cleanup 183s + [[ -n 2687 ]] 183s + kill -9 2687 183s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 183s HTTP_IF_NONE_MATCH "1545650587" 183s QUERY_STRING ciccio 183s REQUEST_URI /cgi.py?ciccio 183s b'lallallero' 183s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 183s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 183s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest [03:43:33]: test command9: -----------------------] 183s autopkgtest: DBG: testbed executing test finished with exit status 0 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command9-stdout /tmp/autopkgtest-work.z_6a2szc/out/command9-stdout 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command9-stderr /tmp/autopkgtest-work.z_6a2szc/out/command9-stderr 183s autopkgtest: DBG: got reply from testbed: ok 183s command9 PASS 183s autopkgtest [03:43:33]: test command9: - - - - - - - - - - results - - - - - - - - - - 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command9-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command9-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest [03:43:34]: test command10: preparing testbed 184s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 184s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 184s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 184s autopkgtest: DBG: install-deps: satisfying curl, weborf 184s autopkgtest: DBG: can use apt-get on testbed: True 184s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 184s Reading package lists... 184s Building dependency tree... 184s Reading state information... 184s Starting pkgProblemResolver with broken count: 0 184s Starting 2 pkgProblemResolver with broken count: 0 184s Done 184s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command10-packages.all"], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command10-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command10-packages.all 185s autopkgtest: DBG: got reply from testbed: ok 185s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 185s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr pipe, env [] 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest [03:43:35]: test command10: testsuite/cachedir 185s autopkgtest [03:43:35]: test command10: [----------------------- 185s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command10-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command10-stderr --stdout=/tmp/autopkgtest.xs0yoS/command10-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/cachedir"], kind test, sout raw, serr raw, env [] 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command10-artifacts 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command10-stderr 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command10-stdout 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 185s /tmp/autopkgtest.xs0yoS/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 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/cachedir 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.b8eKlUKsdn/out to stdout and file: /tmp/autopkgtest.xs0yoS/command10-stdout 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.b8eKlUKsdn/err to standard error and file: /tmp/autopkgtest.xs0yoS/command10-stdout 185s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 2844 to /tmp/autopkgtest_script_pid 185s +++ dirname testsuite/cachedir 185s ++ cd testsuite 185s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 185s ++ BINNAME=weborf 185s ++ trap cleanup EXIT 185s + weborf -db site1 -p 12352 --cache /tmp/fakecachedir --index nonexisting 185s Unable to stat cache directory 185s ++ mktemp -d 185s + CACHE_DIR=/tmp/tmp.FhhSgmn44S 185s + weborf -b site1 -p 12352 --cache /tmp/tmp.FhhSgmn44S --index nonexisting 185s ++ jobs -p 185s + WEBORF_PID=2866 185s + trap cleanup EXIT 185s + curl -s http://localhost:12352/ 185s 185s weborf

weborf

185s 185s 185s 185s 185s
NameSizeLast Modified
fcgi.py328 BWed, 19 Jun 2024 05:24:45
fempty0 BWed, 19 Jun 2024 05:24:45
frobots.txt26 BWed, 19 Jun 2024 05:24:45
dsub1/-Wed, 19 Jun 2024 05:24:45
dsub2/-Wed, 19 Jun 2024 05:24:45
weborf/1.4 (GNU/Linux)
++ wc -l 185s ++ ls /tmp/tmp.FhhSgmn44S 185s + [[ 1 = 1 ]] 185s + diff - /tmp/tmp.FhhSgmn44S/0-5278-64769-1718774685 185s + curl -s http://localhost:12352/ 185s + touch site1/cachedir.test 185s + sleep 1.1 187s + grep cachedir.test 187s + curl -s http://localhost:12352/ 187s weborf

weborf

187s + rm site1/cachedir.test 187s + sleep 1.1 188s + grep cachedir.test 188s + curl -s http://localhost:12352/ 188s 0-5278-64769-1718774685 188s 0-5278-64769-1739677415 188s 0-5278-64769-1739677416 188s ++ ls /tmp/tmp.FhhSgmn44S 188s ++ wc -l 188s + [[ 3 = 3 ]] 188s + cleanup 188s + kill -9 2866 188s + ls /tmp/tmp.FhhSgmn44S 188s testsuite/cachedir: line 13: 2866 Killed "$BINNAME" -b site1 -p 12352 --cache $CACHE_DIR --index nonexisting 188s + rm -rf /tmp/tmp.FhhSgmn44S 188s + rm -f site1/cachedir.test 188s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 188s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 188s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 188s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest [03:43:38]: test command10: -----------------------] 188s autopkgtest: DBG: testbed executing test finished with exit status 0 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command10-stdout /tmp/autopkgtest-work.z_6a2szc/out/command10-stdout 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command10-stderr /tmp/autopkgtest-work.z_6a2szc/out/command10-stderr 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest [03:43:38]: test command10: - - - - - - - - - - results - - - - - - - - - - 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command10-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 188s command10 PASS 189s autopkgtest: DBG: got reply from testbed: ok 189s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command10-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 189s autopkgtest: DBG: testbed command exited with code 0 189s autopkgtest [03:43:39]: test command11: preparing testbed 189s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['curl', 'weborf'], deps_new=['curl', 'weborf'] 189s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 189s autopkgtest: DBG: install_deps: deps_new=['curl', 'weborf'] 189s autopkgtest: DBG: install-deps: satisfying curl, weborf 189s autopkgtest: DBG: can use apt-get on testbed: True 189s 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', 'curl, weborf'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 189s Reading package lists... 189s Building dependency tree... 189s Reading state information... 189s Starting pkgProblemResolver with broken count: 0 189s Starting 2 pkgProblemResolver with broken count: 0 189s Done 189s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'weborf'], kind short, sout pipe, serr pipe, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.xs0yoS/command11-packages.all"], kind short, sout raw, serr pipe, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command11-packages.all /tmp/autopkgtest-work.z_6a2szc/out/command11-packages.all 190s autopkgtest: DBG: got reply from testbed: ok 190s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.xs0yoS/build.AQS/src'], kind short, sout raw, serr raw, env [] 190s autopkgtest: DBG: testbed command exited with code 0 190s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.xs0yoS/build.AQS/src already exists 190s autopkgtest [03:43:40]: test command11: testsuite/site1mimetype 190s autopkgtest [03:43:40]: test command11: [----------------------- 190s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.xs0yoS/wrapper.sh --debug --artifacts=/tmp/autopkgtest.xs0yoS/command11-artifacts --chdir=/tmp/autopkgtest.xs0yoS/build.AQS/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.xs0yoS/command11-stderr --stdout=/tmp/autopkgtest.xs0yoS/command11-stdout --tmp=/tmp/autopkgtest.xs0yoS/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' -- bash -ec testsuite/site1mimetype"], kind test, sout raw, serr raw, env [] 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.xs0yoS/command11-artifacts 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: changing to directory: /tmp/autopkgtest.xs0yoS/build.AQS/src 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: setting environment: LANG=C.UTF-8 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LANGUAGE 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ADDRESS 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_ALL 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_COLLATE 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_CTYPE 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_IDENTIFICATION 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MEASUREMENT 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MESSAGES 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_MONETARY 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NAME 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_NUMERIC 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_PAPER 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TELEPHONE 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: unsetting environment: LC_TIME 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: pretending to be a login shell 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write standard error to /tmp/autopkgtest.xs0yoS/command11-stderr 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: will write stdout to /tmp/autopkgtest.xs0yoS/command11-stdout 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.xs0yoS/autopkgtest_tmp 190s /tmp/autopkgtest.xs0yoS/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 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: command to run: bash -ec testsuite/site1mimetype 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.gjG2t7PyKZ/out to stdout and file: /tmp/autopkgtest.xs0yoS/command11-stdout 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: copying /tmp/tmp.gjG2t7PyKZ/err to standard error and file: /tmp/autopkgtest.xs0yoS/command11-stdout 190s /tmp/autopkgtest.xs0yoS/wrapper.sh: writing script pid 3024 to /tmp/autopkgtest_script_pid 190s +++ dirname testsuite/site1mimetype 190s ++ cd testsuite 190s ++ '[' -n /tmp/autopkgtest.xs0yoS/autopkgtest_tmp ']' 190s ++ BINNAME=weborf 190s ++ trap cleanup EXIT 190s + run_weborf -b site1 -p 12347 --mime 190s + weborf -b site1 -p 12347 --mime 190s ++ jobs -p 190s + WEBORF_PID=3044 190s + sleep 0.2 191s ++ ls /proc/3044/fd/ 191s ++ wc -l 191s + [[ 5 -lt 4 ]] 191s + trap cleanup EXIT 191s + grep Content-Type 191s + grep text/ 191s + curl -v http://127.0.0.1:12347/robots.txt 191s < Content-Type: text/plain 191s + cleanup 191s + kill -9 3044 191s /tmp/autopkgtest.xs0yoS/wrapper.sh: checking for leaked background processes... 191s /tmp/autopkgtest.xs0yoS/wrapper.sh: waiting for tee/cat subprocesses... 191s /tmp/autopkgtest.xs0yoS/wrapper.sh: cleaning up... 191s /tmp/autopkgtest.xs0yoS/wrapper.sh: Exit status: 0 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest [03:43:41]: test command11: -----------------------] 191s autopkgtest: DBG: testbed executing test finished with exit status 0 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command11-stdout /tmp/autopkgtest-work.z_6a2szc/out/command11-stdout 191s autopkgtest: DBG: got reply from testbed: ok 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command11-stderr /tmp/autopkgtest-work.z_6a2szc/out/command11-stderr 192s autopkgtest: DBG: got reply from testbed: ok 192s command11 PASS 192s autopkgtest [03:43:42]: test command11: - - - - - - - - - - results - - - - - - - - - - 192s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.xs0yoS/command11-artifacts/ /tmp/autopkgtest-work.z_6a2szc/out/artifacts/ 192s autopkgtest: DBG: got reply from testbed: ok 192s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.xs0yoS/command11-artifacts', '/tmp/autopkgtest.xs0yoS/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 192s autopkgtest [03:43:42]: @@@@@@@@@@@@@@@@@@@@ summary 192s command1 PASS (superficial) 192s command2 PASS 192s command3 PASS 192s command4 PASS 192s command5 PASS 192s command6 PASS 192s command7 PASS 192s command8 PASS 192s command9 PASS 192s command10 PASS 192s command11 PASS 192s autopkgtest: DBG: testbed stop 192s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.xs0yoS 192s autopkgtest: DBG: sending command to testbed: close 197s autopkgtest: DBG: got reply from testbed: ok 197s autopkgtest: DBG: sending command to testbed: quit 197s nova [W] Using flock in prodstack6-s390x 197s Creating nova instance adt-plucky-s390x-weborf-20250216-034030-juju-7f2275-prod-proposed-migration-environment-15-93487768-a047-4565-860e-51d5f74057fd from image adt/ubuntu-plucky-s390x-server-20250216.img (UUID 67327349-c50d-4fb2-aab8-abef6582e685)... 197s nova [W] Timed out waiting for eab6fe2d-a103-4d70-90d8-7d9fc5f0bbb8 to get deleted.
NameSizeLast Modified
fcachedir.test0 BSun, 16 Feb 2025 03:43:35