0s autopkgtest: DBG: testbed init 0s autopkgtest [12:03:03]: starting date and time: 2025-02-19 12:03:03+0000 0s autopkgtest [12:03:03]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:03:03]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.yw5cwa02/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade fenics-basix --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-13.secgroup --name adt-plucky-s390x-fenics-basix-20250219-120303-juju-7f2275-prod-proposed-migration-environment-15-2a77fc8b-c076-4cb5-b13a-054c9e77e384 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.AsYqrb 108s autopkgtest: DBG: sending command to testbed: print-execute-command 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.132u_ucl/runcmd 108s autopkgtest: DBG: sending command to testbed: capabilities 108s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine reboot suggested-normal-user=ubuntu revert-full-system root-on-testbed 108s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'reboot', 'suggested-normal-user=ubuntu', 'revert-full-system', 'root-on-testbed', 'has_internet'] 108s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.AsYqrb/wrapper.sh 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/wrapper.sh'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:04:52]: testbed dpkg architecture: s390x 109s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:04:52]: testbed apt version: 2.9.30 109s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed has eatmydata 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:04:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:04:52]: testbed release detected to be: None 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT source: Types: deb deb-src 110s URIs: http://ftpmaster.internal/ubuntu/ 110s Suites: plucky-proposed 110s Components: main restricted universe multiverse 110s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 500 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [12:04:53]: updating testbed package index (apt update) 110s 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'] 110s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 111s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 111s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 112s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 100 112s 112s Package: src:sphinx:any 112s Pin: release plucky-proposed 112s Pin-Priority: 995 112s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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.AsYqrb/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 112s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 112s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 112s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 112s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 112s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 112s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 112s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 112s Fetched 1700 kB in 1s (1782 kB/s) 112s Reading package lists... 112s autopkgtest: DBG: testbed command exited with code 0 112s 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'] 112s + lsb_release --codename --short 112s + RELEASE=plucky 112s + cat 112s + [ plucky != trusty ] 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 113s Calculating upgrade... 113s The following packages were automatically installed and are no longer required: 113s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 113s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 113s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 113s linux-tools-6.11.0-8-generic 113s Use 'sudo apt autoremove' to remove them. 113s The following packages will be upgraded: 113s iproute2 liblsof0 libp11-kit0 lsof 113s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s Need to get 1791 kB of archives. 113s After this operation, 17.4 kB of additional disk space will be used. 113s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 113s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 114s Preconfiguring packages ... 114s Fetched 1791 kB in 1s (2702 kB/s) 114s (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 ... 81030 files and directories currently installed.) 114s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 114s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 114s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 114s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 114s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 114s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 114s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 114s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 114s Setting up liblsof0 (4.99.4+dfsg-1) ... 114s Setting up iproute2 (6.13.0-1ubuntu1) ... 114s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 114s Setting up lsof (4.99.4+dfsg-1) ... 114s Processing triggers for man-db (2.13.0-1) ... 114s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 115s + /usr/lib/apt/apt-helper analyze-pattern ?true 115s + uname -r 115s + sed s/\./\\./g 115s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 115s + apt list ?obsolete 115s + + tail -n+2 115s cut -d/ -f1 115s + grep -v ^linux-.*6\.12\.0-15-generic.* 115s + true 115s + obsolete_pkgs= 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s The following packages will be REMOVED: 115s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 115s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 115s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 115s linux-tools-6.11.0-8-generic* 115s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 115s After this operation, 167 MB disk space will be freed. 115s (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 ... 81031 files and directories currently installed.) 115s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 115s Removing libpython3.12t64:s390x (3.12.9-1) ... 115s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 115s Removing libnsl2:s390x (1.3.0-3build3) ... 115s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 115s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 116s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 116s Processing triggers for libc-bin (2.40-4ubuntu1) ... 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 116s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 116s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s + grep -q trusty /etc/lsb-release 117s + [ ! -d /usr/share/doc/unattended-upgrades ] 117s + [ ! -d /usr/share/doc/lxd ] 117s + [ ! -d /usr/share/doc/lxd-client ] 117s + [ ! -d /usr/share/doc/snapd ] 117s + type iptables 117s + cat 117s + chmod 755 /etc/rc.local 117s + . /etc/rc.local 117s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 117s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 117s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 117s + uname -m 117s + [ s390x = ppc64le ] 117s + [ -d /run/systemd/system ] 117s + systemd-detect-virt --quiet --vm 117s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 117s + cat 117s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 117s + echo COMPRESS=lz4 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [12:05:00]: upgrading testbed (apt dist-upgrade and autopurge) 117s 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'] 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 117s Starting 2 pkgProblemResolver with broken count: 0 117s Done 117s Entering ResolveByKeep 117s 117s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 118s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.AsYqrb/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 1 118s autopkgtest [12:05:01]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 122s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest [12:05:21]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 138s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AsYqrb/testbed-packages"], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/testbed-packages /tmp/autopkgtest-work.yw5cwa02/out/testbed-packages 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: Binaries: initialising 140s autopkgtest [12:05:23]: @@@@@@@@@@@@@@@@@@@@ apt-source fenics-basix 140s autopkgtest: DBG: blame += fenics-basix 140s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 140s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'fenics-basix'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^basix-doc$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'basix-doc=0.9.0-2build1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-basix$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-basix=0.9.0-2build1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libbasix-dev$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libbasix-dev=0.9.0-2build1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libbasix0\\.9$'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libbasix0.9=0.9.0-2build1'], kind short, sout pipe, serr raw, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: install_deps: deps_new=[] 142s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s 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.AsYqrb/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source fenics-basix=0.9.0-2build1 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 fenics-basix_*.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=sphinx/8.1.3-5'] 142s + cd / 142s + mktemp -d /tmp/autopkgtest.AsYqrb/build.XXX 142s + builddir=/tmp/autopkgtest.AsYqrb/build.Pgs 142s + cd /tmp/autopkgtest.AsYqrb/build.Pgs 142s + apt-get source -d -q --only-source fenics-basix=0.9.0-2build1 143s + OUT=Reading package lists... 143s NOTICE: 'fenics-basix' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/science-team/fenics/fenics-basix.git 143s Please use: 143s git clone https://salsa.debian.org/science-team/fenics/fenics-basix.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 653 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (dsc) [2895 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (tar) [639 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (diff) [10.5 kB] 143s Fetched 653 kB in 1s (1173 kB/s) 143s Download complete and in download only mode 143s + [ -n ] 143s + echo Reading package lists... 143s NOTICE: 'fenics-basix' packaging is maintained in the 'Git' version control system at: 143s https://salsa.debian.org/science-team/fenics/fenics-basix.git 143s Please use: 143s git clone https://salsa.debian.org/science-team/fenics/fenics-basix.git 143s to retrieve the latest (possibly unreleased) updates to the package. 143s Need to get 653 kB of source archives. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (dsc) [2895 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (tar) [639 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (diff) [10.5 kB] 143s Fetched 653 kB in 1s (1173 kB/s) 143s Download complete and in download only mode 143s + grep ^Get: 143s Get:1 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (dsc) [2895 B] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (tar) [639 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/universe fenics-basix 0.9.0-2build1 (diff) [10.5 kB] 143s + dpkg-source -x fenics-basix_0.9.0-2build1.dsc src 143s gpgv: Signature made Fri Nov 15 03:38:59 2024 UTC 143s gpgv: using RSA key 568BF22A66337CBFC9A6B9B72C83DBC8E9BD0E37 143s gpgv: Can't check signature: No public key 143s dpkg-source: warning: cannot verify inline signature for ./fenics-basix_0.9.0-2build1.dsc: no acceptable signature found 143s + chmod -R a+rX . 143s + cd src/. 143s + pwd 143s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [12:05:26]: testing package fenics-basix version 0.9.0-2build1 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/build.Pgs/src/debian/ /tmp/autopkgtest-work.yw5cwa02/out/pkg/debian/ 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: autodep8 generated control: ----- 143s Tests: run-tests, 143s # gcc is not really used, but added to silence the dpkg-architecture warning 143s # cannot determine CC system type, falling back to default (native compilation) 143s Depends: python3-basix, 143s python3-all, 143s python3-pytest, 143s python3-ufl, 143s python3-numpy, 143s python3-sympy, 143s gcc 143s 143s 143s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done 143s Depends: python3-all, python3-basix, 143s Restrictions: allow-stderr, superficial, 143s Features: test-name=autodep8-python3 143s 143s 143s ------- 144s autopkgtest: DBG: processing dependency python3-basix 144s autopkgtest: DBG: marked alternatives ['python3-basix'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-pytest 144s autopkgtest: DBG: processing dependency python3-ufl 144s autopkgtest: DBG: processing dependency python3-numpy 144s autopkgtest: DBG: processing dependency python3-sympy 144s autopkgtest: DBG: processing dependency gcc 144s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-basix', 'python3-all', 'python3-pytest', 'python3-ufl', 'python3-numpy', 'python3-sympy', 'gcc'] 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-basix 144s autopkgtest: DBG: marked alternatives ['python3-basix'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-basix'] 144s autopkgtest [12:05:27]: build not needed 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/build.Pgs/src/ /tmp/autopkgtest-work.yw5cwa02/out/tests-tree/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: autodep8 generated control: ----- 144s Tests: run-tests, 144s # gcc is not really used, but added to silence the dpkg-architecture warning 144s # cannot determine CC system type, falling back to default (native compilation) 144s Depends: python3-basix, 144s python3-all, 144s python3-pytest, 144s python3-ufl, 144s python3-numpy, 144s python3-sympy, 144s gcc 144s 144s 144s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done 144s Depends: python3-all, python3-basix, 144s Restrictions: allow-stderr, superficial, 144s Features: test-name=autodep8-python3 144s 144s 144s ------- 144s autopkgtest: DBG: processing dependency python3-basix 144s autopkgtest: DBG: marked alternatives ['python3-basix'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-pytest 144s autopkgtest: DBG: processing dependency python3-ufl 144s autopkgtest: DBG: processing dependency python3-numpy 144s autopkgtest: DBG: processing dependency python3-sympy 144s autopkgtest: DBG: processing dependency gcc 144s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-basix', 'python3-all', 'python3-pytest', 'python3-ufl', 'python3-numpy', 'python3-sympy', 'gcc'] 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-basix 144s autopkgtest: DBG: marked alternatives ['python3-basix'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-basix'] 144s autopkgtest [12:05:27]: test run-tests: preparing testbed 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-basix', 'python3-all', 'python3-pytest', 'python3-ufl', 'python3-numpy', 'python3-sympy', 'gcc'] 144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 144s autopkgtest: DBG: install_deps: deps_new=['python3-basix', 'python3-all', 'python3-pytest', 'python3-ufl', 'python3-numpy', 'python3-sympy', 'gcc'] 144s autopkgtest: DBG: install-deps: satisfying python3-basix, python3-all, python3-pytest, python3-ufl, python3-numpy, python3-sympy, gcc 144s autopkgtest: DBG: can use apt-get on testbed: True 144s 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', 'python3-basix, python3-all, python3-pytest, python3-ufl, python3-numpy, python3-sympy, gcc'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 145s Reading package lists... 145s Building dependency tree... 145s Reading state information... 145s Starting pkgProblemResolver with broken count: 0 145s Starting 2 pkgProblemResolver with broken count: 0 145s Done 145s The following NEW packages will be installed: 145s cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu gcc gcc-14 145s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libbasix-dev libbasix0.9 145s libblas3 libcc1-0 libeigen3-dev libgcc-14-dev libgfortran5 libgomp1 libisl23 145s libitm1 liblapack3 libmpc3 libnsl2 libpkgconf3 libpython3.12-minimal 145s libpython3.12-stdlib libubsan1 pkg-config pkgconf pkgconf-bin python3-all 145s python3-basix python3-iniconfig python3-mpmath python3-numpy 145s python3-packaging python3-pluggy python3-pytest python3-sympy python3-ufl 145s python3.12 python3.12-minimal 145s 0 upgraded, 41 newly installed, 0 to remove and 0 not upgraded. 145s Need to get 56.5 MB of archives. 145s After this operation, 213 MB of additional disk space will be used. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 147s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 147s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 147s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 147s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 147s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 147s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 148s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 149s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 149s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 149s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 150s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 150s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 150s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libbasix0.9 s390x 0.9.0-2build1 [537 kB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x pkg-config s390x 1.8.1-4 [7362 B] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libeigen3-dev all 3.4.0-4build1 [1055 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x libbasix-dev s390x 0.9.0-2build1 [62.2 kB] 150s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 150s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 150s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufl all 2024.2.0-2 [145 kB] 150s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-basix s390x 0.9.0-2build1 [136 kB] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 150s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 150s Fetched 56.5 MB in 5s (11.4 MB/s) 150s Selecting previously unselected package libpython3.12-minimal:s390x. 151s (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 ... 55929 files and directories currently installed.) 151s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 151s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 151s Selecting previously unselected package python3.12-minimal. 151s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 151s Unpacking python3.12-minimal (3.12.9-1) ... 151s Selecting previously unselected package libnsl2:s390x. 151s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 151s Unpacking libnsl2:s390x (1.3.0-3build3) ... 151s Selecting previously unselected package libpython3.12-stdlib:s390x. 151s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 151s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 151s Selecting previously unselected package python3.12. 151s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 151s Unpacking python3.12 (3.12.9-1) ... 151s Selecting previously unselected package libisl23:s390x. 151s Preparing to unpack .../05-libisl23_0.27-1_s390x.deb ... 151s Unpacking libisl23:s390x (0.27-1) ... 151s Selecting previously unselected package libmpc3:s390x. 151s Preparing to unpack .../06-libmpc3_1.3.1-1build2_s390x.deb ... 151s Unpacking libmpc3:s390x (1.3.1-1build2) ... 151s Selecting previously unselected package cpp-14-s390x-linux-gnu. 151s Preparing to unpack .../07-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package cpp-14. 151s Preparing to unpack .../08-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package cpp-s390x-linux-gnu. 151s Preparing to unpack .../09-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 151s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 151s Selecting previously unselected package cpp. 151s Preparing to unpack .../10-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 151s Unpacking cpp (4:14.2.0-1ubuntu1) ... 151s Selecting previously unselected package libcc1-0:s390x. 151s Preparing to unpack .../11-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 151s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 151s Selecting previously unselected package libgomp1:s390x. 151s Preparing to unpack .../12-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 151s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 151s Selecting previously unselected package libitm1:s390x. 151s Preparing to unpack .../13-libitm1_15-20250213-1ubuntu1_s390x.deb ... 151s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 151s Selecting previously unselected package libasan8:s390x. 151s Preparing to unpack .../14-libasan8_15-20250213-1ubuntu1_s390x.deb ... 151s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 151s Selecting previously unselected package libubsan1:s390x. 151s Preparing to unpack .../15-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 151s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 151s Selecting previously unselected package libgcc-14-dev:s390x. 151s Preparing to unpack .../16-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package gcc-14-s390x-linux-gnu. 151s Preparing to unpack .../17-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package gcc-14. 151s Preparing to unpack .../18-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package gcc-s390x-linux-gnu. 151s Preparing to unpack .../19-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 151s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 151s Selecting previously unselected package gcc. 151s Preparing to unpack .../20-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 151s Unpacking gcc (4:14.2.0-1ubuntu1) ... 151s Selecting previously unselected package libblas3:s390x. 151s Preparing to unpack .../21-libblas3_3.12.1-2_s390x.deb ... 151s Unpacking libblas3:s390x (3.12.1-2) ... 151s Selecting previously unselected package libgfortran5:s390x. 151s Preparing to unpack .../22-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 151s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 151s Selecting previously unselected package liblapack3:s390x. 151s Preparing to unpack .../23-liblapack3_3.12.1-2_s390x.deb ... 151s Unpacking liblapack3:s390x (3.12.1-2) ... 152s Selecting previously unselected package libbasix0.9:s390x. 152s Preparing to unpack .../24-libbasix0.9_0.9.0-2build1_s390x.deb ... 152s Unpacking libbasix0.9:s390x (0.9.0-2build1) ... 152s Selecting previously unselected package libpkgconf3:s390x. 152s Preparing to unpack .../25-libpkgconf3_1.8.1-4_s390x.deb ... 152s Unpacking libpkgconf3:s390x (1.8.1-4) ... 152s Selecting previously unselected package pkgconf-bin. 152s Preparing to unpack .../26-pkgconf-bin_1.8.1-4_s390x.deb ... 152s Unpacking pkgconf-bin (1.8.1-4) ... 152s Selecting previously unselected package pkgconf:s390x. 152s Preparing to unpack .../27-pkgconf_1.8.1-4_s390x.deb ... 152s Unpacking pkgconf:s390x (1.8.1-4) ... 152s Selecting previously unselected package pkg-config:s390x. 152s Preparing to unpack .../28-pkg-config_1.8.1-4_s390x.deb ... 152s Unpacking pkg-config:s390x (1.8.1-4) ... 152s Selecting previously unselected package libeigen3-dev. 152s Preparing to unpack .../29-libeigen3-dev_3.4.0-4build1_all.deb ... 152s Unpacking libeigen3-dev (3.4.0-4build1) ... 152s Selecting previously unselected package libbasix-dev:s390x. 152s Preparing to unpack .../30-libbasix-dev_0.9.0-2build1_s390x.deb ... 152s Unpacking libbasix-dev:s390x (0.9.0-2build1) ... 152s Selecting previously unselected package python3-all. 152s Preparing to unpack .../31-python3-all_3.13.1-1~exp2_s390x.deb ... 152s Unpacking python3-all (3.13.1-1~exp2) ... 152s Selecting previously unselected package python3-numpy. 152s Preparing to unpack .../32-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 152s Unpacking python3-numpy (1:1.26.4+ds-13) ... 152s Selecting previously unselected package python3-ufl. 152s Preparing to unpack .../33-python3-ufl_2024.2.0-2_all.deb ... 152s Unpacking python3-ufl (2024.2.0-2) ... 152s Selecting previously unselected package python3-basix. 152s Preparing to unpack .../34-python3-basix_0.9.0-2build1_s390x.deb ... 152s Unpacking python3-basix (0.9.0-2build1) ... 152s Selecting previously unselected package python3-iniconfig. 152s Preparing to unpack .../35-python3-iniconfig_1.1.1-2_all.deb ... 152s Unpacking python3-iniconfig (1.1.1-2) ... 152s Selecting previously unselected package python3-mpmath. 152s Preparing to unpack .../36-python3-mpmath_1.3.0-1_all.deb ... 152s Unpacking python3-mpmath (1.3.0-1) ... 152s Selecting previously unselected package python3-packaging. 152s Preparing to unpack .../37-python3-packaging_24.2-1_all.deb ... 152s Unpacking python3-packaging (24.2-1) ... 152s Selecting previously unselected package python3-pluggy. 152s Preparing to unpack .../38-python3-pluggy_1.5.0-1_all.deb ... 152s Unpacking python3-pluggy (1.5.0-1) ... 152s Selecting previously unselected package python3-pytest. 152s Preparing to unpack .../39-python3-pytest_8.3.4-1_all.deb ... 152s Unpacking python3-pytest (8.3.4-1) ... 152s Selecting previously unselected package python3-sympy. 152s Preparing to unpack .../40-python3-sympy_1.13.3-1_all.deb ... 152s Unpacking python3-sympy (1.13.3-1) ... 152s Setting up python3-iniconfig (1.1.1-2) ... 152s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 152s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 152s Setting up libblas3:s390x (3.12.1-2) ... 152s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 152s Setting up python3-packaging (24.2-1) ... 153s Setting up libpkgconf3:s390x (1.8.1-4) ... 153s Setting up libmpc3:s390x (1.3.1-1build2) ... 153s Setting up pkgconf-bin (1.8.1-4) ... 153s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 153s Setting up python3-pluggy (1.5.0-1) ... 153s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 153s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 153s Setting up libnsl2:s390x (1.3.0-3build3) ... 153s Setting up python3-mpmath (1.3.0-1) ... 153s Setting up libisl23:s390x (0.27-1) ... 153s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 153s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 153s Setting up python3-sympy (1.13.3-1) ... 166s Setting up python3.12-minimal (3.12.9-1) ... 166s Setting up liblapack3:s390x (3.12.1-2) ... 166s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 166s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 166s Setting up python3-pytest (8.3.4-1) ... 167s Setting up python3.12 (3.12.9-1) ... 168s Setting up python3-all (3.13.1-1~exp2) ... 168s Setting up pkgconf:s390x (1.8.1-4) ... 168s Setting up libeigen3-dev (3.4.0-4build1) ... 168s Setting up pkg-config:s390x (1.8.1-4) ... 168s Setting up python3-numpy (1:1.26.4+ds-13) ... 171s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 171s Setting up cpp-14 (14.2.0-17ubuntu1) ... 171s Setting up libbasix0.9:s390x (0.9.0-2build1) ... 171s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 171s Setting up libbasix-dev:s390x (0.9.0-2build1) ... 171s Setting up python3-ufl (2024.2.0-2) ... 172s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 172s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 172s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 172s Setting up cpp (4:14.2.0-1ubuntu1) ... 172s Setting up python3-basix (0.9.0-2build1) ... 172s Setting up gcc-14 (14.2.0-17ubuntu1) ... 172s Setting up gcc (4:14.2.0-1ubuntu1) ... 172s Processing triggers for systemd (257.2-3ubuntu1) ... 172s Processing triggers for man-db (2.13.0-1) ... 172s Processing triggers for libc-bin (2.40-4ubuntu1) ... 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-basix'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AsYqrb/run-tests-packages.all"], kind short, sout raw, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/run-tests-packages.all /tmp/autopkgtest-work.yw5cwa02/out/run-tests-packages.all 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.AsYqrb/build.Pgs/src'], kind short, sout raw, serr raw, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.AsYqrb/build.Pgs/src already exists 173s autopkgtest [12:05:56]: test run-tests: [----------------------- 173s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.AsYqrb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.AsYqrb/run-tests-artifacts --chdir=/tmp/autopkgtest.AsYqrb/build.Pgs/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.AsYqrb/run-tests-stderr --stdout=/tmp/autopkgtest.AsYqrb/run-tests-stdout --tmp=/tmp/autopkgtest.AsYqrb/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.AsYqrb/build.Pgs/src/debian/tests/run-tests -- /tmp/autopkgtest.AsYqrb/build.Pgs/src/debian/tests/run-tests'], kind test, sout raw, serr raw, env [] 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.AsYqrb/run-tests-artifacts 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: changing to directory: /tmp/autopkgtest.AsYqrb/build.Pgs/src 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: LANG=C.UTF-8 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LANGUAGE 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_ADDRESS 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_ALL 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_COLLATE 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_CTYPE 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_MEASUREMENT 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_MESSAGES 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_MONETARY 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_NAME 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_NUMERIC 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_PAPER 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_TELEPHONE 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_TIME 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: pretending to be a login shell 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: will write standard error to /tmp/autopkgtest.AsYqrb/run-tests-stderr 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: will write stdout to /tmp/autopkgtest.AsYqrb/run-tests-stdout 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.AsYqrb/autopkgtest_tmp 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: marking as executable: /tmp/autopkgtest.AsYqrb/build.Pgs/src/debian/tests/run-tests 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: command to run: /tmp/autopkgtest.AsYqrb/build.Pgs/src/debian/tests/run-tests 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: copying /tmp/tmp.iVC9Z5mMeT/out to stdout and file: /tmp/autopkgtest.AsYqrb/run-tests-stdout 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: copying /tmp/tmp.iVC9Z5mMeT/err to standard error and file: /tmp/autopkgtest.AsYqrb/run-tests-stdout 174s /tmp/autopkgtest.AsYqrb/wrapper.sh: writing script pid 1880 to /tmp/autopkgtest_script_pid 174s skipping tests with SKIP_TEST_LIST=numba 175s ============================= test session starts ============================== 175s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 175s rootdir: /tmp/autopkgtest.AsYqrb/build.Pgs/src 175s configfile: pyproject.toml 175s plugins: typeguard-4.4.1 175s collected 9988 items / 72 deselected / 9916 selected 175s 176s test/test_bernstein.py .............................. [ 0%] 176s test/test_cell.py .............................. [ 0%] 176s test/test_continuity.py ...........s..ss...s..ssssssssssss..ssssssssssss [ 1%] 176s ........ssssssssssssssssssssssssssssssssssssssss........ssssssssssssssss [ 1%] 177s ssssssssssssssssssssssss [ 2%] 177s test/test_create.py .................................................... [ 2%] 177s ........................................................................ [ 3%] 177s ........................................................................ [ 4%] 177s ........................................................................ [ 4%] 177s ........................................................................ [ 5%] 177s ........................................................................ [ 6%] 177s ........................................................................ [ 6%] 177s ........................................................................ [ 7%] 178s ........................................................................ [ 8%] 178s ........................................................................ [ 9%] 178s ........................................................................ [ 9%] 178s ........................................................................ [ 10%] 179s ........................................................................ [ 11%] 179s ........................................................................ [ 12%] 179s ........................................................................ [ 12%] 179s ........................................................................ [ 13%] 179s ........................................................................ [ 14%] 179s ........................................................................ [ 14%] 180s ........................................................................ [ 15%] 180s ........................................................................ [ 16%] 180s ........................................................................ [ 17%] 180s ........................................................................ [ 17%] 180s ........................................................................ [ 18%] 180s ........................................................................ [ 19%] 180s ........................................................................ [ 20%] 180s ........................................................................ [ 20%] 180s ........................................................................ [ 21%] 181s ........................................................................ [ 22%] 181s ........................................................................ [ 22%] 181s ........................................................................ [ 23%] 181s ........................................................................ [ 24%] 181s ........................................................................ [ 25%] 181s ........................................................................ [ 25%] 181s ........................................................................ [ 26%] 181s ........................................................................ [ 27%] 181s ........................................................................ [ 27%] 181s ........................................................................ [ 28%] 181s ........................................................................ [ 29%] 181s ........................................................................ [ 30%] 181s ........................................................................ [ 30%] 181s ........................................................................ [ 31%] 181s ........................................................................ [ 32%] 181s ........................................................................ [ 33%] 181s ........................................................................ [ 33%] 181s ........................................................................ [ 34%] 181s ........................................................................ [ 35%] 181s ........................................................................ [ 35%] 181s ........................................................................ [ 36%] 182s ........................................................................ [ 37%] 182s ........................................................................ [ 38%] 182s ........................................................................ [ 38%] 182s ........................................................................ [ 39%] 182s ........................................................................ [ 40%] 182s ........................................................................ [ 41%] 182s ........................................................................ [ 41%] 182s ........................................................................ [ 42%] 182s ........................................................................ [ 43%] 182s ........................................................................ [ 43%] 182s ........................................................................ [ 44%] 182s ........................................................................ [ 45%] 182s ........................................................................ [ 46%] 182s ........................................................................ [ 46%] 182s ........................................................................ [ 47%] 182s ........................................................................ [ 48%] 182s ........................................................................ [ 49%] 183s ............................................... [ 49%] 183s test/test_custom_element.py ......................... [ 49%] 183s test/test_dof_ordering.py . [ 49%] 183s test/test_dof_transformations.py ....................................... [ 50%] 184s ........................................................................ [ 50%] 188s ........................................................................ [ 51%] 188s ........................................................................ [ 52%] 188s ........................................................................ [ 53%] 188s ........................................................................ [ 53%] 188s ........................................................................ [ 54%] 189s ........................................................................ [ 55%] 194s ........................................................................ [ 55%] 215s ........................................................................ [ 56%] 215s ........................................................................ [ 57%] 215s ........................................................................ [ 58%] 216s ........................................................................ [ 58%] 235s ........................................................................ [ 59%] 238s ........................................................................ [ 60%] 238s ........................................................................ [ 61%] 239s ........................................................................ [ 61%] 241s ........................................................................ [ 62%] 337s ........................................................................ [ 63%] 337s ........................................................................ [ 63%] 338s ........................................................................ [ 64%] 339s ............................................................. [ 65%] 339s test/test_elements.py ............................ [ 65%] 339s test/test_entity_dofs.py ............................................... [ 66%] 340s ........................................................................ [ 66%] 340s ........................................................................ [ 67%] 341s ........................................................................ [ 68%] 341s ........................................................................ [ 68%] 341s ........................................................................ [ 69%] 342s ........................................................................ [ 70%] 342s ........................................................................ [ 71%] 342s ........................................................................ [ 71%] 342s ........................................................................ [ 72%] 343s .......................................................... [ 73%] 343s test/test_equality.py ........... [ 73%] 345s test/test_hermite.py ... [ 73%] 345s test/test_interpolation.py ............................................. [ 73%] 345s ........................................................................ [ 74%] 345s ........................................................................ [ 75%] 348s ...x.x.................................................................. [ 75%] 363s ...............................xxxxxxxx................................. [ 76%] 363s ........................................................................ [ 77%] 363s ........................................................................ [ 78%] 365s ........................................................................ [ 78%] 365s ...................... [ 79%] 365s test/test_interpolation_between_elements.py ............................ [ 79%] 365s ........................................................................ [ 80%] 366s ........................................................................ [ 80%] 367s ........................................................................ [ 81%] 369s ........................................................................ [ 82%] 369s .........................xxx............................................ [ 83%] 370s .................xxx.................................................... [ 83%] 395s ........................................................................ [ 84%] 501s ........................................................................ [ 85%] 501s ................. [ 85%] 502s test/test_iso.py ..............xx.. [ 85%] 513s test/test_lagrange.py .................................................. [ 86%] 513s ........................................................................ [ 86%] 513s ........................................................................ [ 87%] 513s ........................................................................ [ 88%] 513s ........................................................................ [ 88%] 514s ........... [ 89%] 514s test/test_lattice.py ............................ [ 89%] 514s test/test_mappings.py ..............x [ 89%] 527s test/test_nedelec.py ...... [ 89%] 535s test/test_nedelec_second_kind.py ..... [ 89%] 535s test/test_orthonormal_basis.py ......................................... [ 90%] 593s ..............x...xx...xx.. [ 90%] 603s test/test_orthonormal_basis_symbolic.py .. [ 90%] 616s test/test_polynomials.py ............................................. [ 90%] 616s test/test_quadrature.py ................................................ [ 91%] 620s ........................................................................ [ 91%] 634s ............................................ [ 92%] 634s test/test_regge.py ...... [ 92%] 643s test/test_rt.py ...... [ 92%] 643s test/test_tensor_products.py sss..ssssssss....ssssssssssssssssssssssssss [ 92%] 643s sssssssssssssssssssssssssss..ssssssss....sssssssssssssssssssssssssssssss [ 93%] 643s ssssssssssssssssssss..ssssssss....ssssssssssssssssssssssssssssssssssssss [ 94%] 643s ssssssssssssssss....ssssssssssssssssssssssssssssssssssssssssssss........ [ 95%] 643s ..................... [ 95%] 643s test/test_ufl_wrapper.py ............................................... [ 95%] 643s ........................................................................ [ 96%] 643s .................................. [ 96%] 643s test/test_version.py .. [ 96%] 643s test/test_wcoeffs.py ................................................... [ 97%] 645s ........................................................................ [ 98%] 656s ........................................................................ [ 98%] 667s ..................ss.................................................... [ 99%] 686s ss.................................... [100%] 686s 686s ============================= slowest 20 durations ============================= 686s 51.98s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-5-element_args268] 686s 51.25s call test/test_orthonormal_basis.py::test_macroedge[4-CellType.hexahedron] 686s 49.16s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-5-element_args267] 686s 40.00s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-5-element_args60] 686s 39.41s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-5-element_args59] 686s 9.80s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-4-element_args213] 686s 9.79s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-4-element_args214] 686s 8.23s call test/test_dof_transformations.py::test_non_zero[CellType.hexahedron-ElementFamily.iso-5-element_args267] 686s 8.23s call test/test_nedelec.py::test_tet[3] 686s 8.01s call test/test_dof_transformations.py::test_non_zero[CellType.hexahedron-ElementFamily.iso-5-element_args268] 686s 7.44s call test/test_interpolation.py::test_interpolation_matrix[CellType.hexahedron-ElementFamily.iso-5-element_args268] 686s 7.32s call test/test_interpolation.py::test_interpolation_matrix[CellType.hexahedron-ElementFamily.iso-5-element_args267] 686s 7.29s call test/test_orthonormal_basis_symbolic.py::test_symbolic_quad 686s 7.01s call test/test_dof_transformations.py::test_apply_right[CellType.hexahedron-ElementFamily.iso-5-element_args268] 686s 6.76s call test/test_rt.py::test_tet[3] 686s 6.72s call test/test_dof_transformations.py::test_apply_right[CellType.hexahedron-ElementFamily.iso-5-element_args267] 686s 6.55s call test/test_wcoeffs.py::test_orthonormal[CellType.hexahedron-ElementFamily.N1E-5-element_args281] 686s 5.86s call test/test_orthonormal_basis.py::test_macroedge[3-CellType.hexahedron] 686s 5.80s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-4-element_args46] 686s 5.69s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-4-element_args47] 686s === 9551 passed, 341 skipped, 72 deselected, 24 xfailed in 512.20s (0:08:32) === 688s ============================= test session starts ============================== 688s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 688s rootdir: /tmp/autopkgtest.AsYqrb/build.Pgs/src 688s configfile: pyproject.toml 688s plugins: typeguard-4.4.1 688s collected 9988 items / 72 deselected / 9916 selected 688s 689s test/test_bernstein.py .............................. [ 0%] 689s test/test_cell.py .............................. [ 0%] 689s test/test_continuity.py ...........s..ss...s..ssssssssssss..ssssssssssss [ 1%] 689s ........ssssssssssssssssssssssssssssssssssssssss........ssssssssssssssss [ 1%] 689s ssssssssssssssssssssssss [ 2%] 689s test/test_create.py .................................................... [ 2%] 689s ........................................................................ [ 3%] 689s ........................................................................ [ 4%] 689s ........................................................................ [ 4%] 689s ........................................................................ [ 5%] 689s ........................................................................ [ 6%] 689s ........................................................................ [ 6%] 690s ........................................................................ [ 7%] 691s ........................................................................ [ 8%] 691s ........................................................................ [ 9%] 691s ........................................................................ [ 9%] 691s ........................................................................ [ 10%] 691s ........................................................................ [ 11%] 691s ........................................................................ [ 12%] 691s ........................................................................ [ 12%] 691s ........................................................................ [ 13%] 691s ........................................................................ [ 14%] 691s ........................................................................ [ 14%] 692s ........................................................................ [ 15%] 692s ........................................................................ [ 16%] 692s ........................................................................ [ 17%] 692s ........................................................................ [ 17%] 692s ........................................................................ [ 18%] 693s ........................................................................ [ 19%] 693s ........................................................................ [ 20%] 693s ........................................................................ [ 20%] 693s ........................................................................ [ 21%] 693s ........................................................................ [ 22%] 693s ........................................................................ [ 22%] 693s ........................................................................ [ 23%] 693s ........................................................................ [ 24%] 693s ........................................................................ [ 25%] 693s ........................................................................ [ 25%] 693s ........................................................................ [ 26%] 693s ........................................................................ [ 27%] 693s ........................................................................ [ 27%] 693s ........................................................................ [ 28%] 693s ........................................................................ [ 29%] 693s ........................................................................ [ 30%] 693s ........................................................................ [ 30%] 693s ........................................................................ [ 31%] 693s ........................................................................ [ 32%] 693s ........................................................................ [ 33%] 693s ........................................................................ [ 33%] 693s ........................................................................ [ 34%] 694s ........................................................................ [ 35%] 694s ........................................................................ [ 35%] 694s ........................................................................ [ 36%] 694s ........................................................................ [ 37%] 694s ........................................................................ [ 38%] 694s ........................................................................ [ 38%] 694s ........................................................................ [ 39%] 694s ........................................................................ [ 40%] 694s ........................................................................ [ 41%] 694s ........................................................................ [ 41%] 694s ........................................................................ [ 42%] 694s ........................................................................ [ 43%] 694s ........................................................................ [ 43%] 694s ........................................................................ [ 44%] 694s ........................................................................ [ 45%] 694s ........................................................................ [ 46%] 694s ........................................................................ [ 46%] 695s ........................................................................ [ 47%] 695s ........................................................................ [ 48%] 695s ........................................................................ [ 49%] 695s ............................................... [ 49%] 695s test/test_custom_element.py ......................... [ 49%] 695s test/test_dof_ordering.py . [ 49%] 695s test/test_dof_transformations.py ....................................... [ 50%] 696s ........................................................................ [ 50%] 699s ........................................................................ [ 51%] 700s ........................................................................ [ 52%] 700s ........................................................................ [ 53%] 700s ........................................................................ [ 53%] 700s ........................................................................ [ 54%] 700s ........................................................................ [ 55%] 706s ........................................................................ [ 55%] 726s ........................................................................ [ 56%] 726s ........................................................................ [ 57%] 726s ........................................................................ [ 58%] 727s ........................................................................ [ 58%] 745s ........................................................................ [ 59%] 748s ........................................................................ [ 60%] 748s ........................................................................ [ 61%] 749s ........................................................................ [ 61%] 751s ........................................................................ [ 62%] 845s ........................................................................ [ 63%] 845s ........................................................................ [ 63%] 846s ........................................................................ [ 64%] 847s ............................................................. [ 65%] 847s test/test_elements.py ............................ [ 65%] 847s test/test_entity_dofs.py ............................................... [ 66%] 847s ........................................................................ [ 66%] 847s ........................................................................ [ 67%] 848s ........................................................................ [ 68%] 848s ........................................................................ [ 68%] 848s ........................................................................ [ 69%] 849s ........................................................................ [ 70%] 850s ........................................................................ [ 71%] 850s ........................................................................ [ 71%] 850s ........................................................................ [ 72%] 851s .......................................................... [ 73%] 851s test/test_equality.py ........... [ 73%] 852s test/test_hermite.py ... [ 73%] 852s test/test_interpolation.py ............................................. [ 73%] 852s ........................................................................ [ 74%] 853s ........................................................................ [ 75%] 855s ...x.x.................................................................. [ 75%] 871s ...............................xxxxxxxx................................. [ 76%] 871s ........................................................................ [ 77%] 871s ........................................................................ [ 78%] 872s ........................................................................ [ 78%] 872s ...................... [ 79%] 872s test/test_interpolation_between_elements.py ............................ [ 79%] 872s ........................................................................ [ 80%] 873s ........................................................................ [ 80%] 874s ........................................................................ [ 81%] 876s ........................................................................ [ 82%] 876s .........................xxx............................................ [ 83%] 877s .................xxx.................................................... [ 83%] 901s ........................................................................ [ 84%] 1005s ........................................................................ [ 85%] 1006s ................. [ 85%] 1007s test/test_iso.py ..............xx.. [ 85%] 1016s test/test_lagrange.py .................................................. [ 86%] 1016s ........................................................................ [ 86%] 1016s ........................................................................ [ 87%] 1016s ........................................................................ [ 88%] 1016s ........................................................................ [ 88%] 1017s ........... [ 89%] 1017s test/test_lattice.py ............................ [ 89%] 1017s test/test_mappings.py ..............x [ 89%] 1027s test/test_nedelec.py ...... [ 89%] 1034s test/test_nedelec_second_kind.py ..... [ 89%] 1034s test/test_orthonormal_basis.py ......................................... [ 90%] 1089s ..............x...xx...xx.. [ 90%] 1098s test/test_orthonormal_basis_symbolic.py .. [ 90%] 1109s test/test_polynomials.py ............................................. [ 90%] 1109s test/test_quadrature.py ................................................ [ 91%] 1113s ........................................................................ [ 91%] 1126s ............................................ [ 92%] 1126s test/test_regge.py ...... [ 92%] 1133s test/test_rt.py ...... [ 92%] 1133s test/test_tensor_products.py sss..ssssssss....ssssssssssssssssssssssssss [ 92%] 1133s sssssssssssssssssssssssssss..ssssssss....sssssssssssssssssssssssssssssss [ 93%] 1133s ssssssssssssssssssss..ssssssss....ssssssssssssssssssssssssssssssssssssss [ 94%] 1133s ssssssssssssssss....ssssssssssssssssssssssssssssssssssssssssssss........ [ 95%] 1134s ..................... [ 95%] 1134s test/test_ufl_wrapper.py ............................................... [ 95%] 1134s ........................................................................ [ 96%] 1134s .................................. [ 96%] 1134s test/test_version.py .. [ 96%] 1134s test/test_wcoeffs.py ................................................... [ 97%] 1135s ........................................................................ [ 98%] 1145s ........................................................................ [ 98%] 1155s ..................ss.................................................... [ 99%] 1173s ss.................................... [100%] 1173s 1173s ============================= slowest 20 durations ============================= 1173s 49.53s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-5-element_args267] 1173s 48.95s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-5-element_args268] 1173s 48.58s call test/test_orthonormal_basis.py::test_macroedge[4-CellType.hexahedron] 1173s 39.07s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-5-element_args59] 1173s 37.82s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-5-element_args60] 1173s 9.75s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-4-element_args213] 1173s 9.73s call test/test_interpolation_between_elements.py::test_degree_bounds[CellType.hexahedron-ElementFamily.iso-4-element_args214] 1173s 7.91s call test/test_dof_transformations.py::test_non_zero[CellType.hexahedron-ElementFamily.iso-5-element_args267] 1173s 7.89s call test/test_dof_transformations.py::test_non_zero[CellType.hexahedron-ElementFamily.iso-5-element_args268] 1173s 7.30s call test/test_interpolation.py::test_interpolation_matrix[CellType.hexahedron-ElementFamily.iso-5-element_args267] 1173s 7.28s call test/test_interpolation.py::test_interpolation_matrix[CellType.hexahedron-ElementFamily.iso-5-element_args268] 1173s 6.90s call test/test_nedelec.py::test_tet[3] 1173s 6.63s call test/test_dof_transformations.py::test_apply_right[CellType.hexahedron-ElementFamily.iso-5-element_args267] 1173s 6.56s call test/test_dof_transformations.py::test_apply_right[CellType.hexahedron-ElementFamily.iso-5-element_args268] 1173s 6.25s call test/test_wcoeffs.py::test_orthonormal[CellType.hexahedron-ElementFamily.N1E-5-element_args281] 1173s 6.14s call test/test_orthonormal_basis_symbolic.py::test_symbolic_quad 1173s 6.01s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-4-element_args46] 1173s 5.99s call test/test_dof_transformations.py::test_hexahedron_transformation_degrees[ElementFamily.iso-4-element_args47] 1173s 5.82s call test/test_rt.py::test_tet[3] 1173s 5.65s call test/test_orthonormal_basis.py::test_macroedge[3-CellType.hexahedron] 1173s === 9551 passed, 341 skipped, 72 deselected, 24 xfailed in 486.54s (0:08:06) === 1174s /tmp/autopkgtest.AsYqrb/wrapper.sh: checking for leaked background processes... 1174s /tmp/autopkgtest.AsYqrb/wrapper.sh: waiting for tee/cat subprocesses... 1174s /tmp/autopkgtest.AsYqrb/wrapper.sh: cleaning up... 1174s /tmp/autopkgtest.AsYqrb/wrapper.sh: Exit status: 0 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest [12:22:37]: test run-tests: -----------------------] 1174s autopkgtest: DBG: testbed executing test finished with exit status 0 1174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/run-tests-stdout /tmp/autopkgtest-work.yw5cwa02/out/run-tests-stdout 1174s autopkgtest: DBG: got reply from testbed: ok 1174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/run-tests-stderr /tmp/autopkgtest-work.yw5cwa02/out/run-tests-stderr 1174s autopkgtest: DBG: got reply from testbed: ok 1174s autopkgtest [12:22:37]: test run-tests: - - - - - - - - - - results - - - - - - - - - - 1174s run-tests PASS 1174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/run-tests-artifacts/ /tmp/autopkgtest-work.yw5cwa02/out/artifacts/ 1175s autopkgtest: DBG: got reply from testbed: ok 1175s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.AsYqrb/run-tests-artifacts', '/tmp/autopkgtest.AsYqrb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest [12:22:38]: test autodep8-python3: preparing testbed 1175s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-basix', 'python3-all', 'python3-pytest', 'python3-ufl', 'python3-numpy', 'python3-sympy', 'gcc'], deps_new=['python3-all', 'python3-basix'] 1175s autopkgtest: DBG: testbed reset 1175s autopkgtest: DBG: sending command to testbed: revert 1272s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.AsYqrb 1272s autopkgtest: DBG: sending command to testbed: print-execute-command 1272s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.132u_ucl/runcmd 1272s autopkgtest: DBG: sending command to testbed: capabilities 1272s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine ok root-on-testbed reboot suggested-normal-user=ubuntu revert-full-system 1272s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'ok', 'root-on-testbed', 'reboot', 'suggested-normal-user=ubuntu', 'revert-full-system', 'has_internet'] 1272s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 1272s autopkgtest: DBG: testbed command exited with code 0 1272s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.AsYqrb/wrapper.sh 1273s autopkgtest: DBG: got reply from testbed: ok 1273s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1273s autopkgtest: DBG: testbed command exited with code 0 1273s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1273s autopkgtest: DBG: testbed command exited with code 0 1273s autopkgtest [12:24:16]: testbed dpkg architecture: s390x 1273s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1273s autopkgtest: DBG: testbed command exited with code 0 1273s autopkgtest [12:24:16]: testbed apt version: 2.9.30 1273s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1273s autopkgtest: DBG: testbed command exited with code 0 1273s autopkgtest: DBG: testbed has eatmydata 1273s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1273s autopkgtest: DBG: testbed command exited with code 0 1273s autopkgtest [12:24:16]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1273s 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 [] 1274s autopkgtest: DBG: testbed command exited with code 0 1274s autopkgtest [12:24:17]: testbed release detected to be: plucky 1274s 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 [] 1274s autopkgtest: DBG: testbed command exited with code 0 1274s 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 [] 1274s autopkgtest: DBG: testbed command exited with code 0 1274s autopkgtest: DBG: adding APT source: Types: deb deb-src 1274s URIs: http://ftpmaster.internal/ubuntu/ 1274s Suites: plucky-proposed 1274s Components: main restricted universe multiverse 1274s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1274s 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 [] 1274s autopkgtest: DBG: testbed command exited with code 0 1274s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1274s Package: * 1274s Pin: release plucky-proposed 1274s Pin-Priority: 500 1274s 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 [] 1274s autopkgtest: DBG: testbed command exited with code 0 1274s autopkgtest [12:24:17]: updating testbed package index (apt update) 1274s 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'] 1275s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1275s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1275s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1275s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1275s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 1275s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 1275s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1275s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 1275s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 1275s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1275s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 1275s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 1275s Fetched 1700 kB in 1s (1841 kB/s) 1276s Reading package lists... 1276s autopkgtest: DBG: testbed command exited with code 0 1276s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1276s Package: * 1276s Pin: release plucky-proposed 1276s Pin-Priority: 100 1276s 1276s Package: src:sphinx:any 1276s Pin: release plucky-proposed 1276s Pin-Priority: 995 1276s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1276s autopkgtest: DBG: testbed command exited with code 0 1276s 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.AsYqrb/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1276s autopkgtest: DBG: testbed command exited with code 0 1276s 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'] 1276s + lsb_release --codename --short 1276s + RELEASE=plucky 1276s + cat 1276s + [ plucky != trusty ] 1276s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1276s Reading package lists... 1277s Building dependency tree... 1277s Reading state information... 1277s Calculating upgrade... 1277s The following packages were automatically installed and are no longer required: 1277s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1277s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1277s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1277s linux-tools-6.11.0-8-generic 1277s Use 'sudo apt autoremove' to remove them. 1277s The following packages will be upgraded: 1277s iproute2 liblsof0 libp11-kit0 lsof 1277s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1277s Need to get 1791 kB of archives. 1277s After this operation, 17.4 kB of additional disk space will be used. 1277s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 1278s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 1278s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 1278s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 1278s Preconfiguring packages ... 1278s Fetched 1791 kB in 1s (1586 kB/s) 1278s (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 ... 81030 files and directories currently installed.) 1278s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 1278s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 1278s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 1278s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 1279s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 1279s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1279s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 1279s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 1279s Setting up liblsof0 (4.99.4+dfsg-1) ... 1279s Setting up iproute2 (6.13.0-1ubuntu1) ... 1279s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 1279s Setting up lsof (4.99.4+dfsg-1) ... 1279s Processing triggers for man-db (2.13.0-1) ... 1279s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1279s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1279s + /usr/lib/apt/apt-helper analyze-pattern ?true 1279s + + sed s/\./\\./g 1279s uname -r 1279s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1279s + + tail -n+2 1279s + grep -v ^linux-.*6\.12\.0-15-generic.* 1279s + cut -d/ -f1 1279s apt list ?obsolete 1279s + true 1279s + obsolete_pkgs= 1279s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1279s Reading package lists... 1280s Building dependency tree... 1280s Reading state information... 1280s The following packages will be REMOVED: 1280s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1280s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1280s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1280s linux-tools-6.11.0-8-generic* 1280s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 1280s After this operation, 167 MB disk space will be freed. 1280s (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 ... 81031 files and directories currently installed.) 1280s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1280s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1280s Removing libpython3.12t64:s390x (3.12.9-1) ... 1280s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1280s Removing libnsl2:s390x (1.3.0-3build3) ... 1280s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1280s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1280s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1281s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1281s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1281s (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 ... 55931 files and directories currently installed.) 1281s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1281s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1281s + grep -q trusty /etc/lsb-release 1281s + [ ! -d /usr/share/doc/unattended-upgrades ] 1281s + [ ! -d /usr/share/doc/lxd ] 1281s + [ ! -d /usr/share/doc/lxd-client ] 1281s + [ ! -d /usr/share/doc/snapd ] 1281s + type iptables 1281s + cat 1281s + chmod 755 /etc/rc.local 1281s + . /etc/rc.local 1281s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1281s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1281s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1281s + uname -m 1281s + [ s390x = ppc64le ] 1281s + [ -d /run/systemd/system ] 1281s + systemd-detect-virt --quiet --vm 1281s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1281s + cat 1281s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1281s + echo COMPRESS=lz4 1281s autopkgtest: DBG: testbed command exited with code 0 1281s autopkgtest [12:24:24]: upgrading testbed (apt dist-upgrade and autopurge) 1281s 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'] 1281s Reading package lists... 1282s Building dependency tree... 1282s Reading state information... 1282s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1282s Starting 2 pkgProblemResolver with broken count: 0 1282s Done 1282s Entering ResolveByKeep 1282s 1282s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1282s autopkgtest: DBG: testbed command exited with code 0 1282s 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'] 1282s Reading package lists... 1282s Building dependency tree... 1282s Reading state information... 1283s Starting pkgProblemResolver with broken count: 0 1283s Starting 2 pkgProblemResolver with broken count: 0 1283s Done 1283s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1283s autopkgtest: DBG: testbed command exited with code 0 1283s 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.AsYqrb/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1283s autopkgtest: DBG: testbed command exited with code 1 1283s autopkgtest [12:24:26]: rebooting testbed after setup commands that affected boot 1283s autopkgtest: DBG: sending command to testbed: reboot 1300s autopkgtest: DBG: got reply from testbed: ok 1300s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1300s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot 1300s autopkgtest: DBG: got reply from testbed: ok 1300s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1301s autopkgtest: DBG: testbed command exited with code 0 1301s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1301s autopkgtest: DBG: testbed command exited with code 0 1301s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 1301s autopkgtest: DBG: testbed command exited with code 0 1301s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare 1301s autopkgtest: DBG: got reply from testbed: ok 1301s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1301s autopkgtest: DBG: testbed command exited with code 0 1301s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1301s autopkgtest: DBG: testbed command exited with code 0 1301s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AsYqrb/testbed-packages"], kind short, sout raw, serr pipe, env [] 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/testbed-packages /tmp/autopkgtest-work.yw5cwa02/out/testbed-packages 1302s autopkgtest: DBG: got reply from testbed: ok 1302s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1302s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot 1302s autopkgtest: DBG: got reply from testbed: ok 1302s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb'], kind short, sout raw, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare 1303s autopkgtest: DBG: got reply from testbed: ok 1303s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.AsYqrb/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1304s autopkgtest: DBG: testbed command exited with code 0 1304s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1304s autopkgtest: DBG: testbed command exited with code 0 1304s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1304s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-basix'] 1304s autopkgtest: DBG: install-deps: satisfying python3-all, python3-basix 1304s autopkgtest: DBG: can use apt-get on testbed: True 1304s 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', 'python3-all, python3-basix'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1304s Reading package lists... 1304s Building dependency tree... 1304s Reading state information... 1304s Starting pkgProblemResolver with broken count: 0 1304s Starting 2 pkgProblemResolver with broken count: 0 1304s Done 1304s The following NEW packages will be installed: 1304s libbasix-dev libbasix0.9 libblas3 libeigen3-dev libgfortran5 liblapack3 1304s libnsl2 libpkgconf3 libpython3.12-minimal libpython3.12-stdlib pkg-config 1304s pkgconf pkgconf-bin python3-all python3-basix python3-numpy python3-ufl 1304s python3.12 python3.12-minimal 1305s 0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded. 1305s Need to get 16.5 MB of archives. 1305s After this operation, 79.5 MB of additional disk space will be used. 1305s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 1305s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 1306s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 1306s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 1306s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 1307s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 1307s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 1307s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 1307s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libbasix0.9 s390x 0.9.0-2build1 [537 kB] 1307s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 1307s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 1307s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 1307s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x pkg-config s390x 1.8.1-4 [7362 B] 1307s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x libeigen3-dev all 3.4.0-4build1 [1055 kB] 1307s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x libbasix-dev s390x 0.9.0-2build1 [62.2 kB] 1307s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 1307s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 1308s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufl all 2024.2.0-2 [145 kB] 1308s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-basix s390x 0.9.0-2build1 [136 kB] 1308s Fetched 16.5 MB in 3s (4901 kB/s) 1308s Selecting previously unselected package libpython3.12-minimal:s390x. 1308s (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 ... 55929 files and directories currently installed.) 1308s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 1308s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 1308s Selecting previously unselected package python3.12-minimal. 1308s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 1308s Unpacking python3.12-minimal (3.12.9-1) ... 1308s Selecting previously unselected package libnsl2:s390x. 1308s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 1308s Unpacking libnsl2:s390x (1.3.0-3build3) ... 1308s Selecting previously unselected package libpython3.12-stdlib:s390x. 1308s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 1308s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 1308s Selecting previously unselected package python3.12. 1308s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 1308s Unpacking python3.12 (3.12.9-1) ... 1308s Selecting previously unselected package libblas3:s390x. 1308s Preparing to unpack .../05-libblas3_3.12.1-2_s390x.deb ... 1308s Unpacking libblas3:s390x (3.12.1-2) ... 1308s Selecting previously unselected package libgfortran5:s390x. 1308s Preparing to unpack .../06-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 1308s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 1308s Selecting previously unselected package liblapack3:s390x. 1308s Preparing to unpack .../07-liblapack3_3.12.1-2_s390x.deb ... 1308s Unpacking liblapack3:s390x (3.12.1-2) ... 1308s Selecting previously unselected package libbasix0.9:s390x. 1308s Preparing to unpack .../08-libbasix0.9_0.9.0-2build1_s390x.deb ... 1308s Unpacking libbasix0.9:s390x (0.9.0-2build1) ... 1309s Selecting previously unselected package libpkgconf3:s390x. 1309s Preparing to unpack .../09-libpkgconf3_1.8.1-4_s390x.deb ... 1309s Unpacking libpkgconf3:s390x (1.8.1-4) ... 1309s Selecting previously unselected package pkgconf-bin. 1309s Preparing to unpack .../10-pkgconf-bin_1.8.1-4_s390x.deb ... 1309s Unpacking pkgconf-bin (1.8.1-4) ... 1309s Selecting previously unselected package pkgconf:s390x. 1309s Preparing to unpack .../11-pkgconf_1.8.1-4_s390x.deb ... 1309s Unpacking pkgconf:s390x (1.8.1-4) ... 1309s Selecting previously unselected package pkg-config:s390x. 1309s Preparing to unpack .../12-pkg-config_1.8.1-4_s390x.deb ... 1309s Unpacking pkg-config:s390x (1.8.1-4) ... 1309s Selecting previously unselected package libeigen3-dev. 1309s Preparing to unpack .../13-libeigen3-dev_3.4.0-4build1_all.deb ... 1309s Unpacking libeigen3-dev (3.4.0-4build1) ... 1309s Selecting previously unselected package libbasix-dev:s390x. 1309s Preparing to unpack .../14-libbasix-dev_0.9.0-2build1_s390x.deb ... 1309s Unpacking libbasix-dev:s390x (0.9.0-2build1) ... 1309s Selecting previously unselected package python3-all. 1309s Preparing to unpack .../15-python3-all_3.13.1-1~exp2_s390x.deb ... 1309s Unpacking python3-all (3.13.1-1~exp2) ... 1309s Selecting previously unselected package python3-numpy. 1309s Preparing to unpack .../16-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 1309s Unpacking python3-numpy (1:1.26.4+ds-13) ... 1309s Selecting previously unselected package python3-ufl. 1309s Preparing to unpack .../17-python3-ufl_2024.2.0-2_all.deb ... 1309s Unpacking python3-ufl (2024.2.0-2) ... 1309s Selecting previously unselected package python3-basix. 1309s Preparing to unpack .../18-python3-basix_0.9.0-2build1_s390x.deb ... 1309s Unpacking python3-basix (0.9.0-2build1) ... 1309s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 1309s Setting up libblas3:s390x (3.12.1-2) ... 1309s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 1309s Setting up libpkgconf3:s390x (1.8.1-4) ... 1309s Setting up pkgconf-bin (1.8.1-4) ... 1309s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 1309s Setting up libnsl2:s390x (1.3.0-3build3) ... 1309s Setting up python3.12-minimal (3.12.9-1) ... 1310s Setting up liblapack3:s390x (3.12.1-2) ... 1310s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 1310s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 1310s Setting up python3.12 (3.12.9-1) ... 1311s Setting up python3-all (3.13.1-1~exp2) ... 1311s Setting up pkgconf:s390x (1.8.1-4) ... 1311s Setting up libeigen3-dev (3.4.0-4build1) ... 1311s Setting up pkg-config:s390x (1.8.1-4) ... 1311s Setting up python3-numpy (1:1.26.4+ds-13) ... 1314s Setting up libbasix0.9:s390x (0.9.0-2build1) ... 1314s Setting up libbasix-dev:s390x (0.9.0-2build1) ... 1314s Setting up python3-ufl (2024.2.0-2) ... 1315s Setting up python3-basix (0.9.0-2build1) ... 1315s Processing triggers for systemd (257.2-3ubuntu1) ... 1315s Processing triggers for man-db (2.13.0-1) ... 1315s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-basix'], kind short, sout pipe, serr pipe, env [] 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.AsYqrb/autodep8-python3-packages.all"], kind short, sout raw, serr pipe, env [] 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/autodep8-python3-packages.all /tmp/autopkgtest-work.yw5cwa02/out/autodep8-python3-packages.all 1316s autopkgtest: DBG: got reply from testbed: ok 1316s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.AsYqrb/build.Pgs/src'], kind short, sout raw, serr raw, env [] 1316s autopkgtest: DBG: testbed command exited with code 1 1316s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.AsYqrb/build.Pgs'], kind short, sout raw, serr pipe, env [] 1317s autopkgtest: DBG: testbed command exited with code 0 1317s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.yw5cwa02/out/tests-tree/ /tmp/autopkgtest.AsYqrb/build.Pgs/src/ 1318s autopkgtest: DBG: got reply from testbed: ok 1318s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.AsYqrb/build.Pgs/src'], kind short, sout raw, serr pipe, env [] 1318s autopkgtest: DBG: testbed command exited with code 0 1318s autopkgtest [12:25:01]: test autodep8-python3: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done 1318s autopkgtest [12:25:01]: test autodep8-python3: [----------------------- 1318s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.AsYqrb/wrapper.sh --debug --artifacts=/tmp/autopkgtest.AsYqrb/autodep8-python3-artifacts --chdir=/tmp/autopkgtest.AsYqrb/build.Pgs/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.AsYqrb/autodep8-python3-stderr --stdout=/tmp/autopkgtest.AsYqrb/autodep8-python3-stdout --tmp=/tmp/autopkgtest.AsYqrb/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done\''], kind test, sout raw, serr raw, env [] 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.AsYqrb/autodep8-python3-artifacts 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: changing to directory: /tmp/autopkgtest.AsYqrb/build.Pgs/src 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: LANG=C.UTF-8 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LANGUAGE 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_ADDRESS 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_ALL 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_COLLATE 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_CTYPE 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_MEASUREMENT 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_MESSAGES 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_MONETARY 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_NAME 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_NUMERIC 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_PAPER 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_TELEPHONE 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: unsetting environment: LC_TIME 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: pretending to be a login shell 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: will write standard error to /tmp/autopkgtest.AsYqrb/autodep8-python3-stderr 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: will write stdout to /tmp/autopkgtest.AsYqrb/autodep8-python3-stdout 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.AsYqrb/autopkgtest_tmp 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: command to run: bash -ec set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import basix; print(basix)" ; done 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: copying /tmp/tmp.JNpC8IHA1P/out to stdout and file: /tmp/autopkgtest.AsYqrb/autodep8-python3-stdout 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: copying /tmp/tmp.JNpC8IHA1P/err to standard error and file: /tmp/autopkgtest.AsYqrb/autodep8-python3-stdout 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: writing script pid 1442 to /tmp/autopkgtest_script_pid 1318s Testing with python3.12: 1318s 1318s Testing with python3.13: 1318s 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: checking for leaked background processes... 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: waiting for tee/cat subprocesses... 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: cleaning up... 1318s /tmp/autopkgtest.AsYqrb/wrapper.sh: Exit status: 0 1318s autopkgtest: DBG: testbed command exited with code 0 1318s autopkgtest [12:25:01]: test autodep8-python3: -----------------------] 1318s autopkgtest: DBG: testbed executing test finished with exit status 0 1318s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/autodep8-python3-stdout /tmp/autopkgtest-work.yw5cwa02/out/autodep8-python3-stdout 1319s autopkgtest: DBG: got reply from testbed: ok 1319s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/autodep8-python3-stderr /tmp/autopkgtest-work.yw5cwa02/out/autodep8-python3-stderr 1319s autopkgtest: DBG: got reply from testbed: ok 1319s autodep8-python3 PASS (superficial) 1319s autopkgtest [12:25:02]: test autodep8-python3: - - - - - - - - - - results - - - - - - - - - - 1319s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.AsYqrb/autodep8-python3-artifacts/ /tmp/autopkgtest-work.yw5cwa02/out/artifacts/ 1320s autopkgtest: DBG: got reply from testbed: ok 1320s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.AsYqrb/autodep8-python3-artifacts', '/tmp/autopkgtest.AsYqrb/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1320s autopkgtest: DBG: testbed command exited with code 0 1320s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 1320s autopkgtest [12:25:03]: @@@@@@@@@@@@@@@@@@@@ summary 1320s run-tests PASS 1320s autodep8-python3 PASS (superficial) 1320s autopkgtest: DBG: testbed stop 1320s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.AsYqrb 1320s autopkgtest: DBG: sending command to testbed: close 1337s autopkgtest: DBG: got reply from testbed: ok 1337s autopkgtest: DBG: sending command to testbed: quit 1337s nova [W] Using flock in prodstack6-s390x 1337s Creating nova instance adt-plucky-s390x-fenics-basix-20250219-120303-juju-7f2275-prod-proposed-migration-environment-15-2a77fc8b-c076-4cb5-b13a-054c9e77e384 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 1337s nova [W] Timed out waiting for 409412d1-7c02-43fa-a11a-6ec0a8c78cd3 to get deleted. 1337s nova [W] Using flock in prodstack6-s390x 1337s Creating nova instance adt-plucky-s390x-fenics-basix-20250219-120303-juju-7f2275-prod-proposed-migration-environment-15-2a77fc8b-c076-4cb5-b13a-054c9e77e384 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 1337s nova [W] Timed out waiting for 76412401-c381-4ad4-86b4-a8c1b04dcf23 to get deleted.