0s autopkgtest: DBG: testbed init 0s autopkgtest [14:38:26]: starting date and time: 2025-02-07 14:38:26+0000 0s autopkgtest [14:38:26]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [14:38:26]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ibw0w_bs/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:ruby3.3 --apt-upgrade puma --debug --timeout-short=300 --timeout-copy=20000 --timeout-test=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=ruby3.3/3.3.7-1ubuntu1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-big-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-14.secgroup --name adt-plucky-s390x-puma-20250207-143826-juju-7f2275-prod-proposed-migration-environment-15-0f08b834-9b4a-4fdb-8124-e66a61c57ef4 --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/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 378s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Jk3i0M 378s autopkgtest: DBG: sending command to testbed: print-execute-command 378s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.uidx65oe/runcmd 378s autopkgtest: DBG: sending command to testbed: capabilities 378s autopkgtest: DBG: got reply from testbed: ok revert-full-system suggested-normal-user=ubuntu revert reboot isolation-machine root-on-testbed 378s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'reboot', 'isolation-machine', 'root-on-testbed', 'has_internet'] 378s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Jk3i0M'], kind short, sout raw, serr pipe, env [] 379s autopkgtest: DBG: testbed command exited with code 0 379s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Jk3i0M/wrapper.sh 379s autopkgtest: DBG: got reply from testbed: ok 379s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Jk3i0M/wrapper.sh'], kind short, sout raw, serr pipe, env [] 379s autopkgtest: DBG: testbed command exited with code 0 379s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 379s autopkgtest: DBG: testbed command exited with code 0 379s autopkgtest [14:44:45]: testbed dpkg architecture: s390x 379s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest [14:44:46]: testbed apt version: 2.9.27ubuntu1 380s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest: DBG: testbed has eatmydata 380s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest [14:44:46]: @@@@@@@@@@@@@@@@@@@@ test bed setup 380s 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 [] 380s autopkgtest: DBG: testbed command exited with code 0 380s autopkgtest [14:44:46]: testbed release detected to be: None 380s 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 [] 381s autopkgtest: DBG: testbed command exited with code 0 381s 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 [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest: DBG: adding APT source: Types: deb deb-src 381s URIs: http://ftpmaster.internal/ubuntu/ 381s Suites: plucky-proposed 381s Components: main restricted universe multiverse 381s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 381s 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 [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 381s Package: * 381s Pin: release plucky-proposed 381s Pin-Priority: 500 381s 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 [] 381s autopkgtest: DBG: testbed command exited with code 0 381s autopkgtest [14:44:47]: updating testbed package index (apt update) 381s 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'] 382s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 382s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 382s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 382s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 382s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [12.4 kB] 382s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [788 kB] 382s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [2428 B] 382s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [55.4 kB] 382s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [78.8 kB] 383s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [705 kB] 383s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [2680 B] 383s Fetched 1755 kB in 1s (1197 kB/s) 383s Reading package lists... 384s autopkgtest: DBG: testbed command exited with code 0 384s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 384s Package: * 384s Pin: release plucky-proposed 384s Pin-Priority: 100 384s 384s Package: src:ruby3.3:any 384s Pin: release plucky-proposed 384s Pin-Priority: 995 384s 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:ruby3.3:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 384s autopkgtest: DBG: testbed command exited with code 0 384s 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.Jk3i0M/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 384s autopkgtest: DBG: testbed command exited with code 0 384s 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'] 384s + lsb_release --codename --short 384s + RELEASE=plucky 384s + cat 384s + [ plucky != trusty ] 384s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 384s Reading package lists... 384s Building dependency tree... 384s Reading state information... 384s Calculating upgrade... 384s The following packages were automatically installed and are no longer required: 384s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 384s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 384s linux-tools-6.11.0-8-generic 384s Use 'sudo apt autoremove' to remove them. 384s The following packages will be upgraded: 384s gir1.2-glib-2.0 libglib2.0-0t64 libglib2.0-data libgpgme11t64 libnetplan1 384s libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 libsasl2-2 384s libsasl2-modules libsasl2-modules-db netplan-generator netplan.io pci.ids 384s python3-idna python3-netplan python3.12-gdbm 385s 17 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 385s Need to get 8193 kB of archives. 385s After this operation, 62.5 kB of additional disk space will be used. 385s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-glib-2.0 s390x 2.83.3-2 [182 kB] 385s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-0t64 s390x 2.83.3-2 [1583 kB] 385s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-data all 2.83.3-2 [52.7 kB] 385s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x netplan-generator s390x 1.1.2-2ubuntu1 [61.3 kB] 386s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3-netplan s390x 1.1.2-2ubuntu1 [24.4 kB] 386s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x netplan.io s390x 1.1.2-2ubuntu1 [68.6 kB] 386s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libnetplan1 s390x 1.1.2-2ubuntu1 [134 kB] 386s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 386s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 387s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 387s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x pci.ids all 0.0~2025.01.27-1 [284 kB] 387s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-gdbm s390x 3.12.9-1 [30.6 kB] 387s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.1-4ubuntu1 [154 kB] 387s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libsasl2-modules-db s390x 2.1.28+dfsg1-8build1 [21.1 kB] 387s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libsasl2-2 s390x 2.1.28+dfsg1-8build1 [56.8 kB] 387s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libsasl2-modules s390x 2.1.28+dfsg1-8build1 [76.4 kB] 387s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x python3-idna all 3.10-1 [47.4 kB] 387s Fetched 8193 kB in 2s (3406 kB/s) 387s (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 ... 80957 files and directories currently installed.) 387s Preparing to unpack .../00-gir1.2-glib-2.0_2.83.3-2_s390x.deb ... 387s Unpacking gir1.2-glib-2.0:s390x (2.83.3-2) over (2.83.3-1) ... 387s Preparing to unpack .../01-libglib2.0-0t64_2.83.3-2_s390x.deb ... 387s Unpacking libglib2.0-0t64:s390x (2.83.3-2) over (2.83.3-1) ... 387s Preparing to unpack .../02-libglib2.0-data_2.83.3-2_all.deb ... 387s Unpacking libglib2.0-data (2.83.3-2) over (2.83.3-1) ... 387s Preparing to unpack .../03-netplan-generator_1.1.2-2ubuntu1_s390x.deb ... 387s Adding 'diversion of /lib/systemd/system-generators/netplan to /lib/systemd/system-generators/netplan.usr-is-merged by netplan-generator' 387s Unpacking netplan-generator (1.1.2-2ubuntu1) over (1.1.2-1) ... 387s Preparing to unpack .../04-python3-netplan_1.1.2-2ubuntu1_s390x.deb ... 387s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 387s for fn in glob1(directory, "%s.*" % fname): 387s Unpacking python3-netplan (1.1.2-2ubuntu1) over (1.1.2-1) ... 387s Preparing to unpack .../05-netplan.io_1.1.2-2ubuntu1_s390x.deb ... 387s Unpacking netplan.io (1.1.2-2ubuntu1) over (1.1.2-1) ... 387s Preparing to unpack .../06-libnetplan1_1.1.2-2ubuntu1_s390x.deb ... 387s Unpacking libnetplan1:s390x (1.1.2-2ubuntu1) over (1.1.2-1) ... 387s Preparing to unpack .../07-libpython3.12t64_3.12.9-1_s390x.deb ... 387s Unpacking libpython3.12t64:s390x (3.12.9-1) over (3.12.8-5) ... 387s Preparing to unpack .../08-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 387s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) over (3.12.8-5) ... 388s Preparing to unpack .../09-libpython3.12-minimal_3.12.9-1_s390x.deb ... 388s Unpacking libpython3.12-minimal:s390x (3.12.9-1) over (3.12.8-5) ... 388s Preparing to unpack .../10-pci.ids_0.0~2025.01.27-1_all.deb ... 388s Unpacking pci.ids (0.0~2025.01.27-1) over (0.0~2025.01.13-1) ... 388s Preparing to unpack .../11-python3.12-gdbm_3.12.9-1_s390x.deb ... 388s Unpacking python3.12-gdbm (3.12.9-1) over (3.12.8-5) ... 388s Preparing to unpack .../12-libgpgme11t64_1.24.1-4ubuntu1_s390x.deb ... 388s Unpacking libgpgme11t64:s390x (1.24.1-4ubuntu1) over (1.24.1-3ubuntu1) ... 388s Preparing to unpack .../13-libsasl2-modules-db_2.1.28+dfsg1-8build1_s390x.deb ... 388s Unpacking libsasl2-modules-db:s390x (2.1.28+dfsg1-8build1) over (2.1.28+dfsg1-8) ... 388s Preparing to unpack .../14-libsasl2-2_2.1.28+dfsg1-8build1_s390x.deb ... 388s Unpacking libsasl2-2:s390x (2.1.28+dfsg1-8build1) over (2.1.28+dfsg1-8) ... 388s Preparing to unpack .../15-libsasl2-modules_2.1.28+dfsg1-8build1_s390x.deb ... 388s Unpacking libsasl2-modules:s390x (2.1.28+dfsg1-8build1) over (2.1.28+dfsg1-8) ... 388s Preparing to unpack .../16-python3-idna_3.10-1_all.deb ... 388s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 388s for fn in glob1(directory, "%s.*" % fname): 388s Unpacking python3-idna (3.10-1) over (3.8-2) ... 388s Setting up pci.ids (0.0~2025.01.27-1) ... 388s Setting up python3.12-gdbm (3.12.9-1) ... 388s Setting up libsasl2-modules:s390x (2.1.28+dfsg1-8build1) ... 388s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 388s Setting up libsasl2-modules-db:s390x (2.1.28+dfsg1-8build1) ... 388s Setting up libglib2.0-0t64:s390x (2.83.3-2) ... 388s No schema files found: doing nothing. 388s Setting up libglib2.0-data (2.83.3-2) ... 388s Setting up python3-idna (3.10-1) ... 388s Setting up gir1.2-glib-2.0:s390x (2.83.3-2) ... 388s Setting up libsasl2-2:s390x (2.1.28+dfsg1-8build1) ... 388s Setting up libgpgme11t64:s390x (1.24.1-4ubuntu1) ... 388s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 388s Setting up libnetplan1:s390x (1.1.2-2ubuntu1) ... 388s Setting up libpython3.12t64:s390x (3.12.9-1) ... 388s Setting up python3-netplan (1.1.2-2ubuntu1) ... 388s Setting up netplan-generator (1.1.2-2ubuntu1) ... 388s Removing 'diversion of /lib/systemd/system-generators/netplan to /lib/systemd/system-generators/netplan.usr-is-merged by netplan-generator' 388s Setting up netplan.io (1.1.2-2ubuntu1) ... 388s Processing triggers for libc-bin (2.40-4ubuntu1) ... 388s Processing triggers for man-db (2.13.0-1) ... 388s Processing triggers for dbus (1.14.10-4ubuntu5) ... 389s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 389s + /usr/lib/apt/apt-helper analyze-pattern ?true 389s + uname -r 389s + sed s/\./\\./g 389s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 389s + apt list ?obsolete 389s + tail -n+2 389s + cut -d/ -f1 389s + grep -v ^linux-.*6\.12\.0-12-generic.* 389s + true 389s + obsolete_pkgs= 389s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 389s Reading package lists... 389s Building dependency tree... 389s Reading state information... 389s The following packages will be REMOVED: 389s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 389s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 389s linux-tools-6.11.0-8-generic* 389s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 389s After this operation, 143 MB disk space will be freed. 389s (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 ... 80957 files and directories currently installed.) 389s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 389s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 390s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 390s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 390s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 390s (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 ... 56550 files and directories currently installed.) 390s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 390s + grep -q trusty /etc/lsb-release 390s + [ ! -d /usr/share/doc/unattended-upgrades ] 390s + [ ! -d /usr/share/doc/lxd ] 390s + [ ! -d /usr/share/doc/lxd-client ] 390s + [ ! -d /usr/share/doc/snapd ] 390s + type iptables 390s + cat 390s + chmod 755 /etc/rc.local 390s + . /etc/rc.local 390s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 390s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 390s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 390s + uname -m 390s + [ s390x = ppc64le ] 390s + [ -d /run/systemd/system ] 390s + systemd-detect-virt --quiet --vm 390s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 390s + cat 390s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 390s + echo COMPRESS=lz4 390s autopkgtest: DBG: testbed command exited with code 0 390s autopkgtest [14:44:56]: upgrading testbed (apt dist-upgrade and autopurge) 390s 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'] 391s Reading package lists... 391s Building dependency tree... 391s Reading state information... 391s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 391s Starting 2 pkgProblemResolver with broken count: 0 391s Done 391s Entering ResolveByKeep 391s 391s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 391s autopkgtest: DBG: testbed command exited with code 0 391s 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'] 391s Reading package lists... 392s Building dependency tree... 392s Reading state information... 392s Starting pkgProblemResolver with broken count: 0 392s Starting 2 pkgProblemResolver with broken count: 0 392s Done 392s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 392s autopkgtest: DBG: testbed command exited with code 0 392s 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.Jk3i0M/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 392s autopkgtest: DBG: testbed command exited with code 1 392s autopkgtest [14:44:58]: rebooting testbed after setup commands that affected boot 392s autopkgtest: DBG: sending command to testbed: reboot 411s autopkgtest: DBG: got reply from testbed: ok 411s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 411s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Jk3i0M'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Jk3i0M/autopkgtest-reboot 412s autopkgtest: DBG: got reply from testbed: ok 412s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 412s autopkgtest: DBG: testbed command exited with code 0 412s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Jk3i0M'], kind short, sout raw, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Jk3i0M/autopkgtest-reboot-prepare 413s autopkgtest: DBG: got reply from testbed: ok 413s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest [14:45:19]: testbed running kernel: Linux 6.12.0-12-generic #12-Ubuntu SMP Wed Jan 22 15:18:24 UTC 2025 413s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Jk3i0M/testbed-packages"], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/testbed-packages /tmp/autopkgtest-work.ibw0w_bs/out/testbed-packages 414s autopkgtest: DBG: got reply from testbed: ok 414s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 414s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Jk3i0M'], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Jk3i0M/autopkgtest-reboot 414s autopkgtest: DBG: got reply from testbed: ok 414s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Jk3i0M'], kind short, sout raw, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Jk3i0M/autopkgtest-reboot-prepare 415s autopkgtest: DBG: got reply from testbed: ok 415s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Jk3i0M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest: DBG: Binaries: initialising 416s autopkgtest [14:45:22]: @@@@@@@@@@@@@@@@@@@@ apt-source puma 416s autopkgtest: DBG: blame += puma 416s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 416s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'puma'], kind short, sout pipe, serr pipe, env [] 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^puma$'], kind short, sout pipe, serr raw, env [] 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'puma=6.4.3-3'], kind short, sout pipe, serr raw, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: install_deps: deps_new=[] 417s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s 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.Jk3i0M/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source puma=6.4.3-3 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 puma_*.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=ruby3.3/3.3.7-1ubuntu1'] 417s + cd / 417s + mktemp -d /tmp/autopkgtest.Jk3i0M/build.XXX 417s + builddir=/tmp/autopkgtest.Jk3i0M/build.mMt 417s + cd /tmp/autopkgtest.Jk3i0M/build.mMt 417s + apt-get source -d -q --only-source puma=6.4.3-3 418s + OUT=Reading package lists... 418s NOTICE: 'puma' packaging is maintained in the 'Git' version control system at: 418s https://salsa.debian.org/ruby-team/puma.git -b debian/experimental 418s Please use: 418s git clone https://salsa.debian.org/ruby-team/puma.git -b debian/experimental 418s to retrieve the latest (possibly unreleased) updates to the package. 418s Need to get 464 kB of source archives. 418s Get:1 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (dsc) [2119 B] 418s Get:2 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (tar) [388 kB] 418s Get:3 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (diff) [73.3 kB] 418s Fetched 464 kB in 1s (858 kB/s) 418s Download complete and in download only mode 418s + [ -n ] 418s + echo Reading package lists... 418s NOTICE: 'puma' packaging is maintained in the 'Git' version control system at: 418s https://salsa.debian.org/ruby-team/puma.git -b debian/experimental 418s Please use: 418s git clone https://salsa.debian.org/ruby-team/puma.git -b debian/experimental 418s to retrieve the latest (possibly unreleased) updates to the package. 418s Need to get 464 kB of source archives. 418s Get:1 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (dsc) [2119 B] 418s Get:2 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (tar) [388 kB] 418s Get:3 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (diff) [73.3 kB] 418s Fetched 464 kB in 1s (858 kB/s) 418s Download complete and in download only mode 418s + grep ^Get: 418s Get:1 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (dsc) [2119 B] 418s Get:2 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (tar) [388 kB] 418s Get:3 http://ftpmaster.internal/ubuntu plucky/main puma 6.4.3-3 (diff) [73.3 kB] 418s + dpkg-source -x puma_6.4.3-3.dsc src 418s gpgv: Signature made Wed Jan 22 20:19:14 2025 UTC 418s gpgv: using RSA key 8ED6C3F8BAC9DB7FC130A870F823A2729883C97C 418s gpgv: issuer "kanashiro@debian.org" 418s gpgv: Can't check signature: No public key 418s dpkg-source: warning: cannot verify inline signature for ./puma_6.4.3-3.dsc: no acceptable signature found 418s + chmod -R a+rX . 418s + cd src/. 418s + pwd 418s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 418s autopkgtest: DBG: testbed command exited with code 0 418s autopkgtest [14:45:24]: testing package puma version 6.4.3-3 418s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/build.mMt/src/debian/ /tmp/autopkgtest-work.ibw0w_bs/out/pkg/debian/ 418s autopkgtest: DBG: got reply from testbed: ok 418s autopkgtest: DBG: autodep8 generated control: ----- 418s Test-Command: gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 418s Depends: @, curl, libssl-dev, rake, ruby-localhost, ruby-minitest-stub-const, ruby-nio4r (>= 2), ruby-rack (<< 3), ruby-sd-notify, procps, gem2deb-test-runner, 418s Features: test-name=gem2deb-test-runner 418s Restrictions: skippable, 418s 418s ------- 418s autopkgtest: DBG: processing dependency @ 418s autopkgtest: DBG: synthesised dependency puma 418s autopkgtest: DBG: processing dependency curl 418s autopkgtest: DBG: processing dependency libssl-dev 418s autopkgtest: DBG: processing dependency rake 418s autopkgtest: DBG: processing dependency ruby-localhost 418s autopkgtest: DBG: processing dependency ruby-minitest-stub-const 418s autopkgtest: DBG: processing dependency ruby-nio4r (>= 2) 418s autopkgtest: DBG: processing dependency ruby-rack (<< 3) 418s autopkgtest: DBG: processing dependency ruby-sd-notify 418s autopkgtest: DBG: processing dependency procps 418s autopkgtest: DBG: processing dependency gem2deb-test-runner 418s autopkgtest: DBG: Test defined: name gem2deb-test-runner path None command "gem2deb-test-runner --autopkgtest --check-dependencies 2>&1" restrictions ['skippable'] features ['test-name=gem2deb-test-runner'] depends ['puma', 'curl', 'libssl-dev', 'rake', 'ruby-localhost', 'ruby-minitest-stub-const', 'ruby-nio4r (>= 2)', 'ruby-rack (<< 3)', 'ruby-sd-notify', 'procps', 'gem2deb-test-runner'] 418s autopkgtest [14:45:24]: build not needed 418s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/build.mMt/src/ /tmp/autopkgtest-work.ibw0w_bs/out/tests-tree/ 419s autopkgtest: DBG: got reply from testbed: ok 419s autopkgtest: DBG: autodep8 generated control: ----- 419s Test-Command: gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 419s Depends: @, curl, libssl-dev, rake, ruby-localhost, ruby-minitest-stub-const, ruby-nio4r (>= 2), ruby-rack (<< 3), ruby-sd-notify, procps, gem2deb-test-runner, 419s Features: test-name=gem2deb-test-runner 419s Restrictions: skippable, 419s 419s ------- 419s autopkgtest: DBG: processing dependency @ 419s autopkgtest: DBG: synthesised dependency puma 419s autopkgtest: DBG: processing dependency curl 419s autopkgtest: DBG: processing dependency libssl-dev 419s autopkgtest: DBG: processing dependency rake 419s autopkgtest: DBG: processing dependency ruby-localhost 419s autopkgtest: DBG: processing dependency ruby-minitest-stub-const 419s autopkgtest: DBG: processing dependency ruby-nio4r (>= 2) 419s autopkgtest: DBG: processing dependency ruby-rack (<< 3) 419s autopkgtest: DBG: processing dependency ruby-sd-notify 419s autopkgtest: DBG: processing dependency procps 419s autopkgtest: DBG: processing dependency gem2deb-test-runner 419s autopkgtest: DBG: Test defined: name gem2deb-test-runner path None command "gem2deb-test-runner --autopkgtest --check-dependencies 2>&1" restrictions ['skippable'] features ['test-name=gem2deb-test-runner'] depends ['puma', 'curl', 'libssl-dev', 'rake', 'ruby-localhost', 'ruby-minitest-stub-const', 'ruby-nio4r (>= 2)', 'ruby-rack (<< 3)', 'ruby-sd-notify', 'procps', 'gem2deb-test-runner'] 419s autopkgtest [14:45:25]: test gem2deb-test-runner: preparing testbed 419s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['puma', 'curl', 'libssl-dev', 'rake', 'ruby-localhost', 'ruby-minitest-stub-const', 'ruby-nio4r (>= 2)', 'ruby-rack (<< 3)', 'ruby-sd-notify', 'procps', 'gem2deb-test-runner'] 419s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 419s autopkgtest: DBG: install_deps: deps_new=['puma', 'curl', 'libssl-dev', 'rake', 'ruby-localhost', 'ruby-minitest-stub-const', 'ruby-nio4r (>= 2)', 'ruby-rack (<< 3)', 'ruby-sd-notify', 'procps', 'gem2deb-test-runner'] 419s autopkgtest: DBG: install-deps: satisfying puma, curl, libssl-dev, rake, ruby-localhost, ruby-minitest-stub-const, ruby-nio4r (>= 2), ruby-rack (<< 3), ruby-sd-notify, procps, gem2deb-test-runner 419s autopkgtest: DBG: can use apt-get on testbed: True 419s 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', 'puma, curl, libssl-dev, rake, ruby-localhost, ruby-minitest-stub-const, ruby-nio4r (>= 2), ruby-rack (<< 3), ruby-sd-notify, procps, gem2deb-test-runner'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 419s Reading package lists... 419s Building dependency tree... 419s Reading state information... 420s Starting pkgProblemResolver with broken count: 0 420s Starting 2 pkgProblemResolver with broken count: 0 420s Done 420s The following NEW packages will be installed: 420s gem2deb-test-runner libruby libruby3.3 libssl-dev puma rake ruby 420s ruby-did-you-mean ruby-localhost ruby-minitest ruby-minitest-stub-const 420s ruby-net-telnet ruby-nio4r ruby-power-assert ruby-rack ruby-rubygems 420s ruby-sd-notify ruby-test-unit ruby-webrick ruby-xmlrpc ruby3.3 420s rubygems-integration 420s 0 upgraded, 22 newly installed, 0 to remove and 0 not upgraded. 420s Need to get 9296 kB of archives. 420s After this operation, 48.3 MB of additional disk space will be used. 420s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x rubygems-integration all 1.18ubuntu1 [5528 B] 420s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-did-you-mean all 1.6.3-2 [14.8 kB] 420s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-minitest all 5.22.3-1ubuntu1 [48.0 kB] 420s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-net-telnet all 0.2.0-1 [13.3 kB] 420s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-power-assert all 2.0.3-1 [12.0 kB] 420s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-test-unit all 3.6.2-1 [67.0 kB] 420s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-webrick all 1.8.1-1ubuntu1 [52.6 kB] 420s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-xmlrpc all 0.3.3-2 [24.8 kB] 420s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libruby3.3 s390x 3.3.7-1ubuntu1 [5871 kB] 421s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x ruby3.3 s390x 3.3.7-1ubuntu1 [48.9 kB] 421s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libruby s390x 1:3.3~ubuntu3 [5038 B] 421s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-rubygems all 3.4.20-1 [238 kB] 421s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x ruby s390x 1:3.3~ubuntu3 [3618 B] 421s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x rake all 13.2.1-1 [45.8 kB] 421s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x gem2deb-test-runner s390x 2.2.5 [18.3 kB] 421s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libssl-dev s390x 3.4.0-1ubuntu2 [2427 kB] 422s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-nio4r s390x 2.7.3-1build1 [116 kB] 422s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x puma s390x 6.4.3-3 [156 kB] 422s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-localhost all 1.1.9-2 [5018 B] 422s Get:20 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-minitest-stub-const all 0.6-2 [4580 B] 422s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x ruby-rack all 2.2.7-1.1 [114 kB] 422s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x ruby-sd-notify all 0.1.1-2 [4716 B] 422s Fetched 9296 kB in 2s (4470 kB/s) 422s Selecting previously unselected package rubygems-integration. 422s (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 ... 56550 files and directories currently installed.) 422s Preparing to unpack .../00-rubygems-integration_1.18ubuntu1_all.deb ... 422s Unpacking rubygems-integration (1.18ubuntu1) ... 422s Selecting previously unselected package ruby-did-you-mean. 422s Preparing to unpack .../01-ruby-did-you-mean_1.6.3-2_all.deb ... 422s Unpacking ruby-did-you-mean (1.6.3-2) ... 422s Selecting previously unselected package ruby-minitest. 422s Preparing to unpack .../02-ruby-minitest_5.22.3-1ubuntu1_all.deb ... 422s Unpacking ruby-minitest (5.22.3-1ubuntu1) ... 422s Selecting previously unselected package ruby-net-telnet. 422s Preparing to unpack .../03-ruby-net-telnet_0.2.0-1_all.deb ... 422s Unpacking ruby-net-telnet (0.2.0-1) ... 422s Selecting previously unselected package ruby-power-assert. 422s Preparing to unpack .../04-ruby-power-assert_2.0.3-1_all.deb ... 422s Unpacking ruby-power-assert (2.0.3-1) ... 422s Selecting previously unselected package ruby-test-unit. 422s Preparing to unpack .../05-ruby-test-unit_3.6.2-1_all.deb ... 422s Unpacking ruby-test-unit (3.6.2-1) ... 422s Selecting previously unselected package ruby-webrick. 422s Preparing to unpack .../06-ruby-webrick_1.8.1-1ubuntu1_all.deb ... 422s Unpacking ruby-webrick (1.8.1-1ubuntu1) ... 422s Selecting previously unselected package ruby-xmlrpc. 422s Preparing to unpack .../07-ruby-xmlrpc_0.3.3-2_all.deb ... 422s Unpacking ruby-xmlrpc (0.3.3-2) ... 422s Selecting previously unselected package libruby3.3:s390x. 422s Preparing to unpack .../08-libruby3.3_3.3.7-1ubuntu1_s390x.deb ... 422s Unpacking libruby3.3:s390x (3.3.7-1ubuntu1) ... 422s Selecting previously unselected package ruby3.3. 422s Preparing to unpack .../09-ruby3.3_3.3.7-1ubuntu1_s390x.deb ... 422s Unpacking ruby3.3 (3.3.7-1ubuntu1) ... 422s Selecting previously unselected package libruby:s390x. 422s Preparing to unpack .../10-libruby_1%3a3.3~ubuntu3_s390x.deb ... 422s Unpacking libruby:s390x (1:3.3~ubuntu3) ... 422s Selecting previously unselected package ruby-rubygems. 422s Preparing to unpack .../11-ruby-rubygems_3.4.20-1_all.deb ... 422s Unpacking ruby-rubygems (3.4.20-1) ... 423s Selecting previously unselected package ruby. 423s Preparing to unpack .../12-ruby_1%3a3.3~ubuntu3_s390x.deb ... 423s Unpacking ruby (1:3.3~ubuntu3) ... 423s Selecting previously unselected package rake. 423s Preparing to unpack .../13-rake_13.2.1-1_all.deb ... 423s Unpacking rake (13.2.1-1) ... 423s Selecting previously unselected package gem2deb-test-runner. 423s Preparing to unpack .../14-gem2deb-test-runner_2.2.5_s390x.deb ... 423s Unpacking gem2deb-test-runner (2.2.5) ... 423s Selecting previously unselected package libssl-dev:s390x. 423s Preparing to unpack .../15-libssl-dev_3.4.0-1ubuntu2_s390x.deb ... 423s Unpacking libssl-dev:s390x (3.4.0-1ubuntu2) ... 423s Selecting previously unselected package ruby-nio4r. 423s Preparing to unpack .../16-ruby-nio4r_2.7.3-1build1_s390x.deb ... 423s Unpacking ruby-nio4r (2.7.3-1build1) ... 423s Selecting previously unselected package puma. 423s Preparing to unpack .../17-puma_6.4.3-3_s390x.deb ... 423s Unpacking puma (6.4.3-3) ... 423s Selecting previously unselected package ruby-localhost. 423s Preparing to unpack .../18-ruby-localhost_1.1.9-2_all.deb ... 423s Unpacking ruby-localhost (1.1.9-2) ... 423s Selecting previously unselected package ruby-minitest-stub-const. 423s Preparing to unpack .../19-ruby-minitest-stub-const_0.6-2_all.deb ... 423s Unpacking ruby-minitest-stub-const (0.6-2) ... 423s Selecting previously unselected package ruby-rack. 423s Preparing to unpack .../20-ruby-rack_2.2.7-1.1_all.deb ... 423s Unpacking ruby-rack (2.2.7-1.1) ... 423s Selecting previously unselected package ruby-sd-notify. 423s Preparing to unpack .../21-ruby-sd-notify_0.1.1-2_all.deb ... 423s Unpacking ruby-sd-notify (0.1.1-2) ... 423s Setting up ruby-minitest-stub-const (0.6-2) ... 423s Setting up ruby-power-assert (2.0.3-1) ... 423s Setting up rubygems-integration (1.18ubuntu1) ... 423s Setting up ruby-minitest (5.22.3-1ubuntu1) ... 423s Setting up ruby-test-unit (3.6.2-1) ... 423s Setting up ruby-localhost (1.1.9-2) ... 423s Setting up ruby-net-telnet (0.2.0-1) ... 423s Setting up libssl-dev:s390x (3.4.0-1ubuntu2) ... 423s Setting up ruby-webrick (1.8.1-1ubuntu1) ... 423s Setting up ruby-sd-notify (0.1.1-2) ... 423s Setting up ruby-did-you-mean (1.6.3-2) ... 423s Setting up ruby-xmlrpc (0.3.3-2) ... 423s Setting up rake (13.2.1-1) ... 423s Setting up libruby3.3:s390x (3.3.7-1ubuntu1) ... 423s Setting up ruby3.3 (3.3.7-1ubuntu1) ... 423s Setting up libruby:s390x (1:3.3~ubuntu3) ... 423s Setting up ruby (1:3.3~ubuntu3) ... 423s Setting up ruby-nio4r (2.7.3-1build1) ... 423s Setting up puma (6.4.3-3) ... 423s Setting up ruby-rack (2.2.7-1.1) ... 423s Setting up ruby-rubygems (3.4.20-1) ... 423s Setting up gem2deb-test-runner (2.2.5) ... 423s Processing triggers for man-db (2.13.0-1) ... 423s Processing triggers for libc-bin (2.40-4ubuntu1) ... 423s autopkgtest: DBG: testbed command exited with code 0 423s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'puma'], kind short, sout pipe, serr pipe, env [] 423s autopkgtest: DBG: testbed command exited with code 0 423s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-packages.all"], kind short, sout raw, serr pipe, env [] 424s autopkgtest: DBG: testbed command exited with code 0 424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-packages.all /tmp/autopkgtest-work.ibw0w_bs/out/gem2deb-test-runner-packages.all 424s autopkgtest: DBG: got reply from testbed: ok 424s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Jk3i0M/build.mMt/src'], kind short, sout raw, serr raw, env [] 424s autopkgtest: DBG: testbed command exited with code 0 424s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.Jk3i0M/build.mMt/src already exists 424s autopkgtest [14:45:30]: test gem2deb-test-runner: gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 424s autopkgtest [14:45:30]: test gem2deb-test-runner: [----------------------- 424s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.Jk3i0M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-artifacts --chdir=/tmp/autopkgtest.Jk3i0M/build.mMt/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=4 --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.Jk3i0M/gem2deb-test-runner-stderr --stdout=/tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stdout --tmp=/tmp/autopkgtest.Jk3i0M/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=ruby3.3/3.3.7-1ubuntu1 -- bash -ec 'gem2deb-test-runner --autopkgtest --check-dependencies 2>&1'"], kind test, sout raw, serr raw, env [] 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-artifacts 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: changing to directory: /tmp/autopkgtest.Jk3i0M/build.mMt/src 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=4 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: setting environment: LANG=C.UTF-8 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LANGUAGE 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_ADDRESS 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_ALL 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_COLLATE 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_CTYPE 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_MEASUREMENT 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_MESSAGES 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_MONETARY 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_NAME 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_NUMERIC 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_PAPER 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_TELEPHONE 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: unsetting environment: LC_TIME 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: pretending to be a login shell 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: will write standard error to /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stderr 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: will write stdout to /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stdout 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Jk3i0M/autopkgtest_tmp 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=ruby3.3/3.3.7-1ubuntu1 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: command to run: bash -ec gem2deb-test-runner --autopkgtest --check-dependencies 2>&1 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: copying /tmp/tmp.hvtVXkaPJN/out to stdout and file: /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stdout 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: copying /tmp/tmp.hvtVXkaPJN/err to standard error and file: /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stdout 424s /tmp/autopkgtest.Jk3i0M/wrapper.sh: writing script pid 1525 to /tmp/autopkgtest_script_pid 424s 424s ┌──────────────────────────────────────────────────────────────────────────────┐ 424s │ Checking Rubygems dependency resolution on ruby3.3 │ 424s └──────────────────────────────────────────────────────────────────────────────┘ 424s 425s RUBYLIB=. GEM_PATH= ruby3.3 -e gem\ \"puma\" 425s mv lib ./.gem2deb.lib 425s mv ext ./.gem2deb.ext 425s mv ./.gem2deb.lib lib 425s mv ./.gem2deb.ext ext 425s 425s ┌──────────────────────────────────────────────────────────────────────────────┐ 425s │ Run tests for ruby3.3 from debian/ruby-tests.rake │ 425s └──────────────────────────────────────────────────────────────────────────────┘ 425s 425s RUBYLIB=. GEM_PATH= ruby3.3 -S rake --rakelibdir /gem2deb-nonexistent -f debian/ruby-tests.rake 425s mv lib ./.gem2deb.lib 425s mv ext ./.gem2deb.ext 425s /usr/bin/ruby3.3 -w -I"test" /usr/share/rubygems-integration/all/gems/rake-13.2.1/lib/rake/rake_test_loader.rb "test/helpers/test_puma.rb" "test/test_app_status.rb" "test/test_binder.rb" "test/test_bundle_pruner.rb" "test/test_busy_worker.rb" "test/test_cli.rb" "test/test_config.rb" "test/test_error_logger.rb" "test/test_events.rb" "test/test_example_cert_expiration.rb" "test/test_http10.rb" "test/test_http11.rb" "test/test_integration_pumactl.rb" "test/test_integration_single.rb" "test/test_integration_ssl.rb" "test/test_integration_ssl_session.rb" "test/test_iobuffer.rb" "test/test_json_serialization.rb" "test/test_launcher.rb" "test/test_log_writer.rb" "test/test_minissl.rb" "test/test_normalize.rb" "test/test_null_io.rb" "test/test_out_of_band_server.rb" "test/test_persistent.rb" "test/test_plugin.rb" "test/test_plugin_systemd.rb" "test/test_plugin_systemd_jruby.rb" "test/test_puma_localhost_authority.rb" "test/test_puma_server.rb" "test/test_puma_server_hijack.rb" "test/test_puma_server_ssl.rb" "test/test_pumactl.rb" "test/test_rack_handler.rb" "test/test_rack_server.rb" "test/test_redirect_io.rb" "test/test_request_invalid.rb" "test/test_response_header.rb" "test/test_state_file.rb" "test/test_thread_pool.rb" "test/test_unix_socket.rb" "test/test_url_map.rb" "test/test_web_server.rb" -v -e'/test_application_logs_are_flushed_on_write|test_hot_restart_does_not_drop_connections|test_logs_all_localhost_bindings|test_multiple_requests_waiting_on_less_busy_worker|test_term_not_accepts_new_connections|test_prune_bundler_with_multiple_workers/' 425s Run options: -v "-e/test_application_logs_are_flushed_on_write|test_hot_restart_does_not_drop_connections|test_logs_all_localhost_bindings|test_multiple_requests_waiting_on_less_busy_worker|test_term_not_accepts_new_connections|test_prune_bundler_with_multiple_workers/" --seed 62697 425s 425s # Running: 425s 425s TestPumaSSLLocalhostAuthority#test_self_signed_by_localhost_authority = 0.17 s = . 425s TestRackUp::TestUserSuppliedOptionsIsEmpty#test_config_file_wins_over_port = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsEmpty#test_default_host_when_using_config_file = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsEmpty#test_default_host_when_using_config_file_with_explicit_host = 0.00 s = . 425s TestConfigEnvVariables#test_config_does_not_preload_app_if_not_using_workers = 0.00 s = . 425s TestConfigEnvVariables#test_config_preloads_app_if_using_workers = 0.00 s = . 425s TestConfigEnvVariables#test_config_loads_correct_max_threads = 0.00 s = . 425s TestConfigEnvVariables#test_config_loads_correct_min_threads = 0.00 s = . 425s TestConfigEnvVariables#test_config_loads_workers_from_env = 0.00 s = . 425s TestStateFile#test_load_empty_value_as_nil = 0.00 s = . 425s Http10ParserTest#test_parse_simple = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_config_wins_over_default = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_user_port_wins_over_default = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_user_log_requests_wins_over_file_config = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_user_port_wins_over_config = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_default_log_request_when_no_config_file = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_user_port_wins_over_default_when_user_supplied_is_blank = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_default_port_when_no_config_file = 0.00 s = . 425s TestRackUp::TestUserSuppliedOptionsIsNotPresent#test_file_log_requests_wins_over_default_config = 0.00 s = . 425s TestPumaControlCli#test_invalid_command = 0.00 s = . 425s TestPumaControlCli#test_default_config_file_exist = 0.00 s = . 425s TestPumaControlCli#test_environment_without_rack_env = 0.00 s = . 425s TestPumaControlCli#test_rack_env_without_environment = 0.00 s = . 425s TestPumaControlCli#test_control_ipv6 = 0.01 s = . 425s TestPumaControlCli#test_control_aunix = 0.01 s = . 425s TestPumaControlCli#test_control_url_with_signal_only_cmd = 0.00 s = . 425s TestPumaControlCli#test_app_env_precedence = 0.00 s = . 425s TestPumaControlCli#test_control_no_token = 0.00 s = . 425s TestPumaControlCli#test_blank_command = 0.00 s = . 425s TestPumaControlCli#test_environment_without_app_env = 0.00 s = . 425s TestPumaControlCli#test_control_url_and_status = 0.00 s = . 425s TestPumaControlCli#test_app_env_without_environment = 0.00 s = . 425s TestPumaControlCli#test_environment_with_rack_env = 0.00 s = . 425s TestPumaControlCli#test_environment_specific_config_file_exist = 0.00 s = . 425s TestPumaControlCli#test_config_file = 0.00 s = . 425s TestBinderSingle#test_ssl_binder_sets_backlog = 0.00 s = . 425s TestEnvModifificationConfig#test_double_bind_port = 0.00 s = . 425s TestEvents#test_fire_callback_with_multiple_arguments = 0.00 s = . 425s TestEvents#test_on_booted_callback = 0.00 s = . 425s TestEvents#test_register_callback_with_block = 0.00 s = . 425s TestEvents#test_register_callback_with_object = 0.00 s = . 425s TestCLI#test_state_file_callback_filtering = 0.00 s = . 425s TestCLI#test_extra_runtime_dependencies = 0.00 s = . 425s TestCLI#test_state = 0.00 s = . 425s TestCLI#test_log_formatter_default_single = 0.00 s = . 425s TestCLI#test_control_requests_count = 0.01 s = . 425s TestCLI#test_environment_rack_env = 0.00 s = . 425s TestCLI#test_environment_rails_env = 0.00 s = . 425s TestCLI#test_control_thread_backtraces = 0.00 s = . 425s TestCLI#test_tmp_control = 0.00 s = . 425s TestCLI#test_control_stop = 0.00 s = . 425s TestCLI#test_log_formatter_custom_single = 0.00 s = . 425s TestCLI#test_log_formatter_default_clustered = 0.00 s = . 425s TestCLI#test_control = 0.00 s = . 425s TestCLI#test_environment_app_env = 0.00 s = . 425s TestCLI#test_control_for_tcp = 0.00 s = . 425s TestCLI#test_silent = 0.00 s = . 425s TestCLI#test_control_for_ssl = 0.01 s = . 425s TestCLI#test_log_formatter_custom_clustered = 0.00 s = . 425s TestCLI#test_load_path = 0.00 s = . 425s TestPumaUnixSocket#test_server_aunix = 0.00 s = . 425s TestPumaUnixSocket#test_server_unix = 0.00 s = . 425s TestThreadPool#test_trim_thread_exit_hook = 0.00 s = . 425s TestThreadPool#test_reap_only_dead_threads = 0.00 s = . 425s TestThreadPool#test_trim_leaves_min = 0.00 s = . 425s TestThreadPool#test_trim = 0.00 s = . 425s TestThreadPool#test_autotrim = 0.00 s = . 425s TestThreadPool#test_force_shutdown_immediately = 0.00 s = . 425s TestThreadPool#test_force_trim_doesnt_overtrim = 0.00 s = . 425s TestThreadPool#test_converts_pool_sizes = 0.00 s = . 425s TestThreadPool#test_waiting_on_startup = 0.00 s = . 425s TestThreadPool#test_cleanliness = 0.00 s = . 425s TestThreadPool#test_thread_name_linux = 0.00 s = . 425s TestThreadPool#test_thread_start_hook = 0.00 s = . 425s TestThreadPool#test_append_queues_on_max = 0.00 s = . 429s TestThreadPool#test_correct_waiting_count_for_killed_threads = 4.00 s = . 429s TestThreadPool#test_auto_reap_dead_threads = 0.00 s = . 429s TestThreadPool#test_trim_is_ignored_if_no_waiting_threads = 0.00 s = . 429s TestThreadPool#test_append_spawns = 0.00 s = . 429s TestThreadPool#test_thread_name = 0.00 s = . 434s TestThreadPool#test_shutdown_with_grace = 5.01 s = . 434s TestPluginSystemdJruby#test_systemd_plugin_not_loaded = 0.00 s = S 434s TestBusyWorker#test_multiple_requests_processing_in_parallel = 0.10 s = . 434s TestPumaServerSSLWithCertPemAndKeyPem#test_server_ssl_with_cert_pem_and_key_pem = 0.21 s = . 434s TestRackUp::TestUserSuppliedOptionsPortIsSet#test_port_wins_over_config = 0.00 s = . 434s TestConfigFileWithFakeEnv#test_config_files_with_app_env = 0.00 s = . 434s TestConfigFileWithFakeEnv#test_config_files_with_rack_env = 0.00 s = . 434s TestConfigFileWithFakeEnv#test_config_files_with_rails_env = 0.00 s = . 434s TestConfigFileWithFakeEnv#test_config_files_with_specified_environment = 0.00 s = . 434s TestPumaLocalhostAuthority#test_localhost_authority_file_generated = 0.00 s = . 434s TestLauncher#test_prints_thread_traces = 0.00 s = . 435s TestLauncher#test_puma_stats = 0.00 s = . 435s TestLauncher#test_fire_on_stopped = 0.00 s = . 435s TestLauncher#test_pid_file = 0.00 s = . 435s TestLauncher#test_log_config_enabled = 0.00 s = . 435s TestLauncher#test_state_permission_0640 = 0.00 s = . 435s TestLauncher#test_state_permission_nil = 0.00 s = . 441s TestLauncher#test_puma_stats_clustered = 6.21 s = . 441s TestLauncher#test_log_config_disabled = 0.00 s = . 441s TestLauncher#test_no_state_permission = 0.00 s = . 441s TestPumaSSLCertChain#test_chain_cert_file_without_ca = 0.01 s = . 441s TestPumaSSLCertChain#test_chain_cert_string_without_ca = 0.01 s = . 441s TestPumaSSLCertChain#test_single_cert_file_with_ca = 0.01 s = . 441s TestPumaSSLCertChain#test_single_cert_string_with_ca = 0.01 s = . 443s TestPlugin#test_plugin = 2.25 s = . 445s TestPersistent#test_persistent_timeout = 2.00 s = . 445s TestPersistent#test_two_requests_in_one_chunk = 0.01 s = . 445s TestPersistent#test_no_body_then_get = 0.00 s = . 445s TestPersistent#test_chunked_with_empty_part = 0.00 s = . 445s TestPersistent#test_post_then_get = 0.00 s = . 445s TestPersistent#test_client11_close = 0.00 s = . 445s TestPersistent#test_client10_close = 0.00 s = . 445s TestPersistent#test_no_chunked_in_http10 = 0.00 s = . 445s TestPersistent#test_allow_app_to_chunk_itself = 0.00 s = . 445s TestPersistent#test_hex = 0.00 s = . 445s TestPersistent#test_chunked = 0.00 s = . 445s TestPersistent#test_second_request_not_in_first_req_body = 0.00 s = . 445s TestPersistent#test_two_back_to_back = 0.00 s = . 445s TestPersistent#test_keepalive_doesnt_starve_clients = 0.20 s = . 445s TestPersistent#test_app_sets_content_length = 0.00 s = . 445s TestPersistent#test_one_with_keep_alive_header = 0.00 s = . 445s TestPersistent#test_one_with_content_length = 0.00 s = . 446s TestRackUp::TestOnBootedHandler#test_on_booted = 0.50 s = . 446s TestLogWriter#test_null_log_does_nothing = 0.00 s = . 446s TestLogWriter#test_write_writes_to_stdout = 0.00 s = . 446s TestLogWriter#test_null = 0.00 s = . 446s TestLogWriter#test_pid_formatter = 0.00 s = . 446s TestLogWriter#test_log_writes_to_stdout = 0.00 s = . 446s TestLogWriter#test_custom_log_formatter = 0.00 s = . 446s TestLogWriter#test_debug_writes_to_stdout_if_env_is_present = 0.00 s = . 446s TestLogWriter#test_ssl_error = 0.00 s = . 446s TestLogWriter#test_strings = 0.00 s = . 446s TestLogWriter#test_parse_error = 0.10 s = . 446s TestLogWriter#test_debug_not_write_to_stdout_if_env_is_not_present = 0.00 s = . 446s TestLogWriter#test_stdio_respects_sync = 0.00 s = . 446s TestLogWriter#test_stdio = 0.00 s = . 446s TestLogWriter#test_error_writes_to_stderr_and_exits = 0.00 s = . 446s TestBundlePruner#test_extra_runtime_deps_paths_is_correctly_built = 0.00 s = S 446s TestBundlePruner#test_puma_wild_path_is_an_absolute_path = 0.00 s = S 446s TestBundlePruner#test_extra_runtime_deps_paths_is_empty_for_no_config = 0.00 s = . 446s TestBundlePruner#test_paths_to_require_after_prune_is_correctly_built_for_no_extra_deps = 0.00 s = S 446s TestBundlePruner#test_paths_to_require_after_prune_is_correctly_built_with_extra_deps = 0.00 s = S 446s TestIOBuffer#test_append = 0.00 s = . 446s TestIOBuffer#test_append_op = 0.00 s = . 446s TestIOBuffer#test_initial_size = 0.00 s = . 446s TestIOBuffer#test_reset = 0.00 s = . 446s TestMiniSSL#test_raises_with_invalid_cert_file = 0.00 s = . 446s TestMiniSSL#test_raises_with_unreadable_cert_file = 0.00 s = . 446s TestMiniSSL#test_raises_with_invalid_key_pem = 0.00 s = . 446s TestMiniSSL#test_raises_with_unreadable_ca_file = 0.00 s = . 446s TestMiniSSL#test_raises_with_invalid_cert_pem = 0.00 s = . 446s TestMiniSSL#test_raises_with_unreadable_key_file = 0.00 s = . 446s TestMiniSSL#test_raises_with_invalid_key_file = 0.00 s = . 446s TestMiniSSL#test_raises_with_invalid_key_password_command = 0.00 s = . 446s TestErrorLogger#test_debug_backtrace_logging = 0.00 s = . 446s TestErrorLogger#test_stdio = 0.00 s = . 446s TestErrorLogger#test_info_with_request = 0.00 s = . 446s TestErrorLogger#test_info_with_text = 0.00 s = . 446s TestErrorLogger#test_debug_with_debug_mode = 0.00 s = . 446s TestErrorLogger#test_stdio_respects_sync = 0.00 s = . 446s TestErrorLogger#test_debug_without_debug_mode = 0.00 s = . 446s TestErrorLogger#test_info_with_only_error = 0.00 s = . 446s TestRequestInvalid#test_transfer_encoding_invalid_multiple = 0.00 s = . 446s TestRequestInvalid#test_underscore_header_2 = 0.00 s = . 446s TestRequestInvalid#test_content_length_bad_characters_3 = 0.00 s = . 446s TestRequestInvalid#test_chunked_size_bad_characters_4 = 0.00 s = . 446s TestRequestInvalid#test_transfer_encoding_invalid_single = 0.00 s = . 446s TestRequestInvalid#test_chunked_size_mismatch_2 = 0.00 s = . 446s TestRequestInvalid#test_chunked_size_mismatch_1 = 0.00 s = . 446s TestRequestInvalid#test_content_length_multiple = 0.00 s = . 446s TestRequestInvalid#test_chunked_size_bad_characters_1 = 0.00 s = . 446s TestRequestInvalid#test_content_length_bad_characters_1 = 0.00 s = . 446s TestRequestInvalid#test_chunked_size_bad_characters_3 = 0.00 s = . 446s TestRequestInvalid#test_transfer_encoding_single_not_chunked = 0.00 s = . 446s TestRequestInvalid#test_underscore_header_1 = 0.00 s = . 446s TestRequestInvalid#test_content_length_bad_characters_2 = 0.00 s = . 446s TestRequestInvalid#test_chunked_size_bad_characters_2 = 0.00 s = . 446s TestRequestInvalid#test_transfer_encoding_chunked_not_last = 0.00 s = . 446s TestRequestInvalid#test_transfer_encoding_chunked_multiple = 0.00 s = . 446s TestConfigFileSingle#test_custom_logger_from_DSL = 0.00 s = . 446s TestBinderMRI#test_binder_parses_ssl_cipher_filter = 0.00 s = . 446s TestBinderMRI#test_binder_parses_ssl_verification_flags_multiple = 0.00 s = . 446s TestBinderMRI#test_binder_parses_ssl_verification_flags_one = 0.00 s = . 446s TestExampleCertExpiration#test_certs_not_expired = 0.00 s = . 446s TestRackUp::TestPathHandler#test_handler_boots = 0.50 s = . 446s TestRackUp::TestUserSuppliedOptionsHostIsSet#test_host_uses_supplied_port_default = 0.00 s = . 446s TestRackUp::TestUserSuppliedOptionsHostIsSet#test_ipv6_host_supplied_port_default = 0.00 s = . 446s TestPumaServer#test_request_body_wait = … 446s TestPumaServer#test_empty_body_array_no_content_length = … 446s TestPumaServer#test_HEAD_returns_content_headers = … 446s TestPumaServer#test_streaming_enum_body_2 = … 446s TestPumaServer#test_HEAD_returns_content_headers = 0.00 s = . 446s TestPumaServer#test_http_11_close_with_body = 0.00 s = . 447s TestPumaServer#test_cl_and_te_smuggle = … 447s TestPumaServer#test_empty_body_array_no_content_length = 0.20 s = . 447s TestPumaServer#test_prevent_response_splitting_headers_early_hint_crlf = 0.01 s = . 447s TestPumaServer#test_http11_connection_header_queue = 0.00 s = . 447s TestPumaServer#test_prevent_content_length_injection_lf = 0.00 s = . 447s TestPumaServer#test_supported_http_methods_accept_all = 0.00 s = . 448s TestPumaServer#test_no_timeout_after_data_received_no_queue = … 448s TestPumaServer#test_request_body_wait = 1.20 s = . 448s TestPumaServer#test_no_timeout_after_data_received = … 448s TestPumaServer#test_streaming_enum_body_2 = 1.36 s = . 448s TestPumaServer#test_chunked_keep_alive_two_back_to_back = 0.30 s = . 448s TestPumaServer#test_empty_header_values = 0.00 s = . 448s TestPumaServer#test_normalize_host_header_ipv6 = 0.00 s = . 448s TestPumaServer#test_form_data_encoding_windows_bom = 0.02 s = . 448s TestPumaServer#test_force_shutdown = 0.02 s = . 448s TestPumaServer#test_GET_with_empty_body_has_sane_chunking = 0.00 s = . 448s TestPumaServer#test_idle_connections_closed_immediately_on_shutdown = … 448s TestPumaServer#test_no_timeout_after_data_received_no_queue = 1.70 s = . 449s TestPumaServer#test_chunked_request_pause_mid_count = … 449s TestPumaServer#test_idle_connections_closed_immediately_on_shutdown = 0.50 s = . 449s TestPumaServer#test_chunked_keep_alive_two_back_to_back_with_set_remote_address = 0.10 s = . 449s TestPumaServer#test_http10_connection_header_queue = 0.00 s = . 449s TestPumaServer#test_proper_stringio_body = 0.10 s = . 449s TestPumaServer#test_leh_gets_env_as_well = 0.00 s = . 449s TestPumaServer#test_respect_x_forwarded_ssl_on = 0.00 s = . 449s TestPumaServer#test_supported_http_methods_no_match = 0.00 s = . 449s TestPumaServer#test_idle_timeout_before_first_request = … 449s TestPumaServer#test_no_timeout_after_data_received = 1.70 s = . 449s TestPumaServer#test_idle_timeout_before_first_request_data = … 449s TestPumaServer#test_chunked_request_pause_mid_count = 1.00 s = . 449s TestPumaServer#test_cl_empty_string = 0.00 s = . 449s TestPumaServer#test_default_server_port = 0.00 s = . 449s TestPumaServer#test_respect_x_forwarded_scheme = 0.00 s = . 449s TestPumaServer#test_GET_with_no_body_has_sane_chunking = 0.00 s = . 449s TestPumaServer#test_supported_http_methods_match = 0.00 s = . 449s TestPumaServer#test_prevent_response_splitting_headers_crlf = 0.00 s = . 449s TestPumaServer#test_lowlevel_error_body_close = 0.00 s = . 449s TestPumaServer#test_doesnt_print_backtrace_in_production = 0.00 s = . 450s TestPumaServer#test_request_body_wait_chunked = … 450s TestPumaServer#test_idle_timeout_before_first_request = 1.15 s = . 450s TestPumaServer#test_accept_emfile = 0.01 s = . 450s TestPumaServer#test_normalize_host_header_ipv4 = 0.00 s = . 450s TestPumaServer#test_chunked_keep_alive = 0.00 s = . 450s TestPumaServer#test_open_connection_wait_no_queue = 0.10 s = . 450s TestPumaServer#test_empty_body_enum = 0.20 s = . 450s TestPumaServer#test_drain_on_shutdown = 0.00 s = . 450s TestPumaServer#test_default_server_port_respects_x_forwarded_proto = 0.00 s = . 450s TestPumaServer#test_early_hints_is_off_by_default = 0.00 s = . 450s TestPumaServer#test_prevent_content_length_injection_cr = 0.00 s = . 450s TestPumaServer#test_idle_timeout_between_requests = … 450s TestPumaServer#test_idle_timeout_before_first_request_data = 1.15 s = . 451s TestPumaServer#test_http_11_keep_alive_with_large_payload = 0.20 s = . 451s TestPumaServer#test_http_11_close_without_body = 0.00 s = . 451s TestPumaServer#test_chunked_request_pause_between_cr_lf_after_size_of_second_chunk = 0.20 s = . 452s TestPumaServer#test_chunked_request_pause_mid_value = 1.00 s = . 452s TestPumaServer#test_status_hook_fires_when_server_changes_states = 0.00 s = . 452s TestPumaServer#test_not_drain_on_shutdown = 0.00 s = . 452s TestPumaServer#test_puma_socket = 0.00 s = . 452s TestPumaServer#test_file_to_path = … 452s TestPumaServer#test_idle_timeout_between_requests = 1.65 s = . 452s TestPumaServer#test_http_10_keep_alive_without_body = … 452s TestPumaServer#test_file_to_path = 0.20 s = . 452s TestPumaServer#test_form_data_encoding_windows = 0.01 s = . 452s TestPumaServer#test_eof_on_connection_close_is_not_logged_as_an_error = 0.00 s = . 452s TestPumaServer#test_chunked_request_pause_before_closing_cr_lf = … 452s TestPumaServer#test_http_10_keep_alive_without_body = 0.20 s = . 452s TestPumaServer#test_force_shutdown_error_default = … 452s TestPumaServer#test_request_body_wait_chunked = 3.00 s = . 453s TestPumaServer#test_client_quick_close_no_lowlevel_error_handler_call = … 453s TestPumaServer#test_chunked_request_pause_before_closing_cr_lf = 1.00 s = . 453s TestPumaServer#test_newline_splits_in_early_hint = 0.00 s = . 453s TestPumaServer#test_early_hints_works = 0.00 s = . 453s TestPumaServer#test_chunked_request = 0.00 s = . 453s TestPumaServer#test_custom_io_selector = 0.00 s = . 454s TestPumaServer#test_chunked_request_pause_before_value = … 454s TestPumaServer#test_client_quick_close_no_lowlevel_error_handler_call = 1.55 s = . 454s TestPumaServer#test_empty_body_array_content_length_0 = 0.20 s = . 454s TestPumaServer#test_large_chunked_request = 0.00 s = . 454s TestPumaServer#test_chunked_request_pause_between_closing_cr_lf = … 454s TestPumaServer#test_chunked_request_pause_before_value = 1.00 s = . 454s TestPumaServer#test_respect_x_forwarded_proto = 0.00 s = . 454s TestPumaServer#test_chunked_request_pause_before_count_newline = … 454s TestPumaServer#test_force_shutdown_error_default = 2.00 s = . 454s TestPumaServer#test_accept_econnaborted = 0.01 s = . 454s TestPumaServer#test_http_11_keep_alive_with_body = 0.00 s = . 455s TestPumaServer#test_remote_address_header = … 455s TestPumaServer#test_chunked_request_pause_between_closing_cr_lf = 1.00 s = . 455s TestPumaServer#test_lowlevel_error_message = 0.00 s = . 455s TestPumaServer#test_idle_timeout_between_request_data = … 455s TestPumaServer#test_chunked_request_pause_before_count_newline = 1.00 s = . 455s TestPumaServer#test_lowlevel_error_handler_response = 0.00 s = . 457s TestPumaServer#test_streaming_enum_body_1 = 2.00 s = . 457s TestPumaServer#test_http_10_keep_alive_with_body = 0.20 s = . 457s TestPumaServer#test_prevent_response_splitting_headers_early_hint_cr = 0.00 s = . 457s TestPumaServer#test_custom_http_codes_10 = 0.00 s = . 457s TestPumaServer#test_file_body = 0.20 s = . 457s TestPumaServer#test_normalize_host_header_hostname = 0.00 s = . 458s TestPumaServer#test_open_connection_wait = 0.10 s = . 458s TestPumaServer#test_http10_connection_header_no_queue = 0.00 s = . 458s TestPumaServer#test_prevent_response_splitting_headers_cr = 0.00 s = . 458s TestPumaServer#test_lowlevel_error_message_without_backtrace = 0.20 s = . 458s TestPumaServer#test_force_shutdown_custom_error_message = … 458s TestPumaServer#test_idle_timeout_between_request_data = 2.80 s = . 458s TestPumaServer#test_very_large_return = 0.00 s = . 460s TestPumaServer#test_crlf_trailer_smuggle = … 460s TestPumaServer#test_force_shutdown_custom_error_message = 2.00 s = . 460s TestPumaServer#test_shutdown_requests = 0.41 s = . 460s TestPumaServer#test_large_chunked_request_header = 0.00 s = . 460s TestPumaServer#test_request_payload_too_large = 0.20 s = . 460s TestPumaServer#test_prevent_response_splitting_headers_early_hint_lf = 0.00 s = . 460s TestPumaServer#test_chunked_encoding = 0.00 s = . 460s TestPumaServer#test_http11_connection_header_no_queue = 0.00 s = . 460s TestPumaServer#test_custom_http_codes_11 = 0.00 s = . 460s TestPumaServer#test_HEAD_has_no_body = 0.00 s = . 460s TestPumaServer#test_prevent_response_splitting_headers_lf = 0.00 s = . 460s TestPumaServer#test_Expect_100 = 0.00 s = . 460s TestPumaServer#test_early_hints_are_ignored_if_connection_lost = 0.10 s = . 460s TestPumaServer#test_http_10_close_without_body = 0.00 s = . 461s TestPumaServer#test_chunked_request_pause_between_chunks = 1.00 s = . 461s TestPumaServer#test_streaming_body = 0.00 s = . 463s TestPumaServer#test_idle_timeout_after_first_request = 1.15 s = . 463s TestPumaServer#test_chunked_request_header_case = 0.00 s = . 463s TestPumaServer#test_leh_has_status = 0.00 s = . 464s TestPumaServer#test_idle_timeout_between_first_request_data = 1.15 s = . 464s TestPumaServer#test_normalize_host_header_missing = 0.00 s = . 464s TestPumaServer#test_prints_custom_error = 0.00 s = . 464s TestPumaServer#test_proxy_protocol = 0.15 s = . 464s TestPumaServer#test_http_11_keep_alive_without_body = 0.20 s = . 464s TestPumaServer#test_prevent_content_length_injection_crlf = 0.00 s = . 464s TestPumaServer#test_supported_http_methods_empty = 0.00 s = . 464s TestPumaServer#test_newline_splits = 0.00 s = . 464s TestPumaServer#test_run_stop_thread_safety = 0.03 s = . 464s TestPumaServer#test_http_10_close_with_body = 0.00 s = . 464s TestResponseHeader#test_illegal_character_in_value_when_override_content_length = 0.00 s = . 464s TestResponseHeader#test_status_key = 0.00 s = . 464s TestResponseHeader#test_illegal_character_in_value_when_newline = 0.00 s = . 464s TestResponseHeader#test_integer_value = 0.00 s = . 464s TestResponseHeader#test_illegal_character_in_value_when_early_hints = 0.00 s = . 464s TestResponseHeader#test_header_value_array = 0.20 s = . 464s TestResponseHeader#test_illegal_character_in_key_when_early_hints = 0.00 s = . 464s TestResponseHeader#test_key_containing_status = 0.00 s = . 464s TestResponseHeader#test_racket_key = 0.00 s = . 464s TestResponseHeader#test_integer_key = 0.00 s = . 464s TestResponseHeader#test_illegal_character_in_key = 0.00 s = . 464s TestResponseHeader#test_rack_key = 0.00 s = . 464s TestResponseHeader#test_nil_header = 0.00 s = . 464s TestResponseHeader#test_illegal_character_in_value = 0.00 s = . 464s TestAppStatus#test_alternate_location = 0.01 s = . 464s TestAppStatus#test_stop = 0.00 s = . 464s TestAppStatus#test_stats = 0.00 s = . 464s TestAppStatus#test_bad_token = 0.00 s = . 464s TestAppStatus#test_unsupported = 0.00 s = . 464s TestAppStatus#test_good_token = 0.00 s = . 464s TestAppStatus#test_halt = 0.00 s = . 464s TestOutOfBandServer#test_blocks_new_connection = 0.01 s = . 465s TestOutOfBandServer#test_sequential = 0.13 s = . 465s TestOutOfBandServer#test_partial_concurrent = 0.00 s = . 465s TestOutOfBandServer#test_stream = 0.57 s = . 465s TestOutOfBandServer#test_partial_request = 0.01 s = . 465s TestOutOfBandServer#test_request_overlapping_hook = 0.02 s = . 465s Http11ParserTest#test_parse_absolute_uri = 0.00 s = . 465s Http11ParserTest#test_trims_whitespace_from_headers = 0.00 s = . 465s Http11ParserTest#test_newline_smuggler_two = 0.00 s = . 465s Http11ParserTest#test_parse_error = 0.00 s = . 465s Http11ParserTest#test_newline_smuggler = 0.00 s = . 465s Http11ParserTest#test_fragment_in_uri = 0.00 s = . 465s Http11ParserTest#test_htab_in_header_val = 0.00 s = . 465s Http11ParserTest#test_parse_escaping_in_query = 0.00 s = . 465s Http11ParserTest#test_semicolon_in_path = 0.00 s = . 465s Http11ParserTest#test_parse_dumbfuck_headers = 0.00 s = . 465s Http11ParserTest#test_horrible_queries = 0.01 s = . 465s Http11ParserTest#test_parse_simple = 0.00 s = . 465s Http11ParserTest#test_max_uri_path_length = 0.00 s = . 465s TestPumaServerSSL#test_invalid_key_pem = 0.00 s = . 465s TestPumaServerSSL#test_very_large_return = 0.21 s = . 465s TestPumaServerSSL#test_invalid_key = 0.00 s = . 465s TestPumaServerSSL#test_ssl_v3_rejection = 0.00 s = S 465s TestPumaServerSSL#test_invalid_cert_pem = 0.00 s = . 466s TestPumaServerSSL#test_form_submit = 0.21 s = . 466s TestPumaServerSSL#test_invalid_ca = 0.00 s = . 466s TestPumaServerSSL#test_tls_v1_1_rejection = 0.00 s = . 466s TestPumaServerSSL#test_url_scheme_for_https = 0.21 s = . 466s TestPumaServerSSL#test_request_wont_block_thread = 0.11 s = . 467s TestPumaServerSSL#test_http_rejection = … 467s TestPumaServer#test_cl_and_te_smuggle = 20.22 s = . 467s TestPumaServerSSL#test_tls_v1_rejection = 0.00 s = . 467s TestPumaServerSSL#test_tls_v1_3 = 0.21 s = . 467s TestPumaServerSSL#test_invalid_cert = 0.00 s = . 468s TestPluginSystemd#test_systemd_cluster_notify = 1.34 s = . 470s TestPluginSystemd#test_systemd_notify = 1.12 s = . 470s TestPluginSystemd#test_systemd_notify_usr2_hot_restart_single = 0.54 s = . 470s TestPluginSystemd#test_systemd_watchdog = 0.62 s = . 470s TestJSONSerialization#test_json_generates_string_for_nil = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_float = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_nested_arrays = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_true = 0.00 s = . 470s TestJSONSerialization#test_json_escapes_strings_with_unicode_information_separator_one = 0.00 s = . 470s TestJSONSerialization#test_json_escapes_strings_with_quotes = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_false = 0.00 s = . 470s TestJSONSerialization#test_generate_raises_error_for_unexpected_key_type = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_array_of_integers = 0.00 s = . 470s TestJSONSerialization#test_json_escapes_strings_with_backslashes = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_integer = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_array_of_strings = 0.00 s = . 470s TestJSONSerialization#test_generate_raises_error_for_unexpected_value_type = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_hash_with_symbol_keys = 0.00 s = . 470s TestJSONSerialization#test_json_generates_string_for_hash_with_string_keys = 0.00 s = . 470s TestJSONSerialization#test_json_escapes_strings_with_null_byte = 0.00 s = . 471s TestRedirectIO#test_sighup_redirects_io_cluster = 0.51 s = . 471s TestRedirectIO#test_sighup_redirects_io_single = 0.32 s = . 471s TestIntegrationSSLSession#test_1000_10_tls1_2 = 0.17 s = . 471s TestIntegrationSSLSession#test_dflt_tls1_3 = 0.11 s = . 472s TestIntegrationSSLSession#test_dflt_tls1_2 = 0.17 s = . 472s TestIntegrationSSLSession#test_1000_tls1_2 = 0.16 s = . 472s TestIntegrationSSLSession#test_off_tls1_3 = 0.12 s = . 472s TestIntegrationSSLSession#test__10_tls1_2 = 0.17 s = . 472s TestIntegrationSSLSession#test_dflt = 0.12 s = . 473s TestIntegrationPumactl#test_control_gc_stats_tcp = 0.32 s = . 473s TestIntegrationPumactl#test_require_dependencies = 0.90 s = . 475s TestIntegrationPumactl#test_refork_cluster = … 475s TestPumaServer#test_remote_address_header = 20.42 s = . 475s TestIntegrationPumactl#test_control_gc_stats_unix = … 475s TestIntegrationPumactl#test_refork_cluster = 1.34 s = . 475s TestIntegrationPumactl#test_stop_tcp = … 475s TestIntegrationPumactl#test_control_gc_stats_unix = 0.33 s = . 475s TestIntegrationPumactl#test_kill_unknown = 0.00 s = . 475s TestIntegrationPumactl#test_phased_restart_cluster = … 475s TestIntegrationPumactl#test_stop_tcp = 0.11 s = . 475s TestIntegrationSSL#test_ssl_run = 0.12 s = . 475s TestIntegrationSSL#test_verify_client_cert_roundtrip = 0.34 s = . 475s TestIntegrationSSL#test_ssl_run_with_localhost_authority = 0.15 s = . 476s TestIntegrationSSL#test_ssl_run_with_pem = 0.11 s = . 476s TestIntegrationSSL#test_ssl_run_with_curl_client = 0.02 s = . 476s TestIntegrationSSL#test_verify_client_cert_roundtrip_tls1_2 = 0.34 s = . 476s TestIntegrationSSL#test_ssl_run_with_encrypted_key = 0.12 s = . 476s TestIntegrationSSL#test_ssl_run_with_encrypted_pem = … 476s TestIntegrationPumactl#test_phased_restart_cluster = 1.35 s = . 476s TestBinderParallel#test_socket_activation_tcp_ipv6 = 0.00 s = . 476s TestBinderParallel#test_localhost_addresses_dont_alter_listeners_for_tcp_addresses = 0.00 s = . 476s TestBinderParallel#test_redirects_for_restart_creates_a_hash = 0.00 s = . 476s TestBinderParallel#test_close_calls_close_on_ios = 0.00 s = . 476s TestBinderParallel#test_binder_tcp_parses_true_low_latency = 0.00 s = . 476s TestBinderParallel#test_allows_both_tcp_and_unix = 0.00 s = . 476s TestBinderParallel#test_env_contains_protoenv = 0.00 s = . 476s TestBinderParallel#test_listeners_file_unlink_if_unix_listener = 0.00 s = . 476s TestBinderParallel#test_synthesize_binds_from_activated_fds_no_sockets = 0.00 s = . 476s TestBinderParallel#test_binder_parses_tlsv1_1_enabled = 0.00 s = . 476s TestBinderParallel#test_allows_both_unix_and_tcp = 0.00 s = . 476s TestBinderParallel#test_binder_ssl_defaults_to_true_low_latency = 0.00 s = . 476s TestBinderParallel#test_binder_parses_tlsv1_tlsv1_1_unspecified_defaults_to_enabled = 0.00 s = . 476s TestBinderParallel#test_redirects_for_restart_env = 0.00 s = . 476s TestBinderParallel#test_import_from_env_listen_inherit = 0.00 s = . 476s TestBinderParallel#test_close_listeners_closes_ios = 0.00 s = . 476s TestBinderParallel#test_binder_ssl_parses_false_low_latency = 0.00 s = . 476s TestBinderParallel#test_synthesize_binds_from_activated_fds_non_matching_together = 0.00 s = . 476s TestBinderParallel#test_correct_zero_port_ssl = … 476s TestIntegrationSSL#test_ssl_run_with_encrypted_pem = 0.12 s = . 476s TestBinderParallel#test_pre_existing_unix = … 476s TestBinderParallel#test_correct_zero_port_ssl = 0.00 s = . 476s TestBinderParallel#test_home_alters_listeners_for_ssl_addresses = 0.00 s = . 476s TestBinderParallel#test_binder_parses_tlsv1_1_disabled = … 476s TestBinderParallel#test_pre_existing_unix = 0.00 s = . 476s TestBinderParallel#test_synthesize_binds_from_activated_fds_complex_binds = 0.00 s = . 476s TestBinderParallel#test_binder_parses_tlsv1_enabled = … 476s TestBinderParallel#test_binder_parses_tlsv1_1_disabled = 0.00 s = . 476s TestBinderParallel#test_connected_ports = … 476s TestBinderParallel#test_binder_parses_tlsv1_enabled = 0.00 s = . 476s TestBinderParallel#test_localhost_addresses_dont_alter_listeners_for_ssl_addresses = 0.00 s = . 476s TestBinderParallel#test_binder_parses_false_low_latency = 0.00 s = . 476s TestBinderParallel#test_rack_multithread_default_configuration = 0.00 s = . 476s TestBinderParallel#test_socket_activation_tcp = 0.00 s = . 476s TestBinderParallel#test_env_contains_stderr = 0.00 s = . 476s TestBinderParallel#test_rack_multiprocess_default_configuration = 0.00 s = . 476s TestBinderParallel#test_close_listeners_closes_ios_unless_closed? = … 476s TestBinderParallel#test_connected_ports = 0.00 s = . 476s TestBinderParallel#test_socket_activation_unix = … 476s TestBinderParallel#test_close_listeners_closes_ios_unless_closed? = 0.00 s = . 476s TestBinderParallel#test_binder_tcp_parses_nil_low_latency = 0.00 s = . 476s TestBinderParallel#test_binder_parses_tlsv1_disabled = … 476s TestBinderParallel#test_socket_activation_unix = 0.00 s = . 476s TestBinderParallel#test_allows_both_ssl_and_tcp = … 476s TestBinderParallel#test_binder_parses_tlsv1_disabled = 0.00 s = . 476s TestBinderParallel#test_correct_zero_port = 0.00 s = . 476s TestBinderParallel#test_rack_multiprocess_custom_configuration = 0.00 s = . 476s TestBinderParallel#test_rack_multithread_custom_configuration = 0.00 s = . 476s TestBinderParallel#test_home_alters_listeners_for_tcp_addresses = 0.00 s = . 476s TestBinderParallel#test_binder_tcp_defaults_to_low_latency_off = … 476s TestBinderParallel#test_allows_both_ssl_and_tcp = 0.00 s = . 476s TestBinderParallel#test_synthesize_binds_from_activated_fds_non_matching_only = 0.00 s = . 476s TestRackServer#test_rack_body_proxy_content_length = … 476s TestBinderParallel#test_binder_tcp_defaults_to_low_latency_off = 0.00 s = . 476s TestRackServer#test_puma_enum = … 476s TestRackServer#test_rack_body_proxy_content_length = 0.00 s = . 476s TestRackServer#test_lint = … 476s TestRackServer#test_puma_enum = 0.00 s = . 476s TestRackServer#test_path_info = 0.00 s = . 476s TestRackServer#test_after_reply = … 476s TestRackServer#test_lint = 0.00 s = . 476s TestRackServer#test_common_logger = … 476s TestRackServer#test_after_reply = 0.00 s = . 476s TestRackServer#test_rack_chunked_array1 = … 476s TestRackServer#test_common_logger = 0.00 s = . 476s TestRackServer#test_rack_chunked_array10 = … 476s TestRackServer#test_rack_chunked_array1 = 0.00 s = . 476s TestRackServer#test_rack_body_proxy = 0.00 s = . 476s TestRackServer#test_after_reply_exception = … 476s TestRackServer#test_rack_chunked_array10 = 0.00 s = . 476s TestRackServer#test_large_post_body = 0.00 s = . 476s TestNullIO#test_string_returns_empty_string = 0.00 s = . 476s TestNullIO#test_read_with_length_and_buffer = 0.00 s = . 476s TestNullIO#test_size = 0.00 s = . 476s TestNullIO#test_read_with_positive_integer_length = 0.00 s = . 476s TestNullIO#test_flush_returns_self = 0.00 s = . 476s TestNullIO#test_read_with_implicit_string_like_buffer = 0.00 s = . 476s TestNullIO#test_read_with_invalid_buffer = 0.00 s = . 476s TestNullIO#test_read_with_buffer = 0.00 s = . 476s TestNullIO#test_sync_returns_true = 0.00 s = . 476s TestNullIO#test_gets_returns_nil = 0.00 s = . 476s TestNullIO#test_read_with_nil_length = 0.00 s = . 476s TestNullIO#test_read_with_no_arguments = 0.00 s = . 476s TestNullIO#test_closed_returns_false = 0.00 s = . 476s TestNullIO#test_read_with_frozen_buffer = 0.00 s = . 476s TestNullIO#test_eof_returns_true = 0.00 s = . 476s TestNullIO#test_read_with_zero_length = 0.00 s = . 476s TestNullIO#test_each_never_yields = 0.00 s = . 476s TestNullIO#test_read_with_nil_buffer = 0.00 s = . 476s TestNullIO#test_read_with_negative_length = 0.00 s = . 476s WebServerTest#test_nonexistent_http_method = 0.00 s = . 476s WebServerTest#test_requests_count = 0.00 s = . 476s WebServerTest#test_bad_client = 0.00 s = . 476s WebServerTest#test_header_is_too_long = 0.00 s = . 476s WebServerTest#test_close_client = 0.00 s = . 476s WebServerTest#test_supported_http_method = 0.00 s = . 476s WebServerTest#test_trickle_attack = 0.00 s = . 476s WebServerTest#test_simple_server = 0.00 s = . 476s WebServerTest#test_bad_path = 0.00 s = . 476s WebServerTest#test_file_streamed_request = 0.00 s = . 476s TestPumaServerSSLClient#test_verify_client_cert = … 476s TestRackServer#test_after_reply_exception = 0.10 s = . 476s TestPumaServerSSLClient#test_verify_fail_if_client_expired_cert = 0.11 s = . 476s TestPumaServerSSLClient#test_verify_fail_if_client_unknown_ca = … 476s TestPumaServerSSLClient#test_verify_client_cert = 0.21 s = . 477s TestPumaServerSSLClient#test_verify_fail_if_no_client_cert = … 477s TestPumaServerSSLClient#test_verify_fail_if_client_unknown_ca = 0.11 s = . 477s TestNormalize#test_comma_headers = 0.00 s = . 477s TestNormalize#test_unmaskable_headers = 0.00 s = . 477s TestNullIOConformance#test_string_returns_empty_string = 0.00 s = . 477s TestNullIOConformance#test_read_with_length_and_buffer = 0.00 s = . 477s TestNullIOConformance#test_size = 0.00 s = . 477s TestNullIOConformance#test_read_with_positive_integer_length = 0.00 s = . 477s TestNullIOConformance#test_flush_returns_self = 0.00 s = . 477s TestNullIOConformance#test_read_with_implicit_string_like_buffer = 0.00 s = . 477s TestNullIOConformance#test_read_with_invalid_buffer = 0.00 s = . 477s TestNullIOConformance#test_read_with_buffer = 0.00 s = . 477s TestNullIOConformance#test_sync_returns_true = 0.00 s = . 477s TestNullIOConformance#test_gets_returns_nil = 0.00 s = . 477s TestNullIOConformance#test_read_with_nil_length = 0.00 s = . 477s TestNullIOConformance#test_read_with_no_arguments = 0.00 s = . 477s TestNullIOConformance#test_closed_returns_false = 0.00 s = . 477s TestNullIOConformance#test_read_with_frozen_buffer = 0.00 s = . 477s TestNullIOConformance#test_eof_returns_true = 0.00 s = . 477s TestNullIOConformance#test_read_with_zero_length = 0.00 s = . 477s TestNullIOConformance#test_each_never_yields = 0.00 s = . 477s TestNullIOConformance#test_read_with_nil_buffer = 0.00 s = . 477s TestNullIOConformance#test_read_with_negative_length = 0.00 s = . 477s TestIntegrationSingle#test_usr2_restart_restores_environment = … 477s TestPumaServerSSLClient#test_verify_fail_if_no_client_cert = 0.11 s = . 477s TestIntegrationSingle#test_prefer_rackup_file_specified_by_cli = 0.31 s = . 477s TestIntegrationSingle#test_usr2_restart = … 477s TestPumaServerSSL#test_http_rejection = 11.02 s = . 477s TestIntegrationSingle#test_on_booted = 0.11 s = . 477s TestIntegrationSingle#test_pre_existing_unix_after_idle_timeout = … 477s TestIntegrationSingle#test_usr2_restart_restores_environment = 0.62 s = . 477s TestIntegrationSingle#test_idle_timeout = … 477s TestIntegrationSingle#test_usr2_restart = 0.63 s = . 478s TestIntegrationSingle#test_write_to_log = 0.12 s = . 478s TestIntegrationSingle#test_siginfo_thread_print = 0.00 s = S 478s TestIntegrationSingle#test_term_exit_code = 0.11 s = . 478s TestIntegrationSingle#test_int_refuse = 0.11 s = . 478s TestIntegrationSingle#test_conf_is_loaded_before_passing_it_to_binder = … 478s TestPumaServer#test_crlf_trailer_smuggle = 20.22 s = . 478s TestIntegrationSingle#test_term_suppress = … 478s TestIntegrationSingle#test_conf_is_loaded_before_passing_it_to_binder = 0.32 s = . 478s TestIntegrationSingle#test_closed_listener = … 478s TestIntegrationSingle#test_term_suppress = 0.12 s = . 478s TestIntegrationSingle#test_rack_url_scheme_default = … 478s TestIntegrationSingle#test_pre_existing_unix_after_idle_timeout = 1.26 s = . 478s TestIntegrationSingle#test_puma_started_log_writing = … 478s TestIntegrationSingle#test_closed_listener = 0.12 s = . 478s TestConfigFile#test_run_hooks_before_fork = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_escaped_filenames = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_ca = 0.00 s = . 478s TestConfigFile#test_final_options_returns_merged_options = 0.00 s = . 478s TestConfigFile#test_explicit_config_files = 0.00 s = . 478s TestConfigFile#test_app_from_app_DSL = 0.00 s = . 478s TestConfigFile#test_run_hooks_before_thread_exit = 0.00 s = . 478s TestConfigFile#test_run_hooks_on_restart_hook = 0.00 s = . 478s TestConfigFile#test_run_hooks_before_worker_fork = 0.00 s = . 478s TestConfigFile#test_config_files_with_dash = 0.00 s = . 478s TestConfigFile#test_app_from_rackup = Parsing options from the first comment line is deprecated! 478s 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_verification_flags = 0.00 s = . 478s TestConfigFile#test_config_files_with_non_existing_path = 0.00 s = . 478s TestConfigFile#test_config_files_with_integer_convert = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_cert_and_key_pem = 0.00 s = . 478s TestConfigFile#test_silence_fork_callback_warning_default = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_low_latency_true = 0.00 s = . 478s TestConfigFile#test_http_content_length_limit = 0.00 s = . 478s TestConfigFile#test_config_files_with_symbol_convert = 0.00 s = . 478s TestConfigFile#test_ssl_configuration_from_DSL = 0.00 s = . 478s TestConfigFile#test_run_hooks_after_worker_fork = 0.00 s = . 478s TestConfigFile#test_run_hooks_and_exception = 0.00 s = . 478s TestConfigFile#test_ssl_bind_jruby_with_ssl_cipher_list = 0.00 s = S 478s TestConfigFile#test_run_hooks_before_worker_boot = 0.00 s = . 478s TestConfigFile#test_config_files_default = 0.00 s = . 478s TestConfigFile#test_ssl_bind_jruby_with_truststore = 0.00 s = S 478s TestConfigFile#test_ssl_bind_no_tlsv1_1 = 0.00 s = . 478s TestConfigFile#test_config_files_with_float_convert = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_backlog = 0.00 s = . 478s TestConfigFile#test_silence_fork_callback_warning_overwrite = 0.00 s = . 478s TestConfigFile#test_overwrite_options = 0.00 s = . 478s TestConfigFile#test_run_hooks_before_worker_shutdown = 0.00 s = . 478s TestConfigFile#test_config_does_not_load_workers_by_default = 0.00 s = . 478s TestConfigFile#test_silence_single_worker_warning_default = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_cipher_filter = 0.00 s = . 478s TestConfigFile#test_ssl_bind = 0.00 s = . 478s TestConfigFile#test_lowlevel_error_handler_DSL = 0.00 s = . 478s TestConfigFile#test_ssl_self_signed_configuration_from_DSL = 0.00 s = . 478s TestConfigFile#test_default_max_threads = 0.00 s = . 478s TestConfigFile#test_config_files_with_existing_path = 0.00 s = . 478s TestConfigFile#test_allow_users_to_override_default_options = 0.00 s = . 478s TestConfigFile#test_parameters_overwrite_files = 0.00 s = . 478s TestConfigFile#test_silence_single_worker_warning_overwrite = 0.00 s = . 478s TestConfigFile#test_ssl_bind_jruby = 0.00 s = S 478s TestConfigFile#test_run_hooks_before_thread_start = 0.00 s = . 478s TestConfigFile#test_config_raise_exception_on_sigterm = 0.00 s = . 478s TestConfigFile#test_ssl_bind_with_low_latency_false = 0.00 s = . 478s TestPumaServerHijack#test_101_body = 0.00 s = . 478s TestPumaServerHijack#test_partial_hijack_body_closes_body = … 478s TestIntegrationSingle#test_idle_timeout = 1.26 s = . 478s TestPumaServerHijack#test_101_header = 0.00 s = . 478s TestPumaServerHijack#test_partial_hijack_header_closes_body_correct_precedence = … 478s TestIntegrationSingle#test_puma_started_log_writing = 0.20 s = . 478s TestPumaServerHijack#test_full_hijack_body_close = 0.00 s = . 478s TestPumaServerHijack#test_http_10_header_with_content_length = 0.00 s = . 478s TestIntegrationSingle#test_rack_url_scheme_default = 0.32 s = . 478s TestPumaServerHijack#test_partial_hijack_body_closes_body = 0.21 s = . 479s TestPumaServerHijack#test_partial_hijack_header_closes_body_correct_precedence = 0.21 s = . 479s 479s Finished in 53.741758s, 10.7365 runs/s, 29.4185 assertions/s. 479s 479s Skips: 479s ───────────────────────────────────────────────────────── SSLv3 protocol is unavailable ── 479s test_puma_server_ssl.rb 479s 1) :119 TestPumaServerSSL test_ssl_v3_rejection 479s 479s ─────────────────────────── Signal INFO isn't available on the s390x-linux-gnu platform ── 479s test_integration_single.rb 479s 2) :149 TestIntegrationSingle test_siginfo_thread_print 479s 479s ───────────────────────────────────────────────────────────────────── Skip unless JRuby ── 479s test_config.rb 479s 3) :191 TestConfigFile test_ssl_bind_jruby 479s 4) :215 TestConfigFile test_ssl_bind_jruby_with_ssl_cipher_list 479s 5) :238 TestConfigFile test_ssl_bind_jruby_with_truststore 479s 479s test_plugin_systemd_jruby.rb 479s 6) :28 TestPluginSystemdJruby test_systemd_plugin_not_loaded 479s 479s ─────────────────────────────────────────────────────────────────── Skipped w/o Bundler ── 479s test_bundle_pruner.rb 479s 7) :9 TestBundlePruner test_paths_to_require_after_prune_is_correctly_built_for_no_extra_deps 479s 8) :20 TestBundlePruner test_paths_to_require_after_prune_is_correctly_built_with_extra_deps 479s 9) :35 TestBundlePruner test_extra_runtime_deps_paths_is_correctly_built 479s 10) :44 TestBundlePruner test_puma_wild_path_is_an_absolute_path 479s 479s 479s 577 runs, 1581 assertions, 0 failures, 0 errors, 10 skips 479s mv ./.gem2deb.lib lib 479s mv ./.gem2deb.ext ext 479s /tmp/autopkgtest.Jk3i0M/wrapper.sh: checking for leaked background processes... 479s /tmp/autopkgtest.Jk3i0M/wrapper.sh: waiting for tee/cat subprocesses... 479s /tmp/autopkgtest.Jk3i0M/wrapper.sh: cleaning up... 479s /tmp/autopkgtest.Jk3i0M/wrapper.sh: Exit status: 0 479s autopkgtest: DBG: testbed command exited with code 0 479s autopkgtest [14:46:25]: test gem2deb-test-runner: -----------------------] 479s autopkgtest: DBG: testbed executing test finished with exit status 0 479s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stdout /tmp/autopkgtest-work.ibw0w_bs/out/gem2deb-test-runner-stdout 479s autopkgtest: DBG: got reply from testbed: ok 479s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-stderr /tmp/autopkgtest-work.ibw0w_bs/out/gem2deb-test-runner-stderr 480s autopkgtest: DBG: got reply from testbed: ok 480s autopkgtest [14:46:26]: test gem2deb-test-runner: - - - - - - - - - - results - - - - - - - - - - 480s gem2deb-test-runner PASS 480s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-artifacts/ /tmp/autopkgtest-work.ibw0w_bs/out/artifacts/ 480s autopkgtest: DBG: got reply from testbed: ok 480s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Jk3i0M/gem2deb-test-runner-artifacts', '/tmp/autopkgtest.Jk3i0M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 480s autopkgtest: DBG: testbed command exited with code 0 480s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 480s autopkgtest [14:46:26]: @@@@@@@@@@@@@@@@@@@@ summary 480s gem2deb-test-runner PASS 480s autopkgtest: DBG: testbed stop 480s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.Jk3i0M 480s autopkgtest: DBG: sending command to testbed: close 497s autopkgtest: DBG: got reply from testbed: ok 497s autopkgtest: DBG: sending command to testbed: quit 497s nova [W] Using flock in prodstack6-s390x 497s Creating nova instance adt-plucky-s390x-puma-20250207-143826-juju-7f2275-prod-proposed-migration-environment-15-0f08b834-9b4a-4fdb-8124-e66a61c57ef4 from image adt/ubuntu-plucky-s390x-server-20250207.img (UUID e3aa55f2-b1ba-4605-b146-c2987438f3dd)... 497s nova [W] Timed out waiting for 3a5365e8-30a2-4fe3-94b1-27c8893ac1a0 to get deleted.