0s autopkgtest: DBG: testbed init 0s autopkgtest [12:41:47]: starting date and time: 2025-02-19 12:41:47+0000 0s autopkgtest [12:41:47]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:41:47]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.alyxlhwo/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-h5netcdf --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-5.secgroup --name adt-plucky-s390x-python-h5netcdf-20250219-124147-juju-7f2275-prod-proposed-migration-environment-15-f04ba715-ba36-4880-9e69-1eed205c262e --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 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.tuy73n 105s autopkgtest: DBG: sending command to testbed: print-execute-command 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh._tla_0c_/runcmd 105s autopkgtest: DBG: sending command to testbed: capabilities 105s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system suggested-normal-user=ubuntu revert root-on-testbed 105s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tuy73n'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.tuy73n/wrapper.sh 106s autopkgtest: DBG: got reply from testbed: ok 106s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tuy73n/wrapper.sh'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:43:33]: testbed dpkg architecture: s390x 106s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:43:33]: testbed apt version: 2.9.30 106s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed has eatmydata 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [12:43:34]: @@@@@@@@@@@@@@@@@@@@ test bed setup 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [12:43:34]: testbed release detected to be: None 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT source: Types: deb deb-src 107s URIs: http://ftpmaster.internal/ubuntu/ 107s Suites: plucky-proposed 107s Components: main restricted universe multiverse 107s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 500 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [12:43:34]: updating testbed package index (apt update) 107s 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'] 108s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 108s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 108s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 108s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 108s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 108s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 108s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 108s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 108s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 108s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 109s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 109s Fetched 1700 kB in 1s (1777 kB/s) 110s Reading package lists... 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 100 110s 110s Package: src:sphinx:any 110s Pin: release plucky-proposed 110s Pin-Priority: 995 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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.tuy73n/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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'] 110s + lsb_release --codename --short 110s + RELEASE=plucky 110s + cat 110s + [ plucky != trusty ] 110s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 110s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s Calculating upgrade... 110s The following packages were automatically installed and are no longer required: 110s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 110s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 110s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 110s linux-tools-6.11.0-8-generic 110s Use 'sudo apt autoremove' to remove them. 110s The following packages will be upgraded: 110s iproute2 liblsof0 libp11-kit0 lsof 111s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 111s Need to get 1791 kB of archives. 111s After this operation, 17.4 kB of additional disk space will be used. 111s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 111s Preconfiguring packages ... 111s Fetched 1791 kB in 1s (2783 kB/s) 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 111s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 112s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 112s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 112s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 112s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 112s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 112s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 112s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 112s Setting up liblsof0 (4.99.4+dfsg-1) ... 112s Setting up iproute2 (6.13.0-1ubuntu1) ... 112s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 112s Setting up lsof (4.99.4+dfsg-1) ... 112s Processing triggers for man-db (2.13.0-1) ... 112s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 112s + /usr/lib/apt/apt-helper analyze-pattern ?true 112s + uname -r 112s + sed s/\./\\./g 112s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 112s + apt list ?obsolete 112s + + cut -d/ -f1 113s tail -n+2 113s + grep -v ^linux-.*6\.12\.0-15-generic.* 113s + true 113s + obsolete_pkgs= 113s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s The following packages will be REMOVED: 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 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 113s After this operation, 167 MB disk space will be freed. 113s (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.) 113s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 113s Removing libpython3.12t64:s390x (3.12.9-1) ... 113s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 113s Removing libnsl2:s390x (1.3.0-3build3) ... 113s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 113s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 114s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 114s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55931 files and directories currently installed.) 114s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 114s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 114s + grep -q trusty /etc/lsb-release 114s + [ ! -d /usr/share/doc/unattended-upgrades ] 114s + [ ! -d /usr/share/doc/lxd ] 114s + [ ! -d /usr/share/doc/lxd-client ] 114s + [ ! -d /usr/share/doc/snapd ] 114s + type iptables 114s + cat 114s + chmod 755 /etc/rc.local 114s + . /etc/rc.local 114s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 114s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 114s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 114s + uname -m 114s + [ s390x = ppc64le ] 114s + [ -d /run/systemd/system ] 114s + systemd-detect-virt --quiet --vm 114s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 114s + cat 114s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 114s + echo COMPRESS=lz4 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [12:43:41]: upgrading testbed (apt dist-upgrade and autopurge) 114s 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'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 115s Entering ResolveByKeep 115s 115s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 116s Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 116s 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.tuy73n/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 116s autopkgtest: DBG: testbed command exited with code 1 116s autopkgtest [12:43:43]: rebooting testbed after setup commands that affected boot 116s autopkgtest: DBG: sending command to testbed: reboot 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 133s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tuy73n'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.tuy73n/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tuy73n'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.tuy73n/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest [12:44:02]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 135s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.tuy73n/testbed-packages"], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/testbed-packages /tmp/autopkgtest-work.alyxlhwo/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.tuy73n'], 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.tuy73n/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.tuy73n'], 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.tuy73n/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.tuy73n/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: Binaries: initialising 139s autopkgtest [12:44:06]: @@@@@@@@@@@@@@@@@@@@ apt-source python-h5netcdf 139s autopkgtest: DBG: blame += python-h5netcdf 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 139s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-h5netcdf'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-h5netcdf$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-h5netcdf=1.4.1-1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-h5netcdf-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', 'python-h5netcdf-doc=1.4.1-1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: install_deps: deps_new=[] 140s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s 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.tuy73n/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-h5netcdf=1.4.1-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x python-h5netcdf_*.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'] 141s + cd / 141s + mktemp -d /tmp/autopkgtest.tuy73n/build.XXX 141s + builddir=/tmp/autopkgtest.tuy73n/build.BFK 141s + cd /tmp/autopkgtest.tuy73n/build.BFK 141s + apt-get source -d -q --only-source python-h5netcdf=1.4.1-1 141s + OUT=Reading package lists... 141s NOTICE: 'python-h5netcdf' packaging is maintained in the 'Git' version control system at: 141s https://salsa.debian.org/science-team/python-h5netcdf.git 141s Please use: 141s git clone https://salsa.debian.org/science-team/python-h5netcdf.git 141s to retrieve the latest (possibly unreleased) updates to the package. 141s Need to get 72.2 kB of source archives. 141s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (dsc) [2388 B] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (tar) [64.6 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (diff) [5168 B] 141s Fetched 72.2 kB in 0s (211 kB/s) 141s Download complete and in download only mode 141s + [ -n ] 141s + echo Reading package lists... 141s NOTICE: 'python-h5netcdf' packaging is maintained in the 'Git' version control system at: 141s https://salsa.debian.org/science-team/python-h5netcdf.git 141s Please use: 141s git clone https://salsa.debian.org/science-team/python-h5netcdf.git 141s to retrieve the latest (possibly unreleased) updates to the package. 141s Need to get 72.2 kB of source archives. 141s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (dsc) [2388 B] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (tar) [64.6 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (diff) [5168 B] 141s Fetched 72.2 kB in 0s (211 kB/s) 141s Download complete and in download only mode 141s + grep ^Get: 141s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (dsc) [2388 B] 141s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (tar) [64.6 kB] 141s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-h5netcdf 1.4.1-1 (diff) [5168 B] 141s + dpkg-source -x python-h5netcdf_1.4.1-1.dsc src 141s gpgv: Signature made Sun Nov 24 22:23:34 2024 UTC 141s gpgv: using RSA key 23C9A93E585819E9126D0A36573EF1E4BD5A01FA 141s gpgv: Can't check signature: No public key 141s dpkg-source: warning: cannot verify inline signature for ./python-h5netcdf_1.4.1-1.dsc: no acceptable signature found 141s + chmod -R a+rX . 141s + cd src/. 141s + pwd 141s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [12:44:08]: testing package python-h5netcdf version 1.4.1-1 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/build.BFK/src/debian/ /tmp/autopkgtest-work.alyxlhwo/out/pkg/debian/ 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency python3-h5netcdf 142s autopkgtest: DBG: synthesised dependency python-h5netcdf-doc 142s autopkgtest: DBG: processing dependency python3-all 142s autopkgtest: DBG: processing dependency python3-netcdf4 142s autopkgtest: DBG: processing dependency python3-pytest 142s autopkgtest: DBG: Test defined: name command1 path None command "set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k "not ros3" ; done" restrictions [] features [] depends ['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency python3-h5netcdf 142s autopkgtest: DBG: synthesised dependency python-h5netcdf-doc 142s autopkgtest: DBG: processing dependency python3-all 142s autopkgtest: DBG: processing dependency python3-netcdf4 142s autopkgtest: DBG: processing dependency python3-pytest 142s autopkgtest: DBG: Test defined: name command2 path None command "set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k ros3 ; done" restrictions ['needs-internet'] features [] depends ['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 142s autopkgtest [12:44:09]: build not needed 142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/build.BFK/src/ /tmp/autopkgtest-work.alyxlhwo/out/tests-tree/ 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency python3-h5netcdf 142s autopkgtest: DBG: synthesised dependency python-h5netcdf-doc 142s autopkgtest: DBG: processing dependency python3-all 142s autopkgtest: DBG: processing dependency python3-netcdf4 142s autopkgtest: DBG: processing dependency python3-pytest 142s autopkgtest: DBG: Test defined: name command1 path None command "set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k "not ros3" ; done" restrictions [] features [] depends ['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency python3-h5netcdf 142s autopkgtest: DBG: synthesised dependency python-h5netcdf-doc 142s autopkgtest: DBG: processing dependency python3-all 142s autopkgtest: DBG: processing dependency python3-netcdf4 142s autopkgtest: DBG: processing dependency python3-pytest 142s autopkgtest: DBG: Test defined: name command2 path None command "set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k ros3 ; done" restrictions ['needs-internet'] features [] depends ['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 142s autopkgtest [12:44:09]: test command1: preparing testbed 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 142s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 142s autopkgtest: DBG: install_deps: deps_new=['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 142s autopkgtest: DBG: install-deps: satisfying python3-h5netcdf, python-h5netcdf-doc, python3-all, python3-netcdf4, python3-pytest 142s autopkgtest: DBG: can use apt-get on testbed: True 142s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-h5netcdf, python-h5netcdf-doc, python3-all, python3-netcdf4, python3-pytest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 142s Reading package lists... 142s Building dependency tree... 142s Reading state information... 143s Starting pkgProblemResolver with broken count: 0 143s Starting 2 pkgProblemResolver with broken count: 0 143s Done 143s The following NEW packages will be installed: 143s libaec0 libblas3 libgfortran5 libhdf5-310 libhdf5-hl-310 libjs-jquery 143s libjs-sphinxdoc libjs-underscore liblapack3 liblzf1 libnetcdf22 libnsl2 143s libpython3.12-minimal libpython3.12-stdlib libsz2 python-h5netcdf-doc 143s python3-all python3-cftime python3-h5netcdf python3-h5py python3-h5py-serial 143s python3-iniconfig python3-netcdf4 python3-numpy python3-packaging 143s python3-pluggy python3-pytest python3.12 python3.12-minimal 143s 0 upgraded, 29 newly installed, 0 to remove and 0 not upgraded. 143s Need to get 20.4 MB of archives. 143s After this operation, 91.4 MB of additional disk space will be used. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 143s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 143s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 143s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 144s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 144s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 144s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 144s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 144s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 144s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 144s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 144s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 144s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 144s Get:14 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 144s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 144s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x liblzf1 s390x 3.6-4 [7020 B] 144s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf22 s390x 1:4.9.3-1 [533 kB] 144s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python-h5netcdf-doc all 1.4.1-1 [52.9 kB] 144s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 144s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 144s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cftime s390x 1.6.4-1build2 [330 kB] 144s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5py-serial s390x 3.12.1-1 [1669 kB] 144s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5py all 3.12.1-1 [7970 B] 144s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 144s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h5netcdf all 1.4.1-1 [47.2 kB] 144s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 144s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-netcdf4 s390x 1.7.2-1build3 [935 kB] 144s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 144s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 145s Fetched 20.4 MB in 2s (12.2 MB/s) 145s Selecting previously unselected package libpython3.12-minimal:s390x. 145s (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.) 145s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 145s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 145s Selecting previously unselected package python3.12-minimal. 145s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 145s Unpacking python3.12-minimal (3.12.9-1) ... 145s Selecting previously unselected package libnsl2:s390x. 145s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 145s Unpacking libnsl2:s390x (1.3.0-3build3) ... 145s Selecting previously unselected package libpython3.12-stdlib:s390x. 145s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 145s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 145s Selecting previously unselected package python3.12. 145s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 145s Unpacking python3.12 (3.12.9-1) ... 145s Selecting previously unselected package libaec0:s390x. 145s Preparing to unpack .../05-libaec0_1.1.3-1_s390x.deb ... 145s Unpacking libaec0:s390x (1.1.3-1) ... 145s Selecting previously unselected package libblas3:s390x. 145s Preparing to unpack .../06-libblas3_3.12.1-2_s390x.deb ... 145s Unpacking libblas3:s390x (3.12.1-2) ... 145s Selecting previously unselected package libgfortran5:s390x. 145s Preparing to unpack .../07-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 145s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 145s Selecting previously unselected package libsz2:s390x. 145s Preparing to unpack .../08-libsz2_1.1.3-1_s390x.deb ... 145s Unpacking libsz2:s390x (1.1.3-1) ... 145s Selecting previously unselected package libhdf5-310:s390x. 145s Preparing to unpack .../09-libhdf5-310_1.14.5+repack-3_s390x.deb ... 145s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 145s Selecting previously unselected package libhdf5-hl-310:s390x. 145s Preparing to unpack .../10-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 145s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 145s Selecting previously unselected package libjs-jquery. 145s Preparing to unpack .../11-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 145s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 145s Selecting previously unselected package libjs-underscore. 145s Preparing to unpack .../12-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 145s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 145s Selecting previously unselected package libjs-sphinxdoc. 145s Preparing to unpack .../13-libjs-sphinxdoc_8.1.3-5_all.deb ... 145s Unpacking libjs-sphinxdoc (8.1.3-5) ... 145s Selecting previously unselected package liblapack3:s390x. 145s Preparing to unpack .../14-liblapack3_3.12.1-2_s390x.deb ... 145s Unpacking liblapack3:s390x (3.12.1-2) ... 145s Selecting previously unselected package liblzf1:s390x. 145s Preparing to unpack .../15-liblzf1_3.6-4_s390x.deb ... 145s Unpacking liblzf1:s390x (3.6-4) ... 145s Selecting previously unselected package libnetcdf22:s390x. 145s Preparing to unpack .../16-libnetcdf22_1%3a4.9.3-1_s390x.deb ... 145s Unpacking libnetcdf22:s390x (1:4.9.3-1) ... 145s Selecting previously unselected package python-h5netcdf-doc. 145s Preparing to unpack .../17-python-h5netcdf-doc_1.4.1-1_all.deb ... 145s Unpacking python-h5netcdf-doc (1.4.1-1) ... 145s Selecting previously unselected package python3-all. 145s Preparing to unpack .../18-python3-all_3.13.1-1~exp2_s390x.deb ... 145s Unpacking python3-all (3.13.1-1~exp2) ... 145s Selecting previously unselected package python3-numpy. 145s Preparing to unpack .../19-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 145s Unpacking python3-numpy (1:1.26.4+ds-13) ... 145s Selecting previously unselected package python3-cftime. 145s Preparing to unpack .../20-python3-cftime_1.6.4-1build2_s390x.deb ... 145s Unpacking python3-cftime (1.6.4-1build2) ... 145s Selecting previously unselected package python3-h5py-serial. 145s Preparing to unpack .../21-python3-h5py-serial_3.12.1-1_s390x.deb ... 145s Unpacking python3-h5py-serial (3.12.1-1) ... 145s Selecting previously unselected package python3-h5py. 145s Preparing to unpack .../22-python3-h5py_3.12.1-1_all.deb ... 145s Unpacking python3-h5py (3.12.1-1) ... 145s Selecting previously unselected package python3-packaging. 145s Preparing to unpack .../23-python3-packaging_24.2-1_all.deb ... 145s Unpacking python3-packaging (24.2-1) ... 145s Selecting previously unselected package python3-h5netcdf. 145s Preparing to unpack .../24-python3-h5netcdf_1.4.1-1_all.deb ... 145s Unpacking python3-h5netcdf (1.4.1-1) ... 145s Selecting previously unselected package python3-iniconfig. 145s Preparing to unpack .../25-python3-iniconfig_1.1.1-2_all.deb ... 145s Unpacking python3-iniconfig (1.1.1-2) ... 145s Selecting previously unselected package python3-netcdf4. 145s Preparing to unpack .../26-python3-netcdf4_1.7.2-1build3_s390x.deb ... 145s Unpacking python3-netcdf4 (1.7.2-1build3) ... 145s Selecting previously unselected package python3-pluggy. 145s Preparing to unpack .../27-python3-pluggy_1.5.0-1_all.deb ... 145s Unpacking python3-pluggy (1.5.0-1) ... 145s Selecting previously unselected package python3-pytest. 145s Preparing to unpack .../28-python3-pytest_8.3.4-1_all.deb ... 145s Unpacking python3-pytest (8.3.4-1) ... 145s Setting up python3-iniconfig (1.1.1-2) ... 146s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 146s Setting up libaec0:s390x (1.1.3-1) ... 146s Setting up libblas3:s390x (3.12.1-2) ... 146s 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 146s Setting up python3-packaging (24.2-1) ... 146s Setting up liblzf1:s390x (3.6-4) ... 146s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 146s Setting up python3-pluggy (1.5.0-1) ... 146s Setting up libnsl2:s390x (1.3.0-3build3) ... 146s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 146s Setting up libsz2:s390x (1.1.3-1) ... 146s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 146s Setting up python3.12-minimal (3.12.9-1) ... 147s Setting up liblapack3:s390x (3.12.1-2) ... 147s 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 147s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 147s Setting up python3-pytest (8.3.4-1) ... 147s Setting up python3.12 (3.12.9-1) ... 148s Setting up python3-all (3.13.1-1~exp2) ... 148s Setting up python3-numpy (1:1.26.4+ds-13) ... 151s Setting up libjs-sphinxdoc (8.1.3-5) ... 151s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 151s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 151s Setting up libnetcdf22:s390x (1:4.9.3-1) ... 151s Setting up python3-h5py-serial (3.12.1-1) ... 152s Setting up python-h5netcdf-doc (1.4.1-1) ... 152s Setting up python3-h5py (3.12.1-1) ... 152s Setting up python3-cftime (1.6.4-1build2) ... 152s Setting up python3-netcdf4 (1.7.2-1build3) ... 152s Setting up python3-h5netcdf (1.4.1-1) ... 152s Processing triggers for systemd (257.2-3ubuntu1) ... 152s Processing triggers for man-db (2.13.0-1) ... 153s Processing triggers for libc-bin (2.40-4ubuntu1) ... 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-h5netcdf'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-h5netcdf-doc'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.tuy73n/command1-packages.all"], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command1-packages.all /tmp/autopkgtest-work.alyxlhwo/out/command1-packages.all 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.tuy73n/build.BFK/src'], kind short, sout raw, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.tuy73n/build.BFK/src already exists 154s autopkgtest [12:44:21]: test command1: set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k "not ros3" ; done 154s autopkgtest [12:44:21]: test command1: [----------------------- 154s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.tuy73n/wrapper.sh --debug --artifacts=/tmp/autopkgtest.tuy73n/command1-artifacts --chdir=/tmp/autopkgtest.tuy73n/build.BFK/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.tuy73n/command1-stderr --stdout=/tmp/autopkgtest.tuy73n/command1-stdout --tmp=/tmp/autopkgtest.tuy73n/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k "not ros3" ; done\''], kind test, sout raw, serr raw, env [] 154s /tmp/autopkgtest.tuy73n/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.tuy73n/command1-artifacts 154s /tmp/autopkgtest.tuy73n/wrapper.sh: changing to directory: /tmp/autopkgtest.tuy73n/build.BFK/src 154s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 154s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 154s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 154s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 154s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: LANG=C.UTF-8 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LANGUAGE 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_ADDRESS 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_ALL 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_COLLATE 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_CTYPE 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_IDENTIFICATION 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_MEASUREMENT 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_MESSAGES 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_MONETARY 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_NAME 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_NUMERIC 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_PAPER 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_TELEPHONE 154s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_TIME 154s /tmp/autopkgtest.tuy73n/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 154s /tmp/autopkgtest.tuy73n/wrapper.sh: pretending to be a login shell 154s /tmp/autopkgtest.tuy73n/wrapper.sh: will write standard error to /tmp/autopkgtest.tuy73n/command1-stderr 154s /tmp/autopkgtest.tuy73n/wrapper.sh: will write stdout to /tmp/autopkgtest.tuy73n/command1-stdout 154s /tmp/autopkgtest.tuy73n/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.tuy73n/autopkgtest_tmp 154s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 154s /tmp/autopkgtest.tuy73n/wrapper.sh: command to run: bash -ec set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k "not ros3" ; done 154s /tmp/autopkgtest.tuy73n/wrapper.sh: copying /tmp/tmp.YL7YffcPNb/out to stdout and file: /tmp/autopkgtest.tuy73n/command1-stdout 154s /tmp/autopkgtest.tuy73n/wrapper.sh: copying /tmp/tmp.YL7YffcPNb/err to standard error and file: /tmp/autopkgtest.tuy73n/command1-stdout 154s /tmp/autopkgtest.tuy73n/wrapper.sh: writing script pid 1718 to /tmp/autopkgtest_script_pid 154s Testing with python3.12: 154s ============================= test session starts ============================== 154s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.12 154s cachedir: .pytest_cache 154s rootdir: /tmp/autopkgtest.tuy73n/autopkgtest_tmp/tests 154s configfile: pytest.ini 154s plugins: typeguard-4.4.1 154s collecting ... collected 152 items / 1 deselected / 151 selected 154s 155s tests/test_h5netcdf.py::test_write_legacyapi_read_netCDF4 PASSED [ 0%] 155s tests/test_h5netcdf.py::test_roundtrip_h5netcdf_legacyapi PASSED [ 1%] 155s tests/test_h5netcdf.py::test_write_netCDF4_read_legacyapi PASSED [ 1%] 155s tests/test_h5netcdf.py::test_write_h5netcdf_read_legacyapi PASSED [ 2%] 155s tests/test_h5netcdf.py::test_write_h5netcdf_read_netCDF4 PASSED [ 3%] 155s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[testfile.nc-True] PASSED [ 3%] 155s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[testfile.nc-False] PASSED [ 4%] 155s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[hdf5://testfile-True] SKIPPED [ 5%] 155s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[hdf5://testfile-False] SKIPPED [ 5%] 155s tests/test_h5netcdf.py::test_write_netCDF4_read_h5netcdf[True] PASSED [ 6%] 155s tests/test_h5netcdf.py::test_write_netCDF4_read_h5netcdf[False] PASSED [ 7%] 155s tests/test_h5netcdf.py::test_write_legacyapi_read_h5netcdf[True] PASSED [ 7%] 155s tests/test_h5netcdf.py::test_write_legacyapi_read_h5netcdf[False] PASSED [ 8%] 155s tests/test_h5netcdf.py::test_fileobj[True] PASSED [ 9%] 155s tests/test_h5netcdf.py::test_fileobj[False] PASSED [ 9%] 155s tests/test_h5netcdf.py::test_h5py_file_obj[True] PASSED [ 10%] 155s tests/test_h5netcdf.py::test_h5py_file_obj[False] PASSED [ 11%] 155s tests/test_h5netcdf.py::test_repr[testfile.nc] PASSED [ 11%] 155s tests/test_h5netcdf.py::test_repr[hdf5://testfile] SKIPPED (h5pyd pa...) [ 12%] 155s tests/test_h5netcdf.py::test_attrs_api[testfile.nc] PASSED [ 13%] 155s tests/test_h5netcdf.py::test_attrs_api[hdf5://testfile] SKIPPED (h5p...) [ 13%] 155s tests/test_h5netcdf.py::test_shape_is_tied_to_coordinate[testfile.nc] PASSED [ 14%] 155s tests/test_h5netcdf.py::test_shape_is_tied_to_coordinate[hdf5://testfile] SKIPPED [ 15%] 155s tests/test_h5netcdf.py::test_optional_netcdf4_attrs[testfile.nc] PASSED [ 15%] 155s tests/test_h5netcdf.py::test_optional_netcdf4_attrs[hdf5://testfile] SKIPPED [ 16%] 155s tests/test_h5netcdf.py::test_error_handling[testfile.nc] PASSED [ 17%] 155s tests/test_h5netcdf.py::test_error_handling[hdf5://testfile] SKIPPED [ 17%] 155s tests/test_h5netcdf.py::test_decode_string_error[testfile.nc] PASSED [ 18%] 155s tests/test_h5netcdf.py::test_decode_string_error[hdf5://testfile] SKIPPED [ 19%] 155s tests/test_h5netcdf.py::test_invalid_netcdf4[testfile.nc] PASSED [ 19%] 155s tests/test_h5netcdf.py::test_invalid_netcdf4[hdf5://testfile] SKIPPED [ 20%] 155s tests/test_h5netcdf.py::test_fake_phony_dims[testfile.nc] PASSED [ 21%] 155s tests/test_h5netcdf.py::test_fake_phony_dims[hdf5://testfile] SKIPPED [ 21%] 155s tests/test_h5netcdf.py::test_invalid_netcdf4_mixed[testfile.nc] PASSED [ 22%] 155s tests/test_h5netcdf.py::test_invalid_netcdf4_mixed[hdf5://testfile] SKIPPED [ 23%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_malformed_dimension_scales[testfile.nc] PASSED [ 23%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_malformed_dimension_scales[hdf5://testfile] SKIPPED [ 24%] 155s tests/test_h5netcdf.py::test_hierarchical_access_auto_create[testfile.nc] PASSED [ 25%] 155s tests/test_h5netcdf.py::test_hierarchical_access_auto_create[hdf5://testfile] SKIPPED [ 25%] 155s tests/test_h5netcdf.py::test_Netcdf4Dimid[testfile.nc] PASSED [ 26%] 155s tests/test_h5netcdf.py::test_Netcdf4Dimid[hdf5://testfile] SKIPPED (...) [ 27%] 155s tests/test_h5netcdf.py::test_reading_str_array_from_netCDF4[True] PASSED [ 27%] 155s tests/test_h5netcdf.py::test_reading_str_array_from_netCDF4[False] PASSED [ 28%] 155s tests/test_h5netcdf.py::test_nc_properties_new[testfile.nc] PASSED [ 29%] 155s tests/test_h5netcdf.py::test_nc_properties_new[hdf5://testfile] SKIPPED [ 29%] 155s tests/test_h5netcdf.py::test_failed_read_open_and_clean_delete PASSED [ 30%] 155s tests/test_h5netcdf.py::test_create_variable_matching_saved_dimension[testfile.nc] PASSED [ 31%] 155s tests/test_h5netcdf.py::test_create_variable_matching_saved_dimension[hdf5://testfile] SKIPPED [ 31%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_error[testfile.nc] PASSED [ 32%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_error[hdf5://testfile] SKIPPED [ 33%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_okay[testfile.nc] PASSED [ 33%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_okay[hdf5://testfile] SKIPPED [ 34%] 155s tests/test_h5netcdf.py::test_invalid_netcdf_overwrite_valid PASSED [ 35%] 155s tests/test_h5netcdf.py::test_reopen_file_different_dimension_sizes PASSED [ 35%] 155s tests/test_h5netcdf.py::test_invalid_then_valid_no_ncproperties[testfile.nc] PASSED [ 36%] 155s tests/test_h5netcdf.py::test_invalid_then_valid_no_ncproperties[hdf5://testfile] SKIPPED [ 37%] 155s tests/test_h5netcdf.py::test_creating_and_resizing_unlimited_dimensions[testfile.nc] PASSED [ 37%] 155s tests/test_h5netcdf.py::test_creating_and_resizing_unlimited_dimensions[hdf5://testfile] SKIPPED [ 38%] 155s tests/test_h5netcdf.py::test_creating_variables_with_unlimited_dimensions[testfile.nc] PASSED [ 39%] 155s tests/test_h5netcdf.py::test_creating_variables_with_unlimited_dimensions[hdf5://testfile] SKIPPED [ 39%] 155s tests/test_h5netcdf.py::test_writing_to_an_unlimited_dimension[testfile.nc] PASSED [ 40%] 155s tests/test_h5netcdf.py::test_writing_to_an_unlimited_dimension[hdf5://testfile] SKIPPED [ 41%] 155s tests/test_h5netcdf.py::test_c_api_can_read_unlimited_dimensions PASSED [ 41%] 155s tests/test_h5netcdf.py::test_reading_unlimited_dimensions_created_with_c_api PASSED [ 42%] 155s tests/test_h5netcdf.py::test_reading_unused_unlimited_dimension[testfile.nc] PASSED [ 43%] 155s tests/test_h5netcdf.py::test_reading_unused_unlimited_dimension[hdf5://testfile] SKIPPED [ 43%] 155s tests/test_h5netcdf.py::test_reading_special_datatype_created_with_c_api PASSED [ 44%] 155s tests/test_h5netcdf.py::test_nc4_non_coord[testfile.nc] PASSED [ 45%] 155s tests/test_h5netcdf.py::test_nc4_non_coord[hdf5://testfile] SKIPPED [ 45%] 155s tests/test_h5netcdf.py::test_overwrite_existing_file PASSED [ 46%] 155s tests/test_h5netcdf.py::test_scales_on_append PASSED [ 47%] 155s tests/test_h5netcdf.py::test_create_attach_scales_netcdf4 PASSED [ 47%] 155s tests/test_h5netcdf.py::test_create_attach_scales_legacyapi PASSED [ 48%] 155s tests/test_h5netcdf.py::test_detach_scale[testfile.nc] PASSED [ 49%] 155s tests/test_h5netcdf.py::test_detach_scale[hdf5://testfile] SKIPPED (...) [ 49%] 155s tests/test_h5netcdf.py::test_is_scale[testfile.nc] PASSED [ 50%] 155s tests/test_h5netcdf.py::test_is_scale[hdf5://testfile] SKIPPED (h5py...) [ 50%] 155s tests/test_h5netcdf.py::test_get_dim_scale_refs[testfile.nc] PASSED [ 51%] 155s tests/test_h5netcdf.py::test_get_dim_scale_refs[hdf5://testfile] SKIPPED [ 52%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix0] PASSED [ 52%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix1] PASSED [ 53%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix2] PASSED [ 54%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix3] PASSED [ 54%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix4] PASSED [ 55%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix5] PASSED [ 56%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix6] PASSED [ 56%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix7] PASSED [ 57%] 156s tests/test_h5netcdf.py::test_dimensions[read_write_matrix8] PASSED [ 58%] 156s tests/test_h5netcdf.py::test_no_circular_references[testfile.nc] PASSED [ 58%] 156s tests/test_h5netcdf.py::test_no_circular_references[hdf5://testfile] SKIPPED [ 59%] 156s tests/test_h5netcdf.py::test_expanded_variables_netcdf4[netCDF4] PASSED [ 60%] 156s tests/test_h5netcdf.py::test_expanded_variables_netcdf4[h5netcdf.legacyapi] PASSED [ 60%] 156s tests/test_h5netcdf.py::test_creation_with_h5netcdf_edit_with_netcdf4 PASSED [ 61%] 156s tests/test_h5netcdf.py::test_track_order_specification PASSED [ 62%] 156s tests/test_h5netcdf.py::test_more_than_7_attr_creation PASSED [ 62%] 156s tests/test_h5netcdf.py::test_more_than_7_attr_creation_track_order[False] PASSED [ 63%] 156s tests/test_h5netcdf.py::test_more_than_7_attr_creation_track_order[True] PASSED [ 64%] 156s tests/test_h5netcdf.py::test_group_names PASSED [ 64%] 156s tests/test_h5netcdf.py::test_legacyapi_endianess[testfile.nc] PASSED [ 65%] 156s tests/test_h5netcdf.py::test_legacyapi_endianess[hdf5://testfile] SKIPPED [ 66%] 156s tests/test_h5netcdf.py::test_bool_slicing_length_one_dim PASSED [ 66%] 156s tests/test_h5netcdf.py::test_fancy_indexing[testfile.nc] PASSED [ 67%] 156s tests/test_h5netcdf.py::test_fancy_indexing[hdf5://testfile] SKIPPED [ 68%] 156s tests/test_h5netcdf.py::test_h5py_chunking PASSED [ 68%] 156s tests/test_h5netcdf.py::test_h5netcdf_chunking PASSED [ 69%] 156s tests/test_h5netcdf.py::test_create_invalid_netcdf_catch_error[testfile.nc] PASSED [ 70%] 156s tests/test_h5netcdf.py::test_create_invalid_netcdf_catch_error[hdf5://testfile] SKIPPED [ 70%] 156s tests/test_h5netcdf.py::test_dimensions_in_parent_groups PASSED [ 71%] 156s tests/test_h5netcdf.py::test_array_attributes PASSED [ 72%] 156s tests/test_h5netcdf.py::test_vlen_string_dataset_fillvalue[True] PASSED [ 72%] 156s tests/test_h5netcdf.py::test_vlen_string_dataset_fillvalue[False] PASSED [ 73%] 156s tests/test_h5netcdf.py::test_user_type_errors_new_api[testfile.nc] PASSED [ 74%] 156s tests/test_h5netcdf.py::test_user_type_errors_new_api[hdf5://testfile] SKIPPED [ 74%] 156s tests/test_h5netcdf.py::test_user_type_errors_legacyapi[testfile.nc] PASSED [ 75%] 156s tests/test_h5netcdf.py::test_user_type_errors_legacyapi[hdf5://testfile] SKIPPED [ 76%] 156s tests/test_h5netcdf.py::test_enum_type_errors_new_api[testfile.nc] PASSED [ 76%] 156s tests/test_h5netcdf.py::test_enum_type_errors_new_api[hdf5://testfile] SKIPPED [ 77%] 156s tests/test_h5netcdf.py::test_enum_type_errors_legacyapi[testfile.nc] PASSED [ 78%] 156s tests/test_h5netcdf.py::test_enum_type_errors_legacyapi[hdf5://testfile] SKIPPED [ 78%] 156s tests/test_h5netcdf.py::test_enum_type[testfile.nc] PASSED [ 79%] 156s tests/test_h5netcdf.py::test_enum_type[hdf5://testfile] SKIPPED (h5p...) [ 80%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-int] PASSED [ 80%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-int8] PASSED [ 81%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-uint16] PASSED [ 82%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-float32] PASSED [ 82%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-int64] PASSED [ 83%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-int] PASSED [ 84%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-int8] PASSED [ 84%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-uint16] PASSED [ 85%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-float32] PASSED [ 86%] 156s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-int64] PASSED [ 86%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-int] SKIPPED [ 87%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-int8] SKIPPED [ 88%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-uint16] SKIPPED [ 88%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-float32] SKIPPED [ 89%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-int64] SKIPPED [ 90%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-int] SKIPPED [ 90%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-int8] SKIPPED [ 91%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-uint16] SKIPPED [ 92%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-float32] SKIPPED [ 92%] 156s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-int64] SKIPPED [ 93%] 156s tests/test_h5netcdf.py::test_compoundtype_creation[testfile.nc-netCDF4] PASSED [ 94%] 156s tests/test_h5netcdf.py::test_compoundtype_creation[testfile.nc-h5netcdf.legacyapi] PASSED [ 94%] 156s tests/test_h5netcdf.py::test_compoundtype_creation[hdf5://testfile-netCDF4] SKIPPED [ 95%] 156s tests/test_h5netcdf.py::test_compoundtype_creation[hdf5://testfile-h5netcdf.legacyapi] SKIPPED [ 96%] 156s tests/test_h5netcdf.py::test_nc_complex_compatibility[testfile.nc-netCDF4] PASSED [ 96%] 156s tests/test_h5netcdf.py::test_nc_complex_compatibility[testfile.nc-h5netcdf.legacyapi] PASSED [ 97%] 156s tests/test_h5netcdf.py::test_nc_complex_compatibility[hdf5://testfile-netCDF4] SKIPPED [ 98%] 156s tests/test_h5netcdf.py::test_nc_complex_compatibility[hdf5://testfile-h5netcdf.legacyapi] SKIPPED [ 98%] 156s tests/test_h5netcdf.py::test_complex_type_creation_errors PASSED [ 99%] 156s tests/test_h5netcdf.py::test_hsds SKIPPED (h5pyd package not available) [100%] 156s 156s ================ 100 passed, 51 skipped, 1 deselected in 2.32s ================= 156s Testing with python3.13: 157s ============================= test session starts ============================== 157s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.13 157s cachedir: .pytest_cache 157s rootdir: /tmp/autopkgtest.tuy73n/autopkgtest_tmp/tests 157s configfile: pytest.ini 157s plugins: typeguard-4.4.1 157s collecting ... collected 152 items / 1 deselected / 151 selected 157s 157s tests/test_h5netcdf.py::test_write_legacyapi_read_netCDF4 PASSED [ 0%] 157s tests/test_h5netcdf.py::test_roundtrip_h5netcdf_legacyapi PASSED [ 1%] 157s tests/test_h5netcdf.py::test_write_netCDF4_read_legacyapi PASSED [ 1%] 157s tests/test_h5netcdf.py::test_write_h5netcdf_read_legacyapi PASSED [ 2%] 157s tests/test_h5netcdf.py::test_write_h5netcdf_read_netCDF4 PASSED [ 3%] 157s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[testfile.nc-True] PASSED [ 3%] 157s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[testfile.nc-False] PASSED [ 4%] 157s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[hdf5://testfile-True] SKIPPED [ 5%] 157s tests/test_h5netcdf.py::test_roundtrip_h5netcdf[hdf5://testfile-False] SKIPPED [ 5%] 157s tests/test_h5netcdf.py::test_write_netCDF4_read_h5netcdf[True] PASSED [ 6%] 157s tests/test_h5netcdf.py::test_write_netCDF4_read_h5netcdf[False] PASSED [ 7%] 157s tests/test_h5netcdf.py::test_write_legacyapi_read_h5netcdf[True] PASSED [ 7%] 157s tests/test_h5netcdf.py::test_write_legacyapi_read_h5netcdf[False] PASSED [ 8%] 157s tests/test_h5netcdf.py::test_fileobj[True] PASSED [ 9%] 158s tests/test_h5netcdf.py::test_fileobj[False] PASSED [ 9%] 158s tests/test_h5netcdf.py::test_h5py_file_obj[True] PASSED [ 10%] 158s tests/test_h5netcdf.py::test_h5py_file_obj[False] PASSED [ 11%] 158s tests/test_h5netcdf.py::test_repr[testfile.nc] PASSED [ 11%] 158s tests/test_h5netcdf.py::test_repr[hdf5://testfile] SKIPPED (h5pyd pa...) [ 12%] 158s tests/test_h5netcdf.py::test_attrs_api[testfile.nc] PASSED [ 13%] 158s tests/test_h5netcdf.py::test_attrs_api[hdf5://testfile] SKIPPED (h5p...) [ 13%] 158s tests/test_h5netcdf.py::test_shape_is_tied_to_coordinate[testfile.nc] PASSED [ 14%] 158s tests/test_h5netcdf.py::test_shape_is_tied_to_coordinate[hdf5://testfile] SKIPPED [ 15%] 158s tests/test_h5netcdf.py::test_optional_netcdf4_attrs[testfile.nc] PASSED [ 15%] 158s tests/test_h5netcdf.py::test_optional_netcdf4_attrs[hdf5://testfile] SKIPPED [ 16%] 158s tests/test_h5netcdf.py::test_error_handling[testfile.nc] PASSED [ 17%] 158s tests/test_h5netcdf.py::test_error_handling[hdf5://testfile] SKIPPED [ 17%] 158s tests/test_h5netcdf.py::test_decode_string_error[testfile.nc] PASSED [ 18%] 158s tests/test_h5netcdf.py::test_decode_string_error[hdf5://testfile] SKIPPED [ 19%] 158s tests/test_h5netcdf.py::test_invalid_netcdf4[testfile.nc] PASSED [ 19%] 158s tests/test_h5netcdf.py::test_invalid_netcdf4[hdf5://testfile] SKIPPED [ 20%] 158s tests/test_h5netcdf.py::test_fake_phony_dims[testfile.nc] PASSED [ 21%] 158s tests/test_h5netcdf.py::test_fake_phony_dims[hdf5://testfile] SKIPPED [ 21%] 158s tests/test_h5netcdf.py::test_invalid_netcdf4_mixed[testfile.nc] PASSED [ 22%] 158s tests/test_h5netcdf.py::test_invalid_netcdf4_mixed[hdf5://testfile] SKIPPED [ 23%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_malformed_dimension_scales[testfile.nc] PASSED [ 23%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_malformed_dimension_scales[hdf5://testfile] SKIPPED [ 24%] 158s tests/test_h5netcdf.py::test_hierarchical_access_auto_create[testfile.nc] PASSED [ 25%] 158s tests/test_h5netcdf.py::test_hierarchical_access_auto_create[hdf5://testfile] SKIPPED [ 25%] 158s tests/test_h5netcdf.py::test_Netcdf4Dimid[testfile.nc] PASSED [ 26%] 158s tests/test_h5netcdf.py::test_Netcdf4Dimid[hdf5://testfile] SKIPPED (...) [ 27%] 158s tests/test_h5netcdf.py::test_reading_str_array_from_netCDF4[True] PASSED [ 27%] 158s tests/test_h5netcdf.py::test_reading_str_array_from_netCDF4[False] PASSED [ 28%] 158s tests/test_h5netcdf.py::test_nc_properties_new[testfile.nc] PASSED [ 29%] 158s tests/test_h5netcdf.py::test_nc_properties_new[hdf5://testfile] SKIPPED [ 29%] 158s tests/test_h5netcdf.py::test_failed_read_open_and_clean_delete PASSED [ 30%] 158s tests/test_h5netcdf.py::test_create_variable_matching_saved_dimension[testfile.nc] PASSED [ 31%] 158s tests/test_h5netcdf.py::test_create_variable_matching_saved_dimension[hdf5://testfile] SKIPPED [ 31%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_error[testfile.nc] PASSED [ 32%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_error[hdf5://testfile] SKIPPED [ 33%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_okay[testfile.nc] PASSED [ 33%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_okay[hdf5://testfile] SKIPPED [ 34%] 158s tests/test_h5netcdf.py::test_invalid_netcdf_overwrite_valid PASSED [ 35%] 158s tests/test_h5netcdf.py::test_reopen_file_different_dimension_sizes PASSED [ 35%] 158s tests/test_h5netcdf.py::test_invalid_then_valid_no_ncproperties[testfile.nc] PASSED [ 36%] 158s tests/test_h5netcdf.py::test_invalid_then_valid_no_ncproperties[hdf5://testfile] SKIPPED [ 37%] 158s tests/test_h5netcdf.py::test_creating_and_resizing_unlimited_dimensions[testfile.nc] PASSED [ 37%] 158s tests/test_h5netcdf.py::test_creating_and_resizing_unlimited_dimensions[hdf5://testfile] SKIPPED [ 38%] 158s tests/test_h5netcdf.py::test_creating_variables_with_unlimited_dimensions[testfile.nc] PASSED [ 39%] 158s tests/test_h5netcdf.py::test_creating_variables_with_unlimited_dimensions[hdf5://testfile] SKIPPED [ 39%] 158s tests/test_h5netcdf.py::test_writing_to_an_unlimited_dimension[testfile.nc] PASSED [ 40%] 158s tests/test_h5netcdf.py::test_writing_to_an_unlimited_dimension[hdf5://testfile] SKIPPED [ 41%] 158s tests/test_h5netcdf.py::test_c_api_can_read_unlimited_dimensions PASSED [ 41%] 158s tests/test_h5netcdf.py::test_reading_unlimited_dimensions_created_with_c_api PASSED [ 42%] 158s tests/test_h5netcdf.py::test_reading_unused_unlimited_dimension[testfile.nc] PASSED [ 43%] 158s tests/test_h5netcdf.py::test_reading_unused_unlimited_dimension[hdf5://testfile] SKIPPED [ 43%] 158s tests/test_h5netcdf.py::test_reading_special_datatype_created_with_c_api PASSED [ 44%] 158s tests/test_h5netcdf.py::test_nc4_non_coord[testfile.nc] PASSED [ 45%] 158s tests/test_h5netcdf.py::test_nc4_non_coord[hdf5://testfile] SKIPPED [ 45%] 158s tests/test_h5netcdf.py::test_overwrite_existing_file PASSED [ 46%] 158s tests/test_h5netcdf.py::test_scales_on_append PASSED [ 47%] 158s tests/test_h5netcdf.py::test_create_attach_scales_netcdf4 PASSED [ 47%] 158s tests/test_h5netcdf.py::test_create_attach_scales_legacyapi PASSED [ 48%] 158s tests/test_h5netcdf.py::test_detach_scale[testfile.nc] PASSED [ 49%] 158s tests/test_h5netcdf.py::test_detach_scale[hdf5://testfile] SKIPPED (...) [ 49%] 158s tests/test_h5netcdf.py::test_is_scale[testfile.nc] PASSED [ 50%] 158s tests/test_h5netcdf.py::test_is_scale[hdf5://testfile] SKIPPED (h5py...) [ 50%] 158s tests/test_h5netcdf.py::test_get_dim_scale_refs[testfile.nc] PASSED [ 51%] 158s tests/test_h5netcdf.py::test_get_dim_scale_refs[hdf5://testfile] SKIPPED [ 52%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix0] PASSED [ 52%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix1] PASSED [ 53%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix2] PASSED [ 54%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix3] PASSED [ 54%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix4] PASSED [ 55%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix5] PASSED [ 56%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix6] PASSED [ 56%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix7] PASSED [ 57%] 158s tests/test_h5netcdf.py::test_dimensions[read_write_matrix8] PASSED [ 58%] 158s tests/test_h5netcdf.py::test_no_circular_references[testfile.nc] PASSED [ 58%] 158s tests/test_h5netcdf.py::test_no_circular_references[hdf5://testfile] SKIPPED [ 59%] 158s tests/test_h5netcdf.py::test_expanded_variables_netcdf4[netCDF4] PASSED [ 60%] 159s tests/test_h5netcdf.py::test_expanded_variables_netcdf4[h5netcdf.legacyapi] PASSED [ 60%] 159s tests/test_h5netcdf.py::test_creation_with_h5netcdf_edit_with_netcdf4 PASSED [ 61%] 159s tests/test_h5netcdf.py::test_track_order_specification PASSED [ 62%] 159s tests/test_h5netcdf.py::test_more_than_7_attr_creation PASSED [ 62%] 159s tests/test_h5netcdf.py::test_more_than_7_attr_creation_track_order[False] PASSED [ 63%] 159s tests/test_h5netcdf.py::test_more_than_7_attr_creation_track_order[True] PASSED [ 64%] 159s tests/test_h5netcdf.py::test_group_names PASSED [ 64%] 159s tests/test_h5netcdf.py::test_legacyapi_endianess[testfile.nc] PASSED [ 65%] 159s tests/test_h5netcdf.py::test_legacyapi_endianess[hdf5://testfile] SKIPPED [ 66%] 159s tests/test_h5netcdf.py::test_bool_slicing_length_one_dim PASSED [ 66%] 159s tests/test_h5netcdf.py::test_fancy_indexing[testfile.nc] PASSED [ 67%] 159s tests/test_h5netcdf.py::test_fancy_indexing[hdf5://testfile] SKIPPED [ 68%] 159s tests/test_h5netcdf.py::test_h5py_chunking PASSED [ 68%] 159s tests/test_h5netcdf.py::test_h5netcdf_chunking PASSED [ 69%] 159s tests/test_h5netcdf.py::test_create_invalid_netcdf_catch_error[testfile.nc] PASSED [ 70%] 159s tests/test_h5netcdf.py::test_create_invalid_netcdf_catch_error[hdf5://testfile] SKIPPED [ 70%] 159s tests/test_h5netcdf.py::test_dimensions_in_parent_groups PASSED [ 71%] 159s tests/test_h5netcdf.py::test_array_attributes PASSED [ 72%] 159s tests/test_h5netcdf.py::test_vlen_string_dataset_fillvalue[True] PASSED [ 72%] 159s tests/test_h5netcdf.py::test_vlen_string_dataset_fillvalue[False] PASSED [ 73%] 159s tests/test_h5netcdf.py::test_user_type_errors_new_api[testfile.nc] PASSED [ 74%] 159s tests/test_h5netcdf.py::test_user_type_errors_new_api[hdf5://testfile] SKIPPED [ 74%] 159s tests/test_h5netcdf.py::test_user_type_errors_legacyapi[testfile.nc] PASSED [ 75%] 159s tests/test_h5netcdf.py::test_user_type_errors_legacyapi[hdf5://testfile] SKIPPED [ 76%] 159s tests/test_h5netcdf.py::test_enum_type_errors_new_api[testfile.nc] PASSED [ 76%] 159s tests/test_h5netcdf.py::test_enum_type_errors_new_api[hdf5://testfile] SKIPPED [ 77%] 159s tests/test_h5netcdf.py::test_enum_type_errors_legacyapi[testfile.nc] PASSED [ 78%] 159s tests/test_h5netcdf.py::test_enum_type_errors_legacyapi[hdf5://testfile] SKIPPED [ 78%] 159s tests/test_h5netcdf.py::test_enum_type[testfile.nc] PASSED [ 79%] 159s tests/test_h5netcdf.py::test_enum_type[hdf5://testfile] SKIPPED (h5p...) [ 80%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-int] PASSED [ 80%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-int8] PASSED [ 81%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-uint16] PASSED [ 82%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-float32] PASSED [ 82%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-netCDF4-int64] PASSED [ 83%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-int] PASSED [ 84%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-int8] PASSED [ 84%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-uint16] PASSED [ 85%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-float32] PASSED [ 86%] 159s tests/test_h5netcdf.py::test_vltype_creation[testfile.nc-h5netcdf.legacyapi-int64] PASSED [ 86%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-int] SKIPPED [ 87%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-int8] SKIPPED [ 88%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-uint16] SKIPPED [ 88%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-float32] SKIPPED [ 89%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-netCDF4-int64] SKIPPED [ 90%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-int] SKIPPED [ 90%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-int8] SKIPPED [ 91%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-uint16] SKIPPED [ 92%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-float32] SKIPPED [ 92%] 159s tests/test_h5netcdf.py::test_vltype_creation[hdf5://testfile-h5netcdf.legacyapi-int64] SKIPPED [ 93%] 159s tests/test_h5netcdf.py::test_compoundtype_creation[testfile.nc-netCDF4] PASSED [ 94%] 159s tests/test_h5netcdf.py::test_compoundtype_creation[testfile.nc-h5netcdf.legacyapi] PASSED [ 94%] 159s tests/test_h5netcdf.py::test_compoundtype_creation[hdf5://testfile-netCDF4] SKIPPED [ 95%] 159s tests/test_h5netcdf.py::test_compoundtype_creation[hdf5://testfile-h5netcdf.legacyapi] SKIPPED [ 96%] 159s tests/test_h5netcdf.py::test_nc_complex_compatibility[testfile.nc-netCDF4] PASSED [ 96%] 159s tests/test_h5netcdf.py::test_nc_complex_compatibility[testfile.nc-h5netcdf.legacyapi] PASSED [ 97%] 159s tests/test_h5netcdf.py::test_nc_complex_compatibility[hdf5://testfile-netCDF4] SKIPPED [ 98%] 159s tests/test_h5netcdf.py::test_nc_complex_compatibility[hdf5://testfile-h5netcdf.legacyapi] SKIPPED [ 98%] 159s tests/test_h5netcdf.py::test_complex_type_creation_errors PASSED [ 99%] 159s tests/test_h5netcdf.py::test_hsds SKIPPED (h5pyd package not available) [100%] 159s 159s ================ 100 passed, 51 skipped, 1 deselected in 2.19s ================= 159s /tmp/autopkgtest.tuy73n/wrapper.sh: checking for leaked background processes... 159s /tmp/autopkgtest.tuy73n/wrapper.sh: waiting for tee/cat subprocesses... 159s /tmp/autopkgtest.tuy73n/wrapper.sh: cleaning up... 159s /tmp/autopkgtest.tuy73n/wrapper.sh: Exit status: 0 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [12:44:26]: test command1: -----------------------] 159s autopkgtest: DBG: testbed executing test finished with exit status 0 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command1-stdout /tmp/autopkgtest-work.alyxlhwo/out/command1-stdout 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command1-stderr /tmp/autopkgtest-work.alyxlhwo/out/command1-stderr 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest [12:44:27]: test command1: - - - - - - - - - - results - - - - - - - - - - 160s command1 PASS 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command1-artifacts/ /tmp/autopkgtest-work.alyxlhwo/out/artifacts/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.tuy73n/command1-artifacts', '/tmp/autopkgtest.tuy73n/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest [12:44:27]: test command2: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'], deps_new=['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['python3-h5netcdf', 'python-h5netcdf-doc', 'python3-all', 'python3-netcdf4', 'python3-pytest'] 160s autopkgtest: DBG: install-deps: satisfying python3-h5netcdf, python-h5netcdf-doc, python3-all, python3-netcdf4, python3-pytest 160s autopkgtest: DBG: can use apt-get on testbed: True 160s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-h5netcdf, python-h5netcdf-doc, python3-all, python3-netcdf4, python3-pytest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 160s Building dependency tree... 160s Reading state information... 160s Starting pkgProblemResolver with broken count: 0 160s Starting 2 pkgProblemResolver with broken count: 0 160s Done 161s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-h5netcdf'], kind short, sout pipe, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-h5netcdf-doc'], kind short, sout pipe, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.tuy73n/command2-packages.all"], kind short, sout raw, serr pipe, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command2-packages.all /tmp/autopkgtest-work.alyxlhwo/out/command2-packages.all 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.tuy73n/build.BFK/src'], kind short, sout raw, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.tuy73n/build.BFK/src already exists 161s autopkgtest [12:44:28]: test command2: set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k ros3 ; done 161s autopkgtest [12:44:28]: test command2: [----------------------- 161s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.tuy73n/wrapper.sh --debug --artifacts=/tmp/autopkgtest.tuy73n/command2-artifacts --chdir=/tmp/autopkgtest.tuy73n/build.BFK/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.tuy73n/command2-stderr --stdout=/tmp/autopkgtest.tuy73n/command2-stdout --tmp=/tmp/autopkgtest.tuy73n/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k ros3 ; done\''], kind test, sout raw, serr raw, env [] 162s /tmp/autopkgtest.tuy73n/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.tuy73n/command2-artifacts 162s /tmp/autopkgtest.tuy73n/wrapper.sh: changing to directory: /tmp/autopkgtest.tuy73n/build.BFK/src 162s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 162s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 162s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 162s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 162s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: LANG=C.UTF-8 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LANGUAGE 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_ADDRESS 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_ALL 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_COLLATE 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_CTYPE 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_IDENTIFICATION 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_MEASUREMENT 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_MESSAGES 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_MONETARY 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_NAME 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_NUMERIC 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_PAPER 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_TELEPHONE 162s /tmp/autopkgtest.tuy73n/wrapper.sh: unsetting environment: LC_TIME 162s /tmp/autopkgtest.tuy73n/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 162s /tmp/autopkgtest.tuy73n/wrapper.sh: pretending to be a login shell 162s /tmp/autopkgtest.tuy73n/wrapper.sh: will write standard error to /tmp/autopkgtest.tuy73n/command2-stderr 162s /tmp/autopkgtest.tuy73n/wrapper.sh: will write stdout to /tmp/autopkgtest.tuy73n/command2-stdout 162s /tmp/autopkgtest.tuy73n/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.tuy73n/autopkgtest_tmp 162s /tmp/autopkgtest.tuy73n/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 162s /tmp/autopkgtest.tuy73n/wrapper.sh: command to run: bash -ec set -e ; cp -a h5netcdf/tests "$AUTOPKGTEST_TMP" ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -m pytest -v tests -k ros3 ; done 162s /tmp/autopkgtest.tuy73n/wrapper.sh: copying /tmp/tmp.TNxaaij92j/out to stdout and file: /tmp/autopkgtest.tuy73n/command2-stdout 162s /tmp/autopkgtest.tuy73n/wrapper.sh: copying /tmp/tmp.TNxaaij92j/err to standard error and file: /tmp/autopkgtest.tuy73n/command2-stdout 162s /tmp/autopkgtest.tuy73n/wrapper.sh: writing script pid 1880 to /tmp/autopkgtest_script_pid 162s Testing with python3.12: 162s ============================= test session starts ============================== 162s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.12 162s cachedir: .pytest_cache 162s rootdir: /tmp/autopkgtest.tuy73n/autopkgtest_tmp/tests 162s configfile: pytest.ini 162s plugins: typeguard-4.4.1 162s collecting ... collected 152 items / 151 deselected / 1 selected 162s 164s tests/test_h5netcdf.py::test_ros3 PASSED [100%] 164s 164s ====================== 1 passed, 151 deselected in 1.79s ======================= 164s Testing with python3.13: 164s ============================= test session starts ============================== 164s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.13 164s cachedir: .pytest_cache 164s rootdir: /tmp/autopkgtest.tuy73n/autopkgtest_tmp/tests 164s configfile: pytest.ini 164s plugins: typeguard-4.4.1 164s collecting ... collected 152 items / 151 deselected / 1 selected 164s 166s tests/test_h5netcdf.py::test_ros3 PASSED [100%] 166s 166s ====================== 1 passed, 151 deselected in 1.70s ======================= 166s /tmp/autopkgtest.tuy73n/wrapper.sh: checking for leaked background processes... 166s /tmp/autopkgtest.tuy73n/wrapper.sh: waiting for tee/cat subprocesses... 166s /tmp/autopkgtest.tuy73n/wrapper.sh: cleaning up... 166s /tmp/autopkgtest.tuy73n/wrapper.sh: Exit status: 0 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [12:44:33]: test command2: -----------------------] 166s autopkgtest: DBG: testbed executing test finished with exit status 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command2-stdout /tmp/autopkgtest-work.alyxlhwo/out/command2-stdout 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command2-stderr /tmp/autopkgtest-work.alyxlhwo/out/command2-stderr 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest [12:44:33]: test command2: - - - - - - - - - - results - - - - - - - - - - 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.tuy73n/command2-artifacts/ /tmp/autopkgtest-work.alyxlhwo/out/artifacts/ 166s command2 PASS 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.tuy73n/command2-artifacts', '/tmp/autopkgtest.tuy73n/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 167s autopkgtest [12:44:34]: @@@@@@@@@@@@@@@@@@@@ summary 167s command1 PASS 167s command2 PASS 167s autopkgtest: DBG: testbed stop 167s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.tuy73n 167s autopkgtest: DBG: sending command to testbed: close 184s autopkgtest: DBG: got reply from testbed: ok 184s autopkgtest: DBG: sending command to testbed: quit 184s nova [W] Using flock in prodstack6-s390x 184s flock: timeout while waiting to get lock 184s Creating nova instance adt-plucky-s390x-python-h5netcdf-20250219-124147-juju-7f2275-prod-proposed-migration-environment-15-f04ba715-ba36-4880-9e69-1eed205c262e from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 184s nova [W] Timed out waiting for 87c32f37-83cf-4b21-b6ed-2c274a83ca28 to get deleted.