0s autopkgtest: DBG: testbed init 0s autopkgtest [08:09:57]: starting date and time: 2025-02-19 08:09:57+0000 0s autopkgtest [08:09:57]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [08:09:57]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.z8qos2ju/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:openmpi,src:pytorch,src:xnnpack --apt-upgrade pytorch --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-32.secgroup --name adt-plucky-s390x-pytorch-20250219-080957-juju-7f2275-prod-proposed-migration-environment-15-bab8a12d-5cb0-4342-a973-2c3930adbbc6 --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 67s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.wFE02M 67s autopkgtest: DBG: sending command to testbed: print-execute-command 67s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.nnx3sg39/runcmd 67s autopkgtest: DBG: sending command to testbed: capabilities 67s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu reboot revert root-on-testbed 67s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 67s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.wFE02M/wrapper.sh 67s autopkgtest: DBG: got reply from testbed: ok 67s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/wrapper.sh'], kind short, sout raw, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest [08:11:04]: testbed dpkg architecture: s390x 67s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest [08:11:05]: testbed apt version: 2.9.30 68s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: testbed has eatmydata 68s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest [08:11:05]: @@@@@@@@@@@@@@@@@@@@ test bed setup 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest [08:11:05]: testbed release detected to be: None 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: adding APT source: Types: deb deb-src 68s URIs: http://ftpmaster.internal/ubuntu/ 68s Suites: plucky-proposed 68s Components: main restricted universe multiverse 68s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 68s 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 [] 69s autopkgtest: DBG: testbed command exited with code 0 69s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 69s Package: * 69s Pin: release plucky-proposed 69s Pin-Priority: 500 69s 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 [] 69s autopkgtest: DBG: testbed command exited with code 0 69s autopkgtest [08:11:06]: updating testbed package index (apt update) 69s 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'] 69s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 69s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 69s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 69s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 69s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 69s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 69s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 69s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 70s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 70s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 70s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 70s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 70s Fetched 1651 kB in 1s (1906 kB/s) 70s Reading package lists... 70s autopkgtest: DBG: testbed command exited with code 0 70s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 70s Package: * 70s Pin: release plucky-proposed 70s Pin-Priority: 100 70s 70s Package: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any 70s Pin: release plucky-proposed 70s Pin-Priority: 995 70s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 71s autopkgtest: DBG: testbed command exited with code 0 71s 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.wFE02M/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 71s autopkgtest: DBG: testbed command exited with code 0 71s 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'] 71s + lsb_release --codename --short 71s + RELEASE=plucky 71s + cat 71s + [ plucky != trusty ] 71s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 71s Reading package lists... 71s Building dependency tree... 71s Reading state information... 71s Calculating upgrade... 71s The following packages were automatically installed and are no longer required: 71s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 71s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 71s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 71s linux-tools-6.11.0-8-generic 71s Use 'sudo apt autoremove' to remove them. 71s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 71s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 71s + /usr/lib/apt/apt-helper analyze-pattern ?true 71s + uname -r 71s + sed s/\./\\./g 71s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 71s + apt list ?obsolete 71s + tail -n+2 71s + cut -d/ -f1 71s + grep -v ^linux-.*6\.12\.0-15-generic.* 71s + true 71s + obsolete_pkgs= 71s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 71s Reading package lists... 71s Building dependency tree... 71s Reading state information... 72s The following packages will be REMOVED: 72s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 72s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 72s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 72s linux-tools-6.11.0-8-generic* 72s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 72s After this operation, 167 MB disk space will be freed. 72s (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.) 72s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 72s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 72s Removing libpython3.12t64:s390x (3.12.9-1) ... 72s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 72s Removing libnsl2:s390x (1.3.0-3build3) ... 72s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 72s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 72s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 73s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 73s Processing triggers for libc-bin (2.40-4ubuntu1) ... 73s (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 ... 55930 files and directories currently installed.) 73s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 73s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 73s + grep -q trusty /etc/lsb-release 73s + [ ! -d /usr/share/doc/unattended-upgrades ] 73s + [ ! -d /usr/share/doc/lxd ] 73s + [ ! -d /usr/share/doc/lxd-client ] 73s + [ ! -d /usr/share/doc/snapd ] 73s + type iptables 73s + cat 73s + chmod 755 /etc/rc.local 73s + . /etc/rc.local 73s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 73s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 73s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 73s + uname -m 73s + [ s390x = ppc64le ] 73s + [ -d /run/systemd/system ] 73s + systemd-detect-virt --quiet --vm 73s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 73s + cat 73s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 73s + echo COMPRESS=lz4 73s autopkgtest: DBG: testbed command exited with code 0 73s autopkgtest [08:11:10]: upgrading testbed (apt dist-upgrade and autopurge) 73s 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'] 73s Reading package lists... 74s Building dependency tree... 74s Reading state information... 74s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 74s Starting 2 pkgProblemResolver with broken count: 0 74s Done 74s Entering ResolveByKeep 74s 74s The following packages will be upgraded: 74s libc-bin libc-dev-bin libc6 libc6-dev locales 74s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 74s Need to get 9512 kB of archives. 74s After this operation, 288 kB of additional disk space will be used. 74s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 74s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 75s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 75s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 75s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 75s Preconfiguring packages ... 75s Fetched 9512 kB in 1s (10.6 MB/s) 75s (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 ... 55928 files and directories currently installed.) 75s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 75s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 75s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 75s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 75s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 75s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 75s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 76s Checking for services that may need to be restarted... 76s Checking init scripts... 76s Checking for services that may need to be restarted... 76s Checking init scripts... 76s Stopping some services possibly affected by the upgrade (will be restarted later): 76s cron: stopping...done. 76s 76s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 76s Setting up libc6:s390x (2.41-1ubuntu1) ... 76s Checking for services that may need to be restarted... 76s Checking init scripts... 76s Restarting services possibly affected by the upgrade: 76s cron: restarting...done. 76s 76s Services restarted successfully. 76s (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.) 76s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 76s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 76s Setting up libc-bin (2.41-1ubuntu1) ... 76s Setting up locales (2.41-1ubuntu1) ... 76s Installing new version of config file /etc/locale.alias ... 76s Generating locales (this might take a while)... 77s en_US.UTF-8... done 77s Generation complete. 77s Setting up libc-dev-bin (2.41-1ubuntu1) ... 77s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 77s Processing triggers for man-db (2.13.0-1) ... 78s Processing triggers for systemd (257.2-3ubuntu1) ... 79s autopkgtest: DBG: testbed command exited with code 0 79s 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'] 79s Reading package lists... 79s Building dependency tree... 79s Reading state information... 79s Starting pkgProblemResolver with broken count: 0 79s Starting 2 pkgProblemResolver with broken count: 0 79s Done 79s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 79s autopkgtest: DBG: testbed command exited with code 0 79s 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.wFE02M/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 80s autopkgtest: DBG: testbed command exited with code 1 80s autopkgtest [08:11:17]: rebooting testbed after setup commands that affected boot 80s autopkgtest: DBG: sending command to testbed: reboot 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest [08:11:36]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 99s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/testbed-packages"], kind short, sout raw, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/testbed-packages /tmp/autopkgtest-work.z8qos2ju/out/testbed-packages 99s autopkgtest: DBG: got reply from testbed: ok 99s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 99s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 101s autopkgtest: DBG: got reply from testbed: ok 101s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: Binaries: initialising 101s autopkgtest [08:11:38]: @@@@@@@@@@@@@@@@@@@@ apt-source pytorch 101s autopkgtest: DBG: blame += pytorch 101s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 101s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pytorch'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libtorch-dev$'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libtorch-dev=2.6.0+dfsg-1'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libtorch-test$'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libtorch-test=2.6.0+dfsg-1'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libtorch2\\.5$'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libtorch2\\.6$'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libtorch2.6=2.6.0+dfsg-1'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-torch$'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-torch=2.6.0+dfsg-1'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: install_deps: deps_new=[] 103s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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.wFE02M/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pytorch=2.6.0+dfsg-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 pytorch_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1'] 104s + cd / 104s + mktemp -d /tmp/autopkgtest.wFE02M/build.XXX 104s + builddir=/tmp/autopkgtest.wFE02M/build.E4h 104s + cd /tmp/autopkgtest.wFE02M/build.E4h 104s + apt-get source -d -q --only-source pytorch=2.6.0+dfsg-1 106s + OUT=Reading package lists... 106s NOTICE: 'pytorch' packaging is maintained in the 'Git' version control system at: 106s https://salsa.debian.org/deeplearning-team/pytorch.git 106s Please use: 106s git clone https://salsa.debian.org/deeplearning-team/pytorch.git 106s to retrieve the latest (possibly unreleased) updates to the package. 106s Need to get 27.4 MB of source archives. 106s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (dsc) [3491 B] 106s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (tar) [27.2 MB] 106s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (diff) [212 kB] 106s Fetched 27.4 MB in 2s (12.7 MB/s) 106s Download complete and in download only mode 106s + [ -n ] 106s + grep ^Get: 106s + echo Reading package lists... 106s NOTICE: 'pytorch' packaging is maintained in the 'Git' version control system at: 106s https://salsa.debian.org/deeplearning-team/pytorch.git 106s Please use: 106s git clone https://salsa.debian.org/deeplearning-team/pytorch.git 106s to retrieve the latest (possibly unreleased) updates to the package. 106s Need to get 27.4 MB of source archives. 106s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (dsc) [3491 B] 106s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (tar) [27.2 MB] 106s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (diff) [212 kB] 106s Fetched 27.4 MB in 2s (12.7 MB/s) 106s Download complete and in download only mode 106s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (dsc) [3491 B] 106s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (tar) [27.2 MB] 106s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe pytorch 2.6.0+dfsg-1 (diff) [212 kB] 106s + dpkg-source -x pytorch_2.6.0+dfsg-1.dsc src 106s gpgv: Signature made Mon Feb 17 18:01:14 2025 UTC 106s gpgv: using RSA key F8583EFAA9A91F3AA34B3C92CE11A7B07B3AB946 106s gpgv: Can't check signature: No public key 106s dpkg-source: warning: cannot verify inline signature for ./pytorch_2.6.0+dfsg-1.dsc: no acceptable signature found 108s + chmod -R a+rX . 108s + cd src/. 108s + pwd 108s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [08:11:45]: testing package pytorch version 2.6.0+dfsg-1 108s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/build.E4h/src/debian/ /tmp/autopkgtest-work.z8qos2ju/out/pkg/debian/ 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: processing dependency python3-torch 108s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 108s autopkgtest: DBG: Test defined: name py_import_and_version path None command "cd test/ ; python3 -c "import sys, torch as th; print(sys.version, th.__path__, th.__version__)"" restrictions ['allow-stderr'] features ['test-name=py_import_and_version'] depends ['python3-torch'] 108s autopkgtest: DBG: processing dependency python3-torch 108s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 108s autopkgtest: DBG: processing dependency libopenblas0 108s autopkgtest: DBG: Test defined: name py_blas_openblas path None command "cd debian/tests ; python3 blas.py" restrictions ['allow-stderr'] features ['test-name=py_blas_openblas'] depends ['python3-torch', 'libopenblas0'] 109s autopkgtest: DBG: processing dependency python3-torch 109s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 109s autopkgtest: DBG: processing dependency libblis4 109s autopkgtest: DBG: Test defined: name py_blas_blis path None command "cd debian/tests ; python3 blas.py" restrictions ['allow-stderr'] features ['test-name=py_blas_blis'] depends ['python3-torch', 'libblis4'] 109s autopkgtest: DBG: processing dependency python3-torch 109s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 109s autopkgtest: DBG: Test defined: name py_sequential path None command "cd debian/tests ; python3 sequential.py" restrictions ['allow-stderr'] features ['test-name=py_sequential'] depends ['python3-torch'] 109s autopkgtest: DBG: processing dependency @ 109s autopkgtest: DBG: synthesised dependency python3-torch 109s autopkgtest: DBG: synthesised dependency libtorch-dev 109s autopkgtest: DBG: synthesised dependency libtorch2.6 109s autopkgtest: DBG: synthesised dependency libtorch-test 109s autopkgtest: DBG: Test defined: name show_dangling_symlink_if_any path None command "cd debian/tests ; find /usr -xtype l -print || true" restrictions ['allow-stderr'] features ['test-name=show_dangling_symlink_if_any'] depends ['python3-torch', 'libtorch-dev', 'libtorch2.6', 'libtorch-test'] 109s autopkgtest: DBG: processing dependency build-essential 109s autopkgtest: DBG: processing dependency ninja-build 109s autopkgtest: DBG: processing dependency libtorch-dev 109s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 109s autopkgtest: DBG: processing dependency libtorch-test 109s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 109s autopkgtest: DBG: Test defined: name 1_of_104__cpptest__CppSignature_test path None command "/usr/lib/libtorch-test/CppSignature_test" restrictions ['allow-stderr'] features ['test-name=1_of_104__cpptest__CppSignature_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 109s autopkgtest: DBG: processing dependency build-essential 109s autopkgtest: DBG: processing dependency ninja-build 109s autopkgtest: DBG: processing dependency libtorch-dev 109s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 109s autopkgtest: DBG: processing dependency libtorch-test 109s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 109s autopkgtest: DBG: Test defined: name 2_of_104__cpptest__Dict_test path None command "/usr/lib/libtorch-test/Dict_test" restrictions ['allow-stderr'] features ['test-name=2_of_104__cpptest__Dict_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 109s autopkgtest: DBG: processing dependency build-essential 109s autopkgtest: DBG: processing dependency ninja-build 109s autopkgtest: DBG: processing dependency libtorch-dev 109s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 109s autopkgtest: DBG: processing dependency libtorch-test 109s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 109s autopkgtest: DBG: Test defined: name 3_of_104__cpptest__Dimname_test path None command "/usr/lib/libtorch-test/Dimname_test" restrictions ['allow-stderr'] features ['test-name=3_of_104__cpptest__Dimname_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 4_of_104__cpptest__IListRef_test path None command "/usr/lib/libtorch-test/IListRef_test" restrictions ['allow-stderr'] features ['test-name=4_of_104__cpptest__IListRef_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 5_of_104__cpptest__KernelFunction_test path None command "/usr/lib/libtorch-test/KernelFunction_test" restrictions ['allow-stderr'] features ['test-name=5_of_104__cpptest__KernelFunction_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 6_of_104__cpptest__List_test path None command "/usr/lib/libtorch-test/List_test" restrictions ['allow-stderr'] features ['test-name=6_of_104__cpptest__List_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 7_of_104__cpptest__MaybeOwned_test path None command "/usr/lib/libtorch-test/MaybeOwned_test" restrictions ['allow-stderr'] features ['test-name=7_of_104__cpptest__MaybeOwned_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 8_of_104__cpptest__NamedTensor_test path None command "/usr/lib/libtorch-test/NamedTensor_test" restrictions ['allow-stderr'] features ['test-name=8_of_104__cpptest__NamedTensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 9_of_104__cpptest__StorageUtils_test path None command "/usr/lib/libtorch-test/StorageUtils_test" restrictions ['allow-stderr'] features ['test-name=9_of_104__cpptest__StorageUtils_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 110s autopkgtest: DBG: processing dependency build-essential 110s autopkgtest: DBG: processing dependency ninja-build 110s autopkgtest: DBG: processing dependency libtorch-dev 110s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 110s autopkgtest: DBG: processing dependency libtorch-test 110s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 110s autopkgtest: DBG: Test defined: name 10_of_104__cpptest__apply_utils_test path None command "/usr/lib/libtorch-test/apply_utils_test" restrictions ['allow-stderr'] features ['test-name=10_of_104__cpptest__apply_utils_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 111s autopkgtest: DBG: processing dependency build-essential 111s autopkgtest: DBG: processing dependency ninja-build 111s autopkgtest: DBG: processing dependency libtorch-dev 111s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 111s autopkgtest: DBG: processing dependency libtorch-test 111s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 111s autopkgtest: DBG: Test defined: name 11_of_104__cpptest__atest path None command "/usr/lib/libtorch-test/atest" restrictions ['allow-stderr'] features ['test-name=11_of_104__cpptest__atest'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 111s autopkgtest: DBG: processing dependency build-essential 111s autopkgtest: DBG: processing dependency ninja-build 111s autopkgtest: DBG: processing dependency libtorch-dev 111s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 111s autopkgtest: DBG: processing dependency libtorch-test 111s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 111s autopkgtest: DBG: Test defined: name 12_of_104__cpptest__backend_fallback_test path None command "/usr/lib/libtorch-test/backend_fallback_test" restrictions ['allow-stderr'] features ['test-name=12_of_104__cpptest__backend_fallback_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 111s autopkgtest: DBG: processing dependency build-essential 111s autopkgtest: DBG: processing dependency ninja-build 111s autopkgtest: DBG: processing dependency libtorch-dev 111s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 111s autopkgtest: DBG: processing dependency libtorch-test 111s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 111s autopkgtest: DBG: Test defined: name 13_of_104__cpptest__basic path None command "/usr/lib/libtorch-test/basic" restrictions ['allow-stderr'] features ['test-name=13_of_104__cpptest__basic'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 111s autopkgtest: DBG: processing dependency build-essential 111s autopkgtest: DBG: processing dependency ninja-build 111s autopkgtest: DBG: processing dependency libtorch-dev 111s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 111s autopkgtest: DBG: processing dependency libtorch-test 111s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 111s autopkgtest: DBG: Test defined: name 14_of_104__cpptest__broadcast_test path None command "/usr/lib/libtorch-test/broadcast_test" restrictions ['allow-stderr'] features ['test-name=14_of_104__cpptest__broadcast_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 111s autopkgtest: DBG: processing dependency build-essential 111s autopkgtest: DBG: processing dependency ninja-build 111s autopkgtest: DBG: processing dependency libtorch-dev 111s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 111s autopkgtest: DBG: processing dependency libtorch-test 111s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 111s autopkgtest: DBG: Test defined: name 15_of_104__cpptest__c10_Bitset_test path None command "/usr/lib/libtorch-test/c10_Bitset_test" restrictions ['allow-stderr'] features ['test-name=15_of_104__cpptest__c10_Bitset_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 111s autopkgtest: DBG: processing dependency build-essential 111s autopkgtest: DBG: processing dependency ninja-build 111s autopkgtest: DBG: processing dependency libtorch-dev 111s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 111s autopkgtest: DBG: processing dependency libtorch-test 111s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 111s autopkgtest: DBG: Test defined: name 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test path None command "/usr/lib/libtorch-test/c10_CompileTimeFunctionPointer_test" restrictions ['allow-stderr'] features ['test-name=16_of_104__cpptest__c10_CompileTimeFunctionPointer_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 112s autopkgtest: DBG: processing dependency build-essential 112s autopkgtest: DBG: processing dependency ninja-build 112s autopkgtest: DBG: processing dependency libtorch-dev 112s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 112s autopkgtest: DBG: processing dependency libtorch-test 112s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 112s autopkgtest: DBG: Test defined: name 17_of_104__cpptest__c10_ConstexprCrc_test path None command "/usr/lib/libtorch-test/c10_ConstexprCrc_test" restrictions ['allow-stderr'] features ['test-name=17_of_104__cpptest__c10_ConstexprCrc_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 112s autopkgtest: DBG: processing dependency build-essential 112s autopkgtest: DBG: processing dependency ninja-build 112s autopkgtest: DBG: processing dependency libtorch-dev 112s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 112s autopkgtest: DBG: processing dependency libtorch-test 112s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 112s autopkgtest: DBG: Test defined: name 18_of_104__cpptest__c10_DeadlockDetection_test path None command "/usr/lib/libtorch-test/c10_DeadlockDetection_test" restrictions ['allow-stderr'] features ['test-name=18_of_104__cpptest__c10_DeadlockDetection_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 112s autopkgtest: DBG: processing dependency build-essential 112s autopkgtest: DBG: processing dependency ninja-build 112s autopkgtest: DBG: processing dependency libtorch-dev 112s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 112s autopkgtest: DBG: processing dependency libtorch-test 112s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 112s autopkgtest: DBG: Test defined: name 19_of_104__cpptest__c10_DeviceGuard_test path None command "/usr/lib/libtorch-test/c10_DeviceGuard_test" restrictions ['allow-stderr'] features ['test-name=19_of_104__cpptest__c10_DeviceGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 112s autopkgtest: DBG: processing dependency build-essential 112s autopkgtest: DBG: processing dependency ninja-build 112s autopkgtest: DBG: processing dependency libtorch-dev 112s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 112s autopkgtest: DBG: processing dependency libtorch-test 112s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 112s autopkgtest: DBG: Test defined: name 20_of_104__cpptest__c10_Device_test path None command "/usr/lib/libtorch-test/c10_Device_test" restrictions ['allow-stderr'] features ['test-name=20_of_104__cpptest__c10_Device_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 112s autopkgtest: DBG: processing dependency build-essential 112s autopkgtest: DBG: processing dependency ninja-build 112s autopkgtest: DBG: processing dependency libtorch-dev 112s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 112s autopkgtest: DBG: processing dependency libtorch-test 112s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 112s autopkgtest: DBG: Test defined: name 21_of_104__cpptest__c10_DispatchKeySet_test path None command "/usr/lib/libtorch-test/c10_DispatchKeySet_test" restrictions ['allow-stderr'] features ['test-name=21_of_104__cpptest__c10_DispatchKeySet_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 112s autopkgtest: DBG: processing dependency build-essential 112s autopkgtest: DBG: processing dependency ninja-build 112s autopkgtest: DBG: processing dependency libtorch-dev 112s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 112s autopkgtest: DBG: processing dependency libtorch-test 112s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 112s autopkgtest: DBG: Test defined: name 22_of_104__cpptest__c10_Half_test path None command "/usr/lib/libtorch-test/c10_Half_test" restrictions ['allow-stderr'] features ['test-name=22_of_104__cpptest__c10_Half_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 113s autopkgtest: DBG: processing dependency build-essential 113s autopkgtest: DBG: processing dependency ninja-build 113s autopkgtest: DBG: processing dependency libtorch-dev 113s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 113s autopkgtest: DBG: processing dependency libtorch-test 113s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 113s autopkgtest: DBG: Test defined: name 23_of_104__cpptest__c10_InlineDeviceGuard_test path None command "/usr/lib/libtorch-test/c10_InlineDeviceGuard_test" restrictions ['allow-stderr'] features ['test-name=23_of_104__cpptest__c10_InlineDeviceGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 113s autopkgtest: DBG: processing dependency build-essential 113s autopkgtest: DBG: processing dependency ninja-build 113s autopkgtest: DBG: processing dependency libtorch-dev 113s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 113s autopkgtest: DBG: processing dependency libtorch-test 113s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 113s autopkgtest: DBG: Test defined: name 24_of_104__cpptest__c10_InlineStreamGuard_test path None command "/usr/lib/libtorch-test/c10_InlineStreamGuard_test" restrictions ['allow-stderr'] features ['test-name=24_of_104__cpptest__c10_InlineStreamGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 113s autopkgtest: DBG: processing dependency build-essential 113s autopkgtest: DBG: processing dependency ninja-build 113s autopkgtest: DBG: processing dependency libtorch-dev 113s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 113s autopkgtest: DBG: processing dependency libtorch-test 113s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 113s autopkgtest: DBG: Test defined: name 25_of_104__cpptest__c10_LeftRight_test path None command "/usr/lib/libtorch-test/c10_LeftRight_test" restrictions ['allow-stderr'] features ['test-name=25_of_104__cpptest__c10_LeftRight_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 113s autopkgtest: DBG: processing dependency build-essential 113s autopkgtest: DBG: processing dependency ninja-build 113s autopkgtest: DBG: processing dependency libtorch-dev 113s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 113s autopkgtest: DBG: processing dependency libtorch-test 113s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 113s autopkgtest: DBG: Test defined: name 26_of_104__cpptest__c10_Metaprogramming_test path None command "/usr/lib/libtorch-test/c10_Metaprogramming_test" restrictions ['allow-stderr'] features ['test-name=26_of_104__cpptest__c10_Metaprogramming_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 113s autopkgtest: DBG: processing dependency build-essential 113s autopkgtest: DBG: processing dependency ninja-build 113s autopkgtest: DBG: processing dependency libtorch-dev 113s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 113s autopkgtest: DBG: processing dependency libtorch-test 113s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 113s autopkgtest: DBG: Test defined: name 27_of_104__cpptest__c10_NetworkFlow_test path None command "/usr/lib/libtorch-test/c10_NetworkFlow_test" restrictions ['allow-stderr'] features ['test-name=27_of_104__cpptest__c10_NetworkFlow_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 114s autopkgtest: DBG: processing dependency build-essential 114s autopkgtest: DBG: processing dependency ninja-build 114s autopkgtest: DBG: processing dependency libtorch-dev 114s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 114s autopkgtest: DBG: processing dependency libtorch-test 114s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 114s autopkgtest: DBG: Test defined: name 28_of_104__cpptest__c10_Scalar_test path None command "/usr/lib/libtorch-test/c10_Scalar_test" restrictions ['allow-stderr'] features ['test-name=28_of_104__cpptest__c10_Scalar_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 114s autopkgtest: DBG: processing dependency build-essential 114s autopkgtest: DBG: processing dependency ninja-build 114s autopkgtest: DBG: processing dependency libtorch-dev 114s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 114s autopkgtest: DBG: processing dependency libtorch-test 114s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 114s autopkgtest: DBG: Test defined: name 29_of_104__cpptest__c10_SizesAndStrides_test path None command "/usr/lib/libtorch-test/c10_SizesAndStrides_test" restrictions ['allow-stderr'] features ['test-name=29_of_104__cpptest__c10_SizesAndStrides_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 114s autopkgtest: DBG: processing dependency build-essential 114s autopkgtest: DBG: processing dependency ninja-build 114s autopkgtest: DBG: processing dependency libtorch-dev 114s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 114s autopkgtest: DBG: processing dependency libtorch-test 114s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 114s autopkgtest: DBG: Test defined: name 30_of_104__cpptest__c10_StreamGuard_test path None command "/usr/lib/libtorch-test/c10_StreamGuard_test" restrictions ['allow-stderr'] features ['test-name=30_of_104__cpptest__c10_StreamGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 114s autopkgtest: DBG: processing dependency build-essential 114s autopkgtest: DBG: processing dependency ninja-build 114s autopkgtest: DBG: processing dependency libtorch-dev 114s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 114s autopkgtest: DBG: processing dependency libtorch-test 114s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 114s autopkgtest: DBG: Test defined: name 31_of_104__cpptest__c10_SymInt_test path None command "/usr/lib/libtorch-test/c10_SymInt_test" restrictions ['allow-stderr'] features ['test-name=31_of_104__cpptest__c10_SymInt_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 114s autopkgtest: DBG: processing dependency build-essential 114s autopkgtest: DBG: processing dependency ninja-build 114s autopkgtest: DBG: processing dependency libtorch-dev 114s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 114s autopkgtest: DBG: processing dependency libtorch-test 114s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 114s autopkgtest: DBG: Test defined: name 32_of_104__cpptest__c10_Synchronized_test path None command "/usr/lib/libtorch-test/c10_Synchronized_test" restrictions ['allow-stderr'] features ['test-name=32_of_104__cpptest__c10_Synchronized_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 114s autopkgtest: DBG: processing dependency build-essential 114s autopkgtest: DBG: processing dependency ninja-build 114s autopkgtest: DBG: processing dependency libtorch-dev 114s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 114s autopkgtest: DBG: processing dependency libtorch-test 114s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 114s autopkgtest: DBG: Test defined: name 33_of_104__cpptest__c10_ThreadLocal_test path None command "/usr/lib/libtorch-test/c10_ThreadLocal_test" restrictions ['allow-stderr'] features ['test-name=33_of_104__cpptest__c10_ThreadLocal_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 115s autopkgtest: DBG: processing dependency build-essential 115s autopkgtest: DBG: processing dependency ninja-build 115s autopkgtest: DBG: processing dependency libtorch-dev 115s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 115s autopkgtest: DBG: processing dependency libtorch-test 115s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 115s autopkgtest: DBG: Test defined: name 34_of_104__cpptest__c10_TypeIndex_test path None command "/usr/lib/libtorch-test/c10_TypeIndex_test" restrictions ['allow-stderr'] features ['test-name=34_of_104__cpptest__c10_TypeIndex_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 115s autopkgtest: DBG: processing dependency build-essential 115s autopkgtest: DBG: processing dependency ninja-build 115s autopkgtest: DBG: processing dependency libtorch-dev 115s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 115s autopkgtest: DBG: processing dependency libtorch-test 115s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 115s autopkgtest: DBG: Test defined: name 35_of_104__cpptest__c10_TypeList_test path None command "/usr/lib/libtorch-test/c10_TypeList_test" restrictions ['allow-stderr'] features ['test-name=35_of_104__cpptest__c10_TypeList_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 115s autopkgtest: DBG: processing dependency build-essential 115s autopkgtest: DBG: processing dependency ninja-build 115s autopkgtest: DBG: processing dependency libtorch-dev 115s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 115s autopkgtest: DBG: processing dependency libtorch-test 115s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 115s autopkgtest: DBG: Test defined: name 36_of_104__cpptest__c10_TypeTraits_test path None command "/usr/lib/libtorch-test/c10_TypeTraits_test" restrictions ['allow-stderr'] features ['test-name=36_of_104__cpptest__c10_TypeTraits_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 115s autopkgtest: DBG: processing dependency build-essential 115s autopkgtest: DBG: processing dependency ninja-build 115s autopkgtest: DBG: processing dependency libtorch-dev 115s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 115s autopkgtest: DBG: processing dependency libtorch-test 115s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 115s autopkgtest: DBG: Test defined: name 37_of_104__cpptest__c10_accumulate_test path None command "/usr/lib/libtorch-test/c10_accumulate_test" restrictions ['allow-stderr'] features ['test-name=37_of_104__cpptest__c10_accumulate_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 115s autopkgtest: DBG: processing dependency build-essential 115s autopkgtest: DBG: processing dependency ninja-build 115s autopkgtest: DBG: processing dependency libtorch-dev 115s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 115s autopkgtest: DBG: processing dependency libtorch-test 115s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 115s autopkgtest: DBG: Test defined: name 38_of_104__cpptest__c10_bfloat16_test path None command "/usr/lib/libtorch-test/c10_bfloat16_test" restrictions ['allow-stderr'] features ['test-name=38_of_104__cpptest__c10_bfloat16_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 116s autopkgtest: DBG: processing dependency build-essential 116s autopkgtest: DBG: processing dependency ninja-build 116s autopkgtest: DBG: processing dependency libtorch-dev 116s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 116s autopkgtest: DBG: processing dependency libtorch-test 116s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 116s autopkgtest: DBG: Test defined: name 39_of_104__cpptest__c10_bit_cast_test path None command "/usr/lib/libtorch-test/c10_bit_cast_test" restrictions ['allow-stderr'] features ['test-name=39_of_104__cpptest__c10_bit_cast_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 116s autopkgtest: DBG: processing dependency build-essential 116s autopkgtest: DBG: processing dependency ninja-build 116s autopkgtest: DBG: processing dependency libtorch-dev 116s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 116s autopkgtest: DBG: processing dependency libtorch-test 116s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 116s autopkgtest: DBG: Test defined: name 40_of_104__cpptest__c10_complex_math_test path None command "/usr/lib/libtorch-test/c10_complex_math_test" restrictions ['allow-stderr'] features ['test-name=40_of_104__cpptest__c10_complex_math_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 116s autopkgtest: DBG: processing dependency build-essential 116s autopkgtest: DBG: processing dependency ninja-build 116s autopkgtest: DBG: processing dependency libtorch-dev 116s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 116s autopkgtest: DBG: processing dependency libtorch-test 116s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 116s autopkgtest: DBG: Test defined: name 41_of_104__cpptest__c10_complex_test path None command "/usr/lib/libtorch-test/c10_complex_test" restrictions ['allow-stderr'] features ['test-name=41_of_104__cpptest__c10_complex_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 116s autopkgtest: DBG: processing dependency build-essential 116s autopkgtest: DBG: processing dependency ninja-build 116s autopkgtest: DBG: processing dependency libtorch-dev 116s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 116s autopkgtest: DBG: processing dependency libtorch-test 116s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 116s autopkgtest: DBG: Test defined: name 42_of_104__cpptest__c10_cow_test path None command "/usr/lib/libtorch-test/c10_cow_test" restrictions ['allow-stderr'] features ['test-name=42_of_104__cpptest__c10_cow_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 116s autopkgtest: DBG: processing dependency build-essential 116s autopkgtest: DBG: processing dependency ninja-build 116s autopkgtest: DBG: processing dependency libtorch-dev 116s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 116s autopkgtest: DBG: processing dependency libtorch-test 116s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 116s autopkgtest: DBG: Test defined: name 43_of_104__cpptest__c10_exception_test path None command "/usr/lib/libtorch-test/c10_exception_test" restrictions ['allow-stderr'] features ['test-name=43_of_104__cpptest__c10_exception_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 117s autopkgtest: DBG: processing dependency build-essential 117s autopkgtest: DBG: processing dependency ninja-build 117s autopkgtest: DBG: processing dependency libtorch-dev 117s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 117s autopkgtest: DBG: processing dependency libtorch-test 117s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 117s autopkgtest: DBG: Test defined: name 44_of_104__cpptest__c10_flags_test path None command "/usr/lib/libtorch-test/c10_flags_test" restrictions ['allow-stderr'] features ['test-name=44_of_104__cpptest__c10_flags_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 117s autopkgtest: DBG: processing dependency build-essential 117s autopkgtest: DBG: processing dependency ninja-build 117s autopkgtest: DBG: processing dependency libtorch-dev 117s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 117s autopkgtest: DBG: processing dependency libtorch-test 117s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 117s autopkgtest: DBG: Test defined: name 45_of_104__cpptest__c10_generic_math_test path None command "/usr/lib/libtorch-test/c10_generic_math_test" restrictions ['allow-stderr'] features ['test-name=45_of_104__cpptest__c10_generic_math_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 117s autopkgtest: DBG: processing dependency build-essential 117s autopkgtest: DBG: processing dependency ninja-build 117s autopkgtest: DBG: processing dependency libtorch-dev 117s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 117s autopkgtest: DBG: processing dependency libtorch-test 117s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 117s autopkgtest: DBG: Test defined: name 46_of_104__cpptest__c10_intrusive_ptr_benchmark path None command "/usr/lib/libtorch-test/c10_intrusive_ptr_benchmark" restrictions ['allow-stderr'] features ['test-name=46_of_104__cpptest__c10_intrusive_ptr_benchmark'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 117s autopkgtest: DBG: processing dependency build-essential 117s autopkgtest: DBG: processing dependency ninja-build 117s autopkgtest: DBG: processing dependency libtorch-dev 117s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 117s autopkgtest: DBG: processing dependency libtorch-test 117s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 117s autopkgtest: DBG: Test defined: name 47_of_104__cpptest__c10_intrusive_ptr_test path None command "/usr/lib/libtorch-test/c10_intrusive_ptr_test" restrictions ['allow-stderr'] features ['test-name=47_of_104__cpptest__c10_intrusive_ptr_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 117s autopkgtest: DBG: processing dependency build-essential 117s autopkgtest: DBG: processing dependency ninja-build 117s autopkgtest: DBG: processing dependency libtorch-dev 117s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 117s autopkgtest: DBG: processing dependency libtorch-test 117s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 117s autopkgtest: DBG: Test defined: name 48_of_104__cpptest__c10_irange_test path None command "/usr/lib/libtorch-test/c10_irange_test" restrictions ['allow-stderr'] features ['test-name=48_of_104__cpptest__c10_irange_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 118s autopkgtest: DBG: processing dependency build-essential 118s autopkgtest: DBG: processing dependency ninja-build 118s autopkgtest: DBG: processing dependency libtorch-dev 118s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 118s autopkgtest: DBG: processing dependency libtorch-test 118s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 118s autopkgtest: DBG: Test defined: name 49_of_104__cpptest__c10_lazy_test path None command "/usr/lib/libtorch-test/c10_lazy_test" restrictions ['allow-stderr'] features ['test-name=49_of_104__cpptest__c10_lazy_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 118s autopkgtest: DBG: processing dependency build-essential 118s autopkgtest: DBG: processing dependency ninja-build 118s autopkgtest: DBG: processing dependency libtorch-dev 118s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 118s autopkgtest: DBG: processing dependency libtorch-test 118s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 118s autopkgtest: DBG: Test defined: name 50_of_104__cpptest__c10_logging_test path None command "/usr/lib/libtorch-test/c10_logging_test" restrictions ['allow-stderr'] features ['test-name=50_of_104__cpptest__c10_logging_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 118s autopkgtest: DBG: processing dependency build-essential 118s autopkgtest: DBG: processing dependency ninja-build 118s autopkgtest: DBG: processing dependency libtorch-dev 118s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 118s autopkgtest: DBG: processing dependency libtorch-test 118s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 118s autopkgtest: DBG: Test defined: name 51_of_104__cpptest__c10_optional_test path None command "/usr/lib/libtorch-test/c10_optional_test" restrictions ['allow-stderr'] features ['test-name=51_of_104__cpptest__c10_optional_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 118s autopkgtest: DBG: processing dependency build-essential 118s autopkgtest: DBG: processing dependency ninja-build 118s autopkgtest: DBG: processing dependency libtorch-dev 118s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 118s autopkgtest: DBG: processing dependency libtorch-test 118s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 118s autopkgtest: DBG: Test defined: name 52_of_104__cpptest__c10_ordered_preserving_dict_test path None command "/usr/lib/libtorch-test/c10_ordered_preserving_dict_test" restrictions ['allow-stderr'] features ['test-name=52_of_104__cpptest__c10_ordered_preserving_dict_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 118s autopkgtest: DBG: processing dependency build-essential 118s autopkgtest: DBG: processing dependency ninja-build 118s autopkgtest: DBG: processing dependency libtorch-dev 118s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 118s autopkgtest: DBG: processing dependency libtorch-test 118s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 118s autopkgtest: DBG: Test defined: name 53_of_104__cpptest__c10_registry_test path None command "/usr/lib/libtorch-test/c10_registry_test" restrictions ['allow-stderr'] features ['test-name=53_of_104__cpptest__c10_registry_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 118s autopkgtest: DBG: processing dependency build-essential 118s autopkgtest: DBG: processing dependency ninja-build 118s autopkgtest: DBG: processing dependency libtorch-dev 118s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 118s autopkgtest: DBG: processing dependency libtorch-test 118s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 118s autopkgtest: DBG: Test defined: name 54_of_104__cpptest__c10_small_vector_test path None command "/usr/lib/libtorch-test/c10_small_vector_test" restrictions ['allow-stderr'] features ['test-name=54_of_104__cpptest__c10_small_vector_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 119s autopkgtest: DBG: processing dependency build-essential 119s autopkgtest: DBG: processing dependency ninja-build 119s autopkgtest: DBG: processing dependency libtorch-dev 119s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 119s autopkgtest: DBG: processing dependency libtorch-test 119s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 119s autopkgtest: DBG: Test defined: name 55_of_104__cpptest__c10_ssize_test path None command "/usr/lib/libtorch-test/c10_ssize_test" restrictions ['allow-stderr'] features ['test-name=55_of_104__cpptest__c10_ssize_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 119s autopkgtest: DBG: processing dependency build-essential 119s autopkgtest: DBG: processing dependency ninja-build 119s autopkgtest: DBG: processing dependency libtorch-dev 119s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 119s autopkgtest: DBG: processing dependency libtorch-test 119s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 119s autopkgtest: DBG: Test defined: name 56_of_104__cpptest__c10_string_util_test path None command "/usr/lib/libtorch-test/c10_string_util_test" restrictions ['allow-stderr'] features ['test-name=56_of_104__cpptest__c10_string_util_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 119s autopkgtest: DBG: processing dependency build-essential 119s autopkgtest: DBG: processing dependency ninja-build 119s autopkgtest: DBG: processing dependency libtorch-dev 119s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 119s autopkgtest: DBG: processing dependency libtorch-test 119s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 119s autopkgtest: DBG: Test defined: name 57_of_104__cpptest__c10_string_view_test path None command "/usr/lib/libtorch-test/c10_string_view_test" restrictions ['allow-stderr'] features ['test-name=57_of_104__cpptest__c10_string_view_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 119s autopkgtest: DBG: processing dependency build-essential 119s autopkgtest: DBG: processing dependency ninja-build 119s autopkgtest: DBG: processing dependency libtorch-dev 119s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 119s autopkgtest: DBG: processing dependency libtorch-test 119s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 119s autopkgtest: DBG: Test defined: name 58_of_104__cpptest__c10_tempfile_test path None command "/usr/lib/libtorch-test/c10_tempfile_test" restrictions ['allow-stderr'] features ['test-name=58_of_104__cpptest__c10_tempfile_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 119s autopkgtest: DBG: processing dependency build-essential 119s autopkgtest: DBG: processing dependency ninja-build 119s autopkgtest: DBG: processing dependency libtorch-dev 119s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 119s autopkgtest: DBG: processing dependency libtorch-test 119s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 119s autopkgtest: DBG: Test defined: name 59_of_104__cpptest__c10_typeid_test path None command "/usr/lib/libtorch-test/c10_typeid_test" restrictions ['allow-stderr'] features ['test-name=59_of_104__cpptest__c10_typeid_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 119s autopkgtest: DBG: processing dependency build-essential 119s autopkgtest: DBG: processing dependency ninja-build 119s autopkgtest: DBG: processing dependency libtorch-dev 119s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 119s autopkgtest: DBG: processing dependency libtorch-test 119s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 119s autopkgtest: DBG: Test defined: name 60_of_104__cpptest__cpu_allocator_test path None command "/usr/lib/libtorch-test/cpu_allocator_test" restrictions ['allow-stderr'] features ['test-name=60_of_104__cpptest__cpu_allocator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 120s autopkgtest: DBG: processing dependency build-essential 120s autopkgtest: DBG: processing dependency ninja-build 120s autopkgtest: DBG: processing dependency libtorch-dev 120s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 120s autopkgtest: DBG: processing dependency libtorch-test 120s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 120s autopkgtest: DBG: Test defined: name 61_of_104__cpptest__cpu_generator_test path None command "/usr/lib/libtorch-test/cpu_generator_test" restrictions ['allow-stderr'] features ['test-name=61_of_104__cpptest__cpu_generator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 120s autopkgtest: DBG: processing dependency build-essential 120s autopkgtest: DBG: processing dependency ninja-build 120s autopkgtest: DBG: processing dependency libtorch-dev 120s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 120s autopkgtest: DBG: processing dependency libtorch-test 120s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 120s autopkgtest: DBG: Test defined: name 62_of_104__cpptest__cpu_profiling_allocator_test path None command "/usr/lib/libtorch-test/cpu_profiling_allocator_test" restrictions ['allow-stderr'] features ['test-name=62_of_104__cpptest__cpu_profiling_allocator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 120s autopkgtest: DBG: processing dependency build-essential 120s autopkgtest: DBG: processing dependency ninja-build 120s autopkgtest: DBG: processing dependency libtorch-dev 120s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 120s autopkgtest: DBG: processing dependency libtorch-test 120s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 120s autopkgtest: DBG: Test defined: name 63_of_104__cpptest__cpu_rng_test path None command "/usr/lib/libtorch-test/cpu_rng_test" restrictions ['allow-stderr'] features ['test-name=63_of_104__cpptest__cpu_rng_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 120s autopkgtest: DBG: processing dependency build-essential 120s autopkgtest: DBG: processing dependency ninja-build 120s autopkgtest: DBG: processing dependency libtorch-dev 120s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 120s autopkgtest: DBG: processing dependency libtorch-test 120s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 120s autopkgtest: DBG: Test defined: name 64_of_104__cpptest__dispatch_key_set_test path None command "/usr/lib/libtorch-test/dispatch_key_set_test" restrictions ['allow-stderr'] features ['test-name=64_of_104__cpptest__dispatch_key_set_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 120s autopkgtest: DBG: processing dependency build-essential 120s autopkgtest: DBG: processing dependency ninja-build 120s autopkgtest: DBG: processing dependency libtorch-dev 120s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 120s autopkgtest: DBG: processing dependency libtorch-test 120s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 120s autopkgtest: DBG: Test defined: name 65_of_104__cpptest__dlconvertor_test path None command "/usr/lib/libtorch-test/dlconvertor_test" restrictions ['allow-stderr'] features ['test-name=65_of_104__cpptest__dlconvertor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 120s autopkgtest: DBG: processing dependency build-essential 120s autopkgtest: DBG: processing dependency ninja-build 120s autopkgtest: DBG: processing dependency libtorch-dev 120s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 120s autopkgtest: DBG: processing dependency libtorch-test 120s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 120s autopkgtest: DBG: Test defined: name 66_of_104__cpptest__extension_backend_test path None command "/usr/lib/libtorch-test/extension_backend_test" restrictions ['allow-stderr'] features ['test-name=66_of_104__cpptest__extension_backend_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 121s autopkgtest: DBG: processing dependency build-essential 121s autopkgtest: DBG: processing dependency ninja-build 121s autopkgtest: DBG: processing dependency libtorch-dev 121s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 121s autopkgtest: DBG: processing dependency libtorch-test 121s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 121s autopkgtest: DBG: Test defined: name 67_of_104__cpptest__half_test path None command "/usr/lib/libtorch-test/half_test" restrictions ['allow-stderr'] features ['test-name=67_of_104__cpptest__half_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 121s autopkgtest: DBG: processing dependency build-essential 121s autopkgtest: DBG: processing dependency ninja-build 121s autopkgtest: DBG: processing dependency libtorch-dev 121s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 121s autopkgtest: DBG: processing dependency libtorch-test 121s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 121s autopkgtest: DBG: Test defined: name 68_of_104__cpptest__inline_container_test path None command "/usr/lib/libtorch-test/inline_container_test || true" restrictions ['allow-stderr'] features ['test-name=68_of_104__cpptest__inline_container_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 121s autopkgtest: DBG: processing dependency build-essential 121s autopkgtest: DBG: processing dependency ninja-build 121s autopkgtest: DBG: processing dependency libtorch-dev 121s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 121s autopkgtest: DBG: processing dependency libtorch-test 121s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 121s autopkgtest: DBG: Test defined: name 69_of_104__cpptest__ivalue_test path None command "/usr/lib/libtorch-test/ivalue_test" restrictions ['allow-stderr'] features ['test-name=69_of_104__cpptest__ivalue_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 121s autopkgtest: DBG: processing dependency build-essential 121s autopkgtest: DBG: processing dependency ninja-build 121s autopkgtest: DBG: processing dependency libtorch-dev 121s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 121s autopkgtest: DBG: processing dependency libtorch-test 121s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 121s autopkgtest: DBG: Test defined: name 70_of_104__cpptest__kernel_function_legacy_test path None command "/usr/lib/libtorch-test/kernel_function_legacy_test" restrictions ['allow-stderr'] features ['test-name=70_of_104__cpptest__kernel_function_legacy_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 121s autopkgtest: DBG: processing dependency build-essential 121s autopkgtest: DBG: processing dependency ninja-build 121s autopkgtest: DBG: processing dependency libtorch-dev 121s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 121s autopkgtest: DBG: processing dependency libtorch-test 121s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 121s autopkgtest: DBG: Test defined: name 71_of_104__cpptest__kernel_function_test path None command "/usr/lib/libtorch-test/kernel_function_test" restrictions ['allow-stderr'] features ['test-name=71_of_104__cpptest__kernel_function_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 121s autopkgtest: DBG: processing dependency build-essential 121s autopkgtest: DBG: processing dependency ninja-build 121s autopkgtest: DBG: processing dependency libtorch-dev 121s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 121s autopkgtest: DBG: processing dependency libtorch-test 121s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 121s autopkgtest: DBG: Test defined: name 72_of_104__cpptest__kernel_lambda_legacy_test path None command "/usr/lib/libtorch-test/kernel_lambda_legacy_test" restrictions ['allow-stderr'] features ['test-name=72_of_104__cpptest__kernel_lambda_legacy_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 122s autopkgtest: DBG: processing dependency build-essential 122s autopkgtest: DBG: processing dependency ninja-build 122s autopkgtest: DBG: processing dependency libtorch-dev 122s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 122s autopkgtest: DBG: processing dependency libtorch-test 122s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 122s autopkgtest: DBG: Test defined: name 73_of_104__cpptest__kernel_lambda_test path None command "/usr/lib/libtorch-test/kernel_lambda_test" restrictions ['allow-stderr'] features ['test-name=73_of_104__cpptest__kernel_lambda_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 122s autopkgtest: DBG: processing dependency build-essential 122s autopkgtest: DBG: processing dependency ninja-build 122s autopkgtest: DBG: processing dependency libtorch-dev 122s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 122s autopkgtest: DBG: processing dependency libtorch-test 122s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 122s autopkgtest: DBG: Test defined: name 74_of_104__cpptest__kernel_stackbased_test path None command "/usr/lib/libtorch-test/kernel_stackbased_test" restrictions ['allow-stderr'] features ['test-name=74_of_104__cpptest__kernel_stackbased_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 122s autopkgtest: DBG: processing dependency build-essential 122s autopkgtest: DBG: processing dependency ninja-build 122s autopkgtest: DBG: processing dependency libtorch-dev 122s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 122s autopkgtest: DBG: processing dependency libtorch-test 122s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 122s autopkgtest: DBG: Test defined: name 75_of_104__cpptest__lazy_tensor_test path None command "/usr/lib/libtorch-test/lazy_tensor_test" restrictions ['allow-stderr'] features ['test-name=75_of_104__cpptest__lazy_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 122s autopkgtest: DBG: processing dependency build-essential 122s autopkgtest: DBG: processing dependency ninja-build 122s autopkgtest: DBG: processing dependency libtorch-dev 122s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 122s autopkgtest: DBG: processing dependency libtorch-test 122s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 122s autopkgtest: DBG: Test defined: name 76_of_104__cpptest__legacy_vmap_test path None command "/usr/lib/libtorch-test/legacy_vmap_test" restrictions ['allow-stderr'] features ['test-name=76_of_104__cpptest__legacy_vmap_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 122s autopkgtest: DBG: processing dependency build-essential 122s autopkgtest: DBG: processing dependency ninja-build 122s autopkgtest: DBG: processing dependency libtorch-dev 122s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 122s autopkgtest: DBG: processing dependency libtorch-test 122s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 122s autopkgtest: DBG: Test defined: name 77_of_104__cpptest__make_boxed_from_unboxed_functor_test path None command "/usr/lib/libtorch-test/make_boxed_from_unboxed_functor_test" restrictions ['allow-stderr'] features ['test-name=77_of_104__cpptest__make_boxed_from_unboxed_functor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 122s autopkgtest: DBG: processing dependency build-essential 122s autopkgtest: DBG: processing dependency ninja-build 122s autopkgtest: DBG: processing dependency libtorch-dev 122s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 122s autopkgtest: DBG: processing dependency libtorch-test 122s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 122s autopkgtest: DBG: Test defined: name 78_of_104__cpptest__math_kernel_test path None command "/usr/lib/libtorch-test/math_kernel_test" restrictions ['allow-stderr'] features ['test-name=78_of_104__cpptest__math_kernel_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 123s autopkgtest: DBG: processing dependency build-essential 123s autopkgtest: DBG: processing dependency ninja-build 123s autopkgtest: DBG: processing dependency libtorch-dev 123s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 123s autopkgtest: DBG: processing dependency libtorch-test 123s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 123s autopkgtest: DBG: Test defined: name 79_of_104__cpptest__memory_format_test path None command "/usr/lib/libtorch-test/memory_format_test" restrictions ['allow-stderr'] features ['test-name=79_of_104__cpptest__memory_format_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 123s autopkgtest: DBG: processing dependency build-essential 123s autopkgtest: DBG: processing dependency ninja-build 123s autopkgtest: DBG: processing dependency libtorch-dev 123s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 123s autopkgtest: DBG: processing dependency libtorch-test 123s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 123s autopkgtest: DBG: Test defined: name 80_of_104__cpptest__memory_overlapping_test path None command "/usr/lib/libtorch-test/memory_overlapping_test" restrictions ['allow-stderr'] features ['test-name=80_of_104__cpptest__memory_overlapping_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 123s autopkgtest: DBG: processing dependency build-essential 123s autopkgtest: DBG: processing dependency ninja-build 123s autopkgtest: DBG: processing dependency libtorch-dev 123s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 123s autopkgtest: DBG: processing dependency libtorch-test 123s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 123s autopkgtest: DBG: Test defined: name 81_of_104__cpptest__mobile_memory_cleanup path None command "/usr/lib/libtorch-test/mobile_memory_cleanup" restrictions ['allow-stderr'] features ['test-name=81_of_104__cpptest__mobile_memory_cleanup'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 123s autopkgtest: DBG: processing dependency build-essential 123s autopkgtest: DBG: processing dependency ninja-build 123s autopkgtest: DBG: processing dependency libtorch-dev 123s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 123s autopkgtest: DBG: processing dependency libtorch-test 123s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 123s autopkgtest: DBG: Test defined: name 82_of_104__cpptest__native_test path None command "/usr/lib/libtorch-test/native_test" restrictions ['allow-stderr'] features ['test-name=82_of_104__cpptest__native_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 123s autopkgtest: DBG: processing dependency build-essential 123s autopkgtest: DBG: processing dependency ninja-build 123s autopkgtest: DBG: processing dependency libtorch-dev 123s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 123s autopkgtest: DBG: processing dependency libtorch-test 123s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 123s autopkgtest: DBG: Test defined: name 83_of_104__cpptest__op_allowlist_test path None command "/usr/lib/libtorch-test/op_allowlist_test" restrictions ['allow-stderr'] features ['test-name=83_of_104__cpptest__op_allowlist_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 124s autopkgtest: DBG: processing dependency build-essential 124s autopkgtest: DBG: processing dependency ninja-build 124s autopkgtest: DBG: processing dependency libtorch-dev 124s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 124s autopkgtest: DBG: processing dependency libtorch-test 124s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 124s autopkgtest: DBG: Test defined: name 84_of_104__cpptest__op_registration_test path None command "/usr/lib/libtorch-test/op_registration_test" restrictions ['allow-stderr'] features ['test-name=84_of_104__cpptest__op_registration_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 124s autopkgtest: DBG: processing dependency build-essential 124s autopkgtest: DBG: processing dependency ninja-build 124s autopkgtest: DBG: processing dependency libtorch-dev 124s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 124s autopkgtest: DBG: processing dependency libtorch-test 124s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 124s autopkgtest: DBG: Test defined: name 85_of_104__cpptest__operator_name_test path None command "/usr/lib/libtorch-test/operator_name_test" restrictions ['allow-stderr'] features ['test-name=85_of_104__cpptest__operator_name_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 124s autopkgtest: DBG: processing dependency build-essential 124s autopkgtest: DBG: processing dependency ninja-build 124s autopkgtest: DBG: processing dependency libtorch-dev 124s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 124s autopkgtest: DBG: processing dependency libtorch-test 124s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 124s autopkgtest: DBG: Test defined: name 86_of_104__cpptest__operators_test path None command "/usr/lib/libtorch-test/operators_test" restrictions ['allow-stderr'] features ['test-name=86_of_104__cpptest__operators_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 124s autopkgtest: DBG: processing dependency build-essential 124s autopkgtest: DBG: processing dependency ninja-build 124s autopkgtest: DBG: processing dependency libtorch-dev 124s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 124s autopkgtest: DBG: processing dependency libtorch-test 124s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 124s autopkgtest: DBG: Test defined: name 87_of_104__cpptest__packedtensoraccessor_test path None command "/usr/lib/libtorch-test/packedtensoraccessor_test" restrictions ['allow-stderr'] features ['test-name=87_of_104__cpptest__packedtensoraccessor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 124s autopkgtest: DBG: processing dependency build-essential 124s autopkgtest: DBG: processing dependency ninja-build 124s autopkgtest: DBG: processing dependency libtorch-dev 124s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 124s autopkgtest: DBG: processing dependency libtorch-test 124s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 124s autopkgtest: DBG: Test defined: name 88_of_104__cpptest__pow_test path None command "/usr/lib/libtorch-test/pow_test" restrictions ['allow-stderr'] features ['test-name=88_of_104__cpptest__pow_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 125s autopkgtest: DBG: processing dependency build-essential 125s autopkgtest: DBG: processing dependency ninja-build 125s autopkgtest: DBG: processing dependency libtorch-dev 125s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 125s autopkgtest: DBG: processing dependency libtorch-test 125s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 125s autopkgtest: DBG: Test defined: name 89_of_104__cpptest__quantized_test path None command "/usr/lib/libtorch-test/quantized_test" restrictions ['allow-stderr'] features ['test-name=89_of_104__cpptest__quantized_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 125s autopkgtest: DBG: processing dependency build-essential 125s autopkgtest: DBG: processing dependency ninja-build 125s autopkgtest: DBG: processing dependency libtorch-dev 125s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 125s autopkgtest: DBG: processing dependency libtorch-test 125s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 125s autopkgtest: DBG: Test defined: name 90_of_104__cpptest__reduce_ops_test path None command "/usr/lib/libtorch-test/reduce_ops_test" restrictions ['allow-stderr'] features ['test-name=90_of_104__cpptest__reduce_ops_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 125s autopkgtest: DBG: processing dependency build-essential 125s autopkgtest: DBG: processing dependency ninja-build 125s autopkgtest: DBG: processing dependency libtorch-dev 125s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 125s autopkgtest: DBG: processing dependency libtorch-test 125s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 125s autopkgtest: DBG: Test defined: name 91_of_104__cpptest__reportMemoryUsage_test path None command "/usr/lib/libtorch-test/reportMemoryUsage_test" restrictions ['allow-stderr'] features ['test-name=91_of_104__cpptest__reportMemoryUsage_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 125s autopkgtest: DBG: processing dependency build-essential 125s autopkgtest: DBG: processing dependency ninja-build 125s autopkgtest: DBG: processing dependency libtorch-dev 125s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 125s autopkgtest: DBG: processing dependency libtorch-test 125s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 125s autopkgtest: DBG: Test defined: name 92_of_104__cpptest__scalar_tensor_test path None command "/usr/lib/libtorch-test/scalar_tensor_test" restrictions ['allow-stderr'] features ['test-name=92_of_104__cpptest__scalar_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 125s autopkgtest: DBG: processing dependency build-essential 125s autopkgtest: DBG: processing dependency ninja-build 125s autopkgtest: DBG: processing dependency libtorch-dev 125s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 125s autopkgtest: DBG: processing dependency libtorch-test 125s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 125s autopkgtest: DBG: Test defined: name 93_of_104__cpptest__scalar_test path None command "/usr/lib/libtorch-test/scalar_test" restrictions ['allow-stderr'] features ['test-name=93_of_104__cpptest__scalar_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency ninja-build 126s autopkgtest: DBG: processing dependency libtorch-dev 126s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency libtorch-test 126s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name 94_of_104__cpptest__stride_properties_test path None command "/usr/lib/libtorch-test/stride_properties_test" restrictions ['allow-stderr'] features ['test-name=94_of_104__cpptest__stride_properties_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency ninja-build 126s autopkgtest: DBG: processing dependency libtorch-dev 126s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency libtorch-test 126s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name 95_of_104__cpptest__tensor_iterator_test path None command "/usr/lib/libtorch-test/tensor_iterator_test" restrictions ['allow-stderr'] features ['test-name=95_of_104__cpptest__tensor_iterator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency ninja-build 126s autopkgtest: DBG: processing dependency libtorch-dev 126s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency libtorch-test 126s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name 96_of_104__cpptest__test_parallel path None command "/usr/lib/libtorch-test/test_parallel" restrictions ['allow-stderr'] features ['test-name=96_of_104__cpptest__test_parallel'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency ninja-build 126s autopkgtest: DBG: processing dependency libtorch-dev 126s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency libtorch-test 126s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name 97_of_104__cpptest__thread_init_test path None command "/usr/lib/libtorch-test/thread_init_test" restrictions ['allow-stderr'] features ['test-name=97_of_104__cpptest__thread_init_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency ninja-build 126s autopkgtest: DBG: processing dependency libtorch-dev 126s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency libtorch-test 126s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name 98_of_104__cpptest__type_ptr_test path None command "/usr/lib/libtorch-test/type_ptr_test" restrictions ['allow-stderr'] features ['test-name=98_of_104__cpptest__type_ptr_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 126s autopkgtest: DBG: processing dependency build-essential 126s autopkgtest: DBG: processing dependency ninja-build 126s autopkgtest: DBG: processing dependency libtorch-dev 126s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 126s autopkgtest: DBG: processing dependency libtorch-test 126s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 126s autopkgtest: DBG: Test defined: name 99_of_104__cpptest__type_test path None command "/usr/lib/libtorch-test/type_test" restrictions ['allow-stderr'] features ['test-name=99_of_104__cpptest__type_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 127s autopkgtest: DBG: processing dependency build-essential 127s autopkgtest: DBG: processing dependency ninja-build 127s autopkgtest: DBG: processing dependency libtorch-dev 127s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 127s autopkgtest: DBG: processing dependency libtorch-test 127s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 127s autopkgtest: DBG: Test defined: name 100_of_104__cpptest__undefined_tensor_test path None command "/usr/lib/libtorch-test/undefined_tensor_test" restrictions ['allow-stderr'] features ['test-name=100_of_104__cpptest__undefined_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 127s autopkgtest: DBG: processing dependency build-essential 127s autopkgtest: DBG: processing dependency ninja-build 127s autopkgtest: DBG: processing dependency libtorch-dev 127s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 127s autopkgtest: DBG: processing dependency libtorch-test 127s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 127s autopkgtest: DBG: Test defined: name 101_of_104__cpptest__verify_api_visibility path None command "/usr/lib/libtorch-test/verify_api_visibility" restrictions ['allow-stderr'] features ['test-name=101_of_104__cpptest__verify_api_visibility'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 127s autopkgtest: DBG: processing dependency build-essential 127s autopkgtest: DBG: processing dependency ninja-build 127s autopkgtest: DBG: processing dependency libtorch-dev 127s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 127s autopkgtest: DBG: processing dependency libtorch-test 127s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 127s autopkgtest: DBG: Test defined: name 102_of_104__cpptest__weakref_test path None command "/usr/lib/libtorch-test/weakref_test" restrictions ['allow-stderr'] features ['test-name=102_of_104__cpptest__weakref_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 127s autopkgtest: DBG: processing dependency build-essential 127s autopkgtest: DBG: processing dependency ninja-build 127s autopkgtest: DBG: processing dependency libtorch-dev 127s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 127s autopkgtest: DBG: processing dependency libtorch-test 127s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 127s autopkgtest: DBG: Test defined: name 103_of_104__cpptest__wrapdim_test path None command "/usr/lib/libtorch-test/wrapdim_test" restrictions ['allow-stderr'] features ['test-name=103_of_104__cpptest__wrapdim_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 127s autopkgtest: DBG: processing dependency build-essential 127s autopkgtest: DBG: processing dependency ninja-build 127s autopkgtest: DBG: processing dependency libtorch-dev 127s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 127s autopkgtest: DBG: processing dependency libtorch-test 127s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 127s autopkgtest: DBG: Test defined: name 104_of_104__cpptest__xla_tensor_test path None command "/usr/lib/libtorch-test/xla_tensor_test" restrictions ['allow-stderr'] features ['test-name=104_of_104__cpptest__xla_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 127s autopkgtest [08:12:04]: build not needed 127s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/build.E4h/src/ /tmp/autopkgtest-work.z8qos2ju/out/tests-tree/ 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: processing dependency python3-torch 134s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 134s autopkgtest: DBG: Test defined: name py_import_and_version path None command "cd test/ ; python3 -c "import sys, torch as th; print(sys.version, th.__path__, th.__version__)"" restrictions ['allow-stderr'] features ['test-name=py_import_and_version'] depends ['python3-torch'] 134s autopkgtest: DBG: processing dependency python3-torch 134s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 134s autopkgtest: DBG: processing dependency libopenblas0 134s autopkgtest: DBG: Test defined: name py_blas_openblas path None command "cd debian/tests ; python3 blas.py" restrictions ['allow-stderr'] features ['test-name=py_blas_openblas'] depends ['python3-torch', 'libopenblas0'] 134s autopkgtest: DBG: processing dependency python3-torch 134s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 134s autopkgtest: DBG: processing dependency libblis4 134s autopkgtest: DBG: Test defined: name py_blas_blis path None command "cd debian/tests ; python3 blas.py" restrictions ['allow-stderr'] features ['test-name=py_blas_blis'] depends ['python3-torch', 'libblis4'] 134s autopkgtest: DBG: processing dependency python3-torch 134s autopkgtest: DBG: marked alternatives ['python3-torch'] as a synthesised dependency 134s autopkgtest: DBG: Test defined: name py_sequential path None command "cd debian/tests ; python3 sequential.py" restrictions ['allow-stderr'] features ['test-name=py_sequential'] depends ['python3-torch'] 135s autopkgtest: DBG: processing dependency @ 135s autopkgtest: DBG: synthesised dependency python3-torch 135s autopkgtest: DBG: synthesised dependency libtorch-dev 135s autopkgtest: DBG: synthesised dependency libtorch2.6 135s autopkgtest: DBG: synthesised dependency libtorch-test 135s autopkgtest: DBG: Test defined: name show_dangling_symlink_if_any path None command "cd debian/tests ; find /usr -xtype l -print || true" restrictions ['allow-stderr'] features ['test-name=show_dangling_symlink_if_any'] depends ['python3-torch', 'libtorch-dev', 'libtorch2.6', 'libtorch-test'] 135s autopkgtest: DBG: processing dependency build-essential 135s autopkgtest: DBG: processing dependency ninja-build 135s autopkgtest: DBG: processing dependency libtorch-dev 135s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 135s autopkgtest: DBG: processing dependency libtorch-test 135s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 135s autopkgtest: DBG: Test defined: name 1_of_104__cpptest__CppSignature_test path None command "/usr/lib/libtorch-test/CppSignature_test" restrictions ['allow-stderr'] features ['test-name=1_of_104__cpptest__CppSignature_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 135s autopkgtest: DBG: processing dependency build-essential 135s autopkgtest: DBG: processing dependency ninja-build 135s autopkgtest: DBG: processing dependency libtorch-dev 135s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 135s autopkgtest: DBG: processing dependency libtorch-test 135s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 135s autopkgtest: DBG: Test defined: name 2_of_104__cpptest__Dict_test path None command "/usr/lib/libtorch-test/Dict_test" restrictions ['allow-stderr'] features ['test-name=2_of_104__cpptest__Dict_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 135s autopkgtest: DBG: processing dependency build-essential 135s autopkgtest: DBG: processing dependency ninja-build 135s autopkgtest: DBG: processing dependency libtorch-dev 135s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 135s autopkgtest: DBG: processing dependency libtorch-test 135s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 135s autopkgtest: DBG: Test defined: name 3_of_104__cpptest__Dimname_test path None command "/usr/lib/libtorch-test/Dimname_test" restrictions ['allow-stderr'] features ['test-name=3_of_104__cpptest__Dimname_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 135s autopkgtest: DBG: processing dependency build-essential 135s autopkgtest: DBG: processing dependency ninja-build 135s autopkgtest: DBG: processing dependency libtorch-dev 135s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 135s autopkgtest: DBG: processing dependency libtorch-test 135s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 135s autopkgtest: DBG: Test defined: name 4_of_104__cpptest__IListRef_test path None command "/usr/lib/libtorch-test/IListRef_test" restrictions ['allow-stderr'] features ['test-name=4_of_104__cpptest__IListRef_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 136s autopkgtest: DBG: processing dependency build-essential 136s autopkgtest: DBG: processing dependency ninja-build 136s autopkgtest: DBG: processing dependency libtorch-dev 136s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 136s autopkgtest: DBG: processing dependency libtorch-test 136s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name 5_of_104__cpptest__KernelFunction_test path None command "/usr/lib/libtorch-test/KernelFunction_test" restrictions ['allow-stderr'] features ['test-name=5_of_104__cpptest__KernelFunction_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 136s autopkgtest: DBG: processing dependency build-essential 136s autopkgtest: DBG: processing dependency ninja-build 136s autopkgtest: DBG: processing dependency libtorch-dev 136s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 136s autopkgtest: DBG: processing dependency libtorch-test 136s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name 6_of_104__cpptest__List_test path None command "/usr/lib/libtorch-test/List_test" restrictions ['allow-stderr'] features ['test-name=6_of_104__cpptest__List_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 136s autopkgtest: DBG: processing dependency build-essential 136s autopkgtest: DBG: processing dependency ninja-build 136s autopkgtest: DBG: processing dependency libtorch-dev 136s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 136s autopkgtest: DBG: processing dependency libtorch-test 136s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name 7_of_104__cpptest__MaybeOwned_test path None command "/usr/lib/libtorch-test/MaybeOwned_test" restrictions ['allow-stderr'] features ['test-name=7_of_104__cpptest__MaybeOwned_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 136s autopkgtest: DBG: processing dependency build-essential 136s autopkgtest: DBG: processing dependency ninja-build 136s autopkgtest: DBG: processing dependency libtorch-dev 136s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 136s autopkgtest: DBG: processing dependency libtorch-test 136s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name 8_of_104__cpptest__NamedTensor_test path None command "/usr/lib/libtorch-test/NamedTensor_test" restrictions ['allow-stderr'] features ['test-name=8_of_104__cpptest__NamedTensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 136s autopkgtest: DBG: processing dependency build-essential 136s autopkgtest: DBG: processing dependency ninja-build 136s autopkgtest: DBG: processing dependency libtorch-dev 136s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 136s autopkgtest: DBG: processing dependency libtorch-test 136s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name 9_of_104__cpptest__StorageUtils_test path None command "/usr/lib/libtorch-test/StorageUtils_test" restrictions ['allow-stderr'] features ['test-name=9_of_104__cpptest__StorageUtils_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 136s autopkgtest: DBG: processing dependency build-essential 136s autopkgtest: DBG: processing dependency ninja-build 136s autopkgtest: DBG: processing dependency libtorch-dev 136s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 136s autopkgtest: DBG: processing dependency libtorch-test 136s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 136s autopkgtest: DBG: Test defined: name 10_of_104__cpptest__apply_utils_test path None command "/usr/lib/libtorch-test/apply_utils_test" restrictions ['allow-stderr'] features ['test-name=10_of_104__cpptest__apply_utils_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 137s autopkgtest: DBG: processing dependency build-essential 137s autopkgtest: DBG: processing dependency ninja-build 137s autopkgtest: DBG: processing dependency libtorch-dev 137s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 137s autopkgtest: DBG: processing dependency libtorch-test 137s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 137s autopkgtest: DBG: Test defined: name 11_of_104__cpptest__atest path None command "/usr/lib/libtorch-test/atest" restrictions ['allow-stderr'] features ['test-name=11_of_104__cpptest__atest'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 137s autopkgtest: DBG: processing dependency build-essential 137s autopkgtest: DBG: processing dependency ninja-build 137s autopkgtest: DBG: processing dependency libtorch-dev 137s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 137s autopkgtest: DBG: processing dependency libtorch-test 137s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 137s autopkgtest: DBG: Test defined: name 12_of_104__cpptest__backend_fallback_test path None command "/usr/lib/libtorch-test/backend_fallback_test" restrictions ['allow-stderr'] features ['test-name=12_of_104__cpptest__backend_fallback_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 137s autopkgtest: DBG: processing dependency build-essential 137s autopkgtest: DBG: processing dependency ninja-build 137s autopkgtest: DBG: processing dependency libtorch-dev 137s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 137s autopkgtest: DBG: processing dependency libtorch-test 137s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 137s autopkgtest: DBG: Test defined: name 13_of_104__cpptest__basic path None command "/usr/lib/libtorch-test/basic" restrictions ['allow-stderr'] features ['test-name=13_of_104__cpptest__basic'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 137s autopkgtest: DBG: processing dependency build-essential 137s autopkgtest: DBG: processing dependency ninja-build 137s autopkgtest: DBG: processing dependency libtorch-dev 137s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 137s autopkgtest: DBG: processing dependency libtorch-test 137s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 137s autopkgtest: DBG: Test defined: name 14_of_104__cpptest__broadcast_test path None command "/usr/lib/libtorch-test/broadcast_test" restrictions ['allow-stderr'] features ['test-name=14_of_104__cpptest__broadcast_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 137s autopkgtest: DBG: processing dependency build-essential 137s autopkgtest: DBG: processing dependency ninja-build 137s autopkgtest: DBG: processing dependency libtorch-dev 137s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 137s autopkgtest: DBG: processing dependency libtorch-test 137s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 137s autopkgtest: DBG: Test defined: name 15_of_104__cpptest__c10_Bitset_test path None command "/usr/lib/libtorch-test/c10_Bitset_test" restrictions ['allow-stderr'] features ['test-name=15_of_104__cpptest__c10_Bitset_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency ninja-build 138s autopkgtest: DBG: processing dependency libtorch-dev 138s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency libtorch-test 138s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 138s autopkgtest: DBG: Test defined: name 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test path None command "/usr/lib/libtorch-test/c10_CompileTimeFunctionPointer_test" restrictions ['allow-stderr'] features ['test-name=16_of_104__cpptest__c10_CompileTimeFunctionPointer_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency ninja-build 138s autopkgtest: DBG: processing dependency libtorch-dev 138s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency libtorch-test 138s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 138s autopkgtest: DBG: Test defined: name 17_of_104__cpptest__c10_ConstexprCrc_test path None command "/usr/lib/libtorch-test/c10_ConstexprCrc_test" restrictions ['allow-stderr'] features ['test-name=17_of_104__cpptest__c10_ConstexprCrc_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency ninja-build 138s autopkgtest: DBG: processing dependency libtorch-dev 138s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency libtorch-test 138s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 138s autopkgtest: DBG: Test defined: name 18_of_104__cpptest__c10_DeadlockDetection_test path None command "/usr/lib/libtorch-test/c10_DeadlockDetection_test" restrictions ['allow-stderr'] features ['test-name=18_of_104__cpptest__c10_DeadlockDetection_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency ninja-build 138s autopkgtest: DBG: processing dependency libtorch-dev 138s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency libtorch-test 138s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 138s autopkgtest: DBG: Test defined: name 19_of_104__cpptest__c10_DeviceGuard_test path None command "/usr/lib/libtorch-test/c10_DeviceGuard_test" restrictions ['allow-stderr'] features ['test-name=19_of_104__cpptest__c10_DeviceGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 138s autopkgtest: DBG: processing dependency build-essential 138s autopkgtest: DBG: processing dependency ninja-build 138s autopkgtest: DBG: processing dependency libtorch-dev 138s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 138s autopkgtest: DBG: processing dependency libtorch-test 138s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 138s autopkgtest: DBG: Test defined: name 20_of_104__cpptest__c10_Device_test path None command "/usr/lib/libtorch-test/c10_Device_test" restrictions ['allow-stderr'] features ['test-name=20_of_104__cpptest__c10_Device_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 139s autopkgtest: DBG: processing dependency build-essential 139s autopkgtest: DBG: processing dependency ninja-build 139s autopkgtest: DBG: processing dependency libtorch-dev 139s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 139s autopkgtest: DBG: processing dependency libtorch-test 139s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 139s autopkgtest: DBG: Test defined: name 21_of_104__cpptest__c10_DispatchKeySet_test path None command "/usr/lib/libtorch-test/c10_DispatchKeySet_test" restrictions ['allow-stderr'] features ['test-name=21_of_104__cpptest__c10_DispatchKeySet_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 139s autopkgtest: DBG: processing dependency build-essential 139s autopkgtest: DBG: processing dependency ninja-build 139s autopkgtest: DBG: processing dependency libtorch-dev 139s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 139s autopkgtest: DBG: processing dependency libtorch-test 139s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 139s autopkgtest: DBG: Test defined: name 22_of_104__cpptest__c10_Half_test path None command "/usr/lib/libtorch-test/c10_Half_test" restrictions ['allow-stderr'] features ['test-name=22_of_104__cpptest__c10_Half_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 139s autopkgtest: DBG: processing dependency build-essential 139s autopkgtest: DBG: processing dependency ninja-build 139s autopkgtest: DBG: processing dependency libtorch-dev 139s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 139s autopkgtest: DBG: processing dependency libtorch-test 139s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 139s autopkgtest: DBG: Test defined: name 23_of_104__cpptest__c10_InlineDeviceGuard_test path None command "/usr/lib/libtorch-test/c10_InlineDeviceGuard_test" restrictions ['allow-stderr'] features ['test-name=23_of_104__cpptest__c10_InlineDeviceGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 139s autopkgtest: DBG: processing dependency build-essential 139s autopkgtest: DBG: processing dependency ninja-build 139s autopkgtest: DBG: processing dependency libtorch-dev 139s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 139s autopkgtest: DBG: processing dependency libtorch-test 139s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 139s autopkgtest: DBG: Test defined: name 24_of_104__cpptest__c10_InlineStreamGuard_test path None command "/usr/lib/libtorch-test/c10_InlineStreamGuard_test" restrictions ['allow-stderr'] features ['test-name=24_of_104__cpptest__c10_InlineStreamGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 139s autopkgtest: DBG: processing dependency build-essential 139s autopkgtest: DBG: processing dependency ninja-build 139s autopkgtest: DBG: processing dependency libtorch-dev 139s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 139s autopkgtest: DBG: processing dependency libtorch-test 139s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 139s autopkgtest: DBG: Test defined: name 25_of_104__cpptest__c10_LeftRight_test path None command "/usr/lib/libtorch-test/c10_LeftRight_test" restrictions ['allow-stderr'] features ['test-name=25_of_104__cpptest__c10_LeftRight_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 139s autopkgtest: DBG: processing dependency build-essential 139s autopkgtest: DBG: processing dependency ninja-build 139s autopkgtest: DBG: processing dependency libtorch-dev 139s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 139s autopkgtest: DBG: processing dependency libtorch-test 139s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 139s autopkgtest: DBG: Test defined: name 26_of_104__cpptest__c10_Metaprogramming_test path None command "/usr/lib/libtorch-test/c10_Metaprogramming_test" restrictions ['allow-stderr'] features ['test-name=26_of_104__cpptest__c10_Metaprogramming_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 27_of_104__cpptest__c10_NetworkFlow_test path None command "/usr/lib/libtorch-test/c10_NetworkFlow_test" restrictions ['allow-stderr'] features ['test-name=27_of_104__cpptest__c10_NetworkFlow_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 28_of_104__cpptest__c10_Scalar_test path None command "/usr/lib/libtorch-test/c10_Scalar_test" restrictions ['allow-stderr'] features ['test-name=28_of_104__cpptest__c10_Scalar_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 29_of_104__cpptest__c10_SizesAndStrides_test path None command "/usr/lib/libtorch-test/c10_SizesAndStrides_test" restrictions ['allow-stderr'] features ['test-name=29_of_104__cpptest__c10_SizesAndStrides_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 30_of_104__cpptest__c10_StreamGuard_test path None command "/usr/lib/libtorch-test/c10_StreamGuard_test" restrictions ['allow-stderr'] features ['test-name=30_of_104__cpptest__c10_StreamGuard_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 31_of_104__cpptest__c10_SymInt_test path None command "/usr/lib/libtorch-test/c10_SymInt_test" restrictions ['allow-stderr'] features ['test-name=31_of_104__cpptest__c10_SymInt_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 32_of_104__cpptest__c10_Synchronized_test path None command "/usr/lib/libtorch-test/c10_Synchronized_test" restrictions ['allow-stderr'] features ['test-name=32_of_104__cpptest__c10_Synchronized_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 140s autopkgtest: DBG: processing dependency build-essential 140s autopkgtest: DBG: processing dependency ninja-build 140s autopkgtest: DBG: processing dependency libtorch-dev 140s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 140s autopkgtest: DBG: processing dependency libtorch-test 140s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 140s autopkgtest: DBG: Test defined: name 33_of_104__cpptest__c10_ThreadLocal_test path None command "/usr/lib/libtorch-test/c10_ThreadLocal_test" restrictions ['allow-stderr'] features ['test-name=33_of_104__cpptest__c10_ThreadLocal_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 141s autopkgtest: DBG: processing dependency build-essential 141s autopkgtest: DBG: processing dependency ninja-build 141s autopkgtest: DBG: processing dependency libtorch-dev 141s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency libtorch-test 141s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 141s autopkgtest: DBG: Test defined: name 34_of_104__cpptest__c10_TypeIndex_test path None command "/usr/lib/libtorch-test/c10_TypeIndex_test" restrictions ['allow-stderr'] features ['test-name=34_of_104__cpptest__c10_TypeIndex_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 141s autopkgtest: DBG: processing dependency build-essential 141s autopkgtest: DBG: processing dependency ninja-build 141s autopkgtest: DBG: processing dependency libtorch-dev 141s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency libtorch-test 141s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 141s autopkgtest: DBG: Test defined: name 35_of_104__cpptest__c10_TypeList_test path None command "/usr/lib/libtorch-test/c10_TypeList_test" restrictions ['allow-stderr'] features ['test-name=35_of_104__cpptest__c10_TypeList_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 141s autopkgtest: DBG: processing dependency build-essential 141s autopkgtest: DBG: processing dependency ninja-build 141s autopkgtest: DBG: processing dependency libtorch-dev 141s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency libtorch-test 141s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 141s autopkgtest: DBG: Test defined: name 36_of_104__cpptest__c10_TypeTraits_test path None command "/usr/lib/libtorch-test/c10_TypeTraits_test" restrictions ['allow-stderr'] features ['test-name=36_of_104__cpptest__c10_TypeTraits_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 141s autopkgtest: DBG: processing dependency build-essential 141s autopkgtest: DBG: processing dependency ninja-build 141s autopkgtest: DBG: processing dependency libtorch-dev 141s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency libtorch-test 141s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 141s autopkgtest: DBG: Test defined: name 37_of_104__cpptest__c10_accumulate_test path None command "/usr/lib/libtorch-test/c10_accumulate_test" restrictions ['allow-stderr'] features ['test-name=37_of_104__cpptest__c10_accumulate_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 141s autopkgtest: DBG: processing dependency build-essential 141s autopkgtest: DBG: processing dependency ninja-build 141s autopkgtest: DBG: processing dependency libtorch-dev 141s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency libtorch-test 141s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 141s autopkgtest: DBG: Test defined: name 38_of_104__cpptest__c10_bfloat16_test path None command "/usr/lib/libtorch-test/c10_bfloat16_test" restrictions ['allow-stderr'] features ['test-name=38_of_104__cpptest__c10_bfloat16_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 141s autopkgtest: DBG: processing dependency build-essential 141s autopkgtest: DBG: processing dependency ninja-build 141s autopkgtest: DBG: processing dependency libtorch-dev 141s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 141s autopkgtest: DBG: processing dependency libtorch-test 141s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 141s autopkgtest: DBG: Test defined: name 39_of_104__cpptest__c10_bit_cast_test path None command "/usr/lib/libtorch-test/c10_bit_cast_test" restrictions ['allow-stderr'] features ['test-name=39_of_104__cpptest__c10_bit_cast_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 142s autopkgtest: DBG: processing dependency build-essential 142s autopkgtest: DBG: processing dependency ninja-build 142s autopkgtest: DBG: processing dependency libtorch-dev 142s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 142s autopkgtest: DBG: processing dependency libtorch-test 142s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 142s autopkgtest: DBG: Test defined: name 40_of_104__cpptest__c10_complex_math_test path None command "/usr/lib/libtorch-test/c10_complex_math_test" restrictions ['allow-stderr'] features ['test-name=40_of_104__cpptest__c10_complex_math_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 142s autopkgtest: DBG: processing dependency build-essential 142s autopkgtest: DBG: processing dependency ninja-build 142s autopkgtest: DBG: processing dependency libtorch-dev 142s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 142s autopkgtest: DBG: processing dependency libtorch-test 142s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 142s autopkgtest: DBG: Test defined: name 41_of_104__cpptest__c10_complex_test path None command "/usr/lib/libtorch-test/c10_complex_test" restrictions ['allow-stderr'] features ['test-name=41_of_104__cpptest__c10_complex_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 142s autopkgtest: DBG: processing dependency build-essential 142s autopkgtest: DBG: processing dependency ninja-build 142s autopkgtest: DBG: processing dependency libtorch-dev 142s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 142s autopkgtest: DBG: processing dependency libtorch-test 142s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 142s autopkgtest: DBG: Test defined: name 42_of_104__cpptest__c10_cow_test path None command "/usr/lib/libtorch-test/c10_cow_test" restrictions ['allow-stderr'] features ['test-name=42_of_104__cpptest__c10_cow_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 142s autopkgtest: DBG: processing dependency build-essential 142s autopkgtest: DBG: processing dependency ninja-build 142s autopkgtest: DBG: processing dependency libtorch-dev 142s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 142s autopkgtest: DBG: processing dependency libtorch-test 142s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 142s autopkgtest: DBG: Test defined: name 43_of_104__cpptest__c10_exception_test path None command "/usr/lib/libtorch-test/c10_exception_test" restrictions ['allow-stderr'] features ['test-name=43_of_104__cpptest__c10_exception_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 142s autopkgtest: DBG: processing dependency build-essential 142s autopkgtest: DBG: processing dependency ninja-build 142s autopkgtest: DBG: processing dependency libtorch-dev 142s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 142s autopkgtest: DBG: processing dependency libtorch-test 142s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 142s autopkgtest: DBG: Test defined: name 44_of_104__cpptest__c10_flags_test path None command "/usr/lib/libtorch-test/c10_flags_test" restrictions ['allow-stderr'] features ['test-name=44_of_104__cpptest__c10_flags_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 142s autopkgtest: DBG: processing dependency build-essential 142s autopkgtest: DBG: processing dependency ninja-build 142s autopkgtest: DBG: processing dependency libtorch-dev 142s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 142s autopkgtest: DBG: processing dependency libtorch-test 142s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 142s autopkgtest: DBG: Test defined: name 45_of_104__cpptest__c10_generic_math_test path None command "/usr/lib/libtorch-test/c10_generic_math_test" restrictions ['allow-stderr'] features ['test-name=45_of_104__cpptest__c10_generic_math_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 143s autopkgtest: DBG: processing dependency build-essential 143s autopkgtest: DBG: processing dependency ninja-build 143s autopkgtest: DBG: processing dependency libtorch-dev 143s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 143s autopkgtest: DBG: processing dependency libtorch-test 143s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 143s autopkgtest: DBG: Test defined: name 46_of_104__cpptest__c10_intrusive_ptr_benchmark path None command "/usr/lib/libtorch-test/c10_intrusive_ptr_benchmark" restrictions ['allow-stderr'] features ['test-name=46_of_104__cpptest__c10_intrusive_ptr_benchmark'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 143s autopkgtest: DBG: processing dependency build-essential 143s autopkgtest: DBG: processing dependency ninja-build 143s autopkgtest: DBG: processing dependency libtorch-dev 143s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 143s autopkgtest: DBG: processing dependency libtorch-test 143s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 143s autopkgtest: DBG: Test defined: name 47_of_104__cpptest__c10_intrusive_ptr_test path None command "/usr/lib/libtorch-test/c10_intrusive_ptr_test" restrictions ['allow-stderr'] features ['test-name=47_of_104__cpptest__c10_intrusive_ptr_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 143s autopkgtest: DBG: processing dependency build-essential 143s autopkgtest: DBG: processing dependency ninja-build 143s autopkgtest: DBG: processing dependency libtorch-dev 143s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 143s autopkgtest: DBG: processing dependency libtorch-test 143s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 143s autopkgtest: DBG: Test defined: name 48_of_104__cpptest__c10_irange_test path None command "/usr/lib/libtorch-test/c10_irange_test" restrictions ['allow-stderr'] features ['test-name=48_of_104__cpptest__c10_irange_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 143s autopkgtest: DBG: processing dependency build-essential 143s autopkgtest: DBG: processing dependency ninja-build 143s autopkgtest: DBG: processing dependency libtorch-dev 143s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 143s autopkgtest: DBG: processing dependency libtorch-test 143s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 143s autopkgtest: DBG: Test defined: name 49_of_104__cpptest__c10_lazy_test path None command "/usr/lib/libtorch-test/c10_lazy_test" restrictions ['allow-stderr'] features ['test-name=49_of_104__cpptest__c10_lazy_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 144s autopkgtest: DBG: processing dependency build-essential 144s autopkgtest: DBG: processing dependency ninja-build 144s autopkgtest: DBG: processing dependency libtorch-dev 144s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency libtorch-test 144s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name 50_of_104__cpptest__c10_logging_test path None command "/usr/lib/libtorch-test/c10_logging_test" restrictions ['allow-stderr'] features ['test-name=50_of_104__cpptest__c10_logging_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 144s autopkgtest: DBG: processing dependency build-essential 144s autopkgtest: DBG: processing dependency ninja-build 144s autopkgtest: DBG: processing dependency libtorch-dev 144s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency libtorch-test 144s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name 51_of_104__cpptest__c10_optional_test path None command "/usr/lib/libtorch-test/c10_optional_test" restrictions ['allow-stderr'] features ['test-name=51_of_104__cpptest__c10_optional_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 144s autopkgtest: DBG: processing dependency build-essential 144s autopkgtest: DBG: processing dependency ninja-build 144s autopkgtest: DBG: processing dependency libtorch-dev 144s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency libtorch-test 144s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name 52_of_104__cpptest__c10_ordered_preserving_dict_test path None command "/usr/lib/libtorch-test/c10_ordered_preserving_dict_test" restrictions ['allow-stderr'] features ['test-name=52_of_104__cpptest__c10_ordered_preserving_dict_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 144s autopkgtest: DBG: processing dependency build-essential 144s autopkgtest: DBG: processing dependency ninja-build 144s autopkgtest: DBG: processing dependency libtorch-dev 144s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency libtorch-test 144s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name 53_of_104__cpptest__c10_registry_test path None command "/usr/lib/libtorch-test/c10_registry_test" restrictions ['allow-stderr'] features ['test-name=53_of_104__cpptest__c10_registry_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 144s autopkgtest: DBG: processing dependency build-essential 144s autopkgtest: DBG: processing dependency ninja-build 144s autopkgtest: DBG: processing dependency libtorch-dev 144s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency libtorch-test 144s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name 54_of_104__cpptest__c10_small_vector_test path None command "/usr/lib/libtorch-test/c10_small_vector_test" restrictions ['allow-stderr'] features ['test-name=54_of_104__cpptest__c10_small_vector_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 144s autopkgtest: DBG: processing dependency build-essential 144s autopkgtest: DBG: processing dependency ninja-build 144s autopkgtest: DBG: processing dependency libtorch-dev 144s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 144s autopkgtest: DBG: processing dependency libtorch-test 144s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name 55_of_104__cpptest__c10_ssize_test path None command "/usr/lib/libtorch-test/c10_ssize_test" restrictions ['allow-stderr'] features ['test-name=55_of_104__cpptest__c10_ssize_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 145s autopkgtest: DBG: processing dependency build-essential 145s autopkgtest: DBG: processing dependency ninja-build 145s autopkgtest: DBG: processing dependency libtorch-dev 145s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 145s autopkgtest: DBG: processing dependency libtorch-test 145s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 145s autopkgtest: DBG: Test defined: name 56_of_104__cpptest__c10_string_util_test path None command "/usr/lib/libtorch-test/c10_string_util_test" restrictions ['allow-stderr'] features ['test-name=56_of_104__cpptest__c10_string_util_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 145s autopkgtest: DBG: processing dependency build-essential 145s autopkgtest: DBG: processing dependency ninja-build 145s autopkgtest: DBG: processing dependency libtorch-dev 145s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 145s autopkgtest: DBG: processing dependency libtorch-test 145s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 145s autopkgtest: DBG: Test defined: name 57_of_104__cpptest__c10_string_view_test path None command "/usr/lib/libtorch-test/c10_string_view_test" restrictions ['allow-stderr'] features ['test-name=57_of_104__cpptest__c10_string_view_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 145s autopkgtest: DBG: processing dependency build-essential 145s autopkgtest: DBG: processing dependency ninja-build 145s autopkgtest: DBG: processing dependency libtorch-dev 145s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 145s autopkgtest: DBG: processing dependency libtorch-test 145s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 145s autopkgtest: DBG: Test defined: name 58_of_104__cpptest__c10_tempfile_test path None command "/usr/lib/libtorch-test/c10_tempfile_test" restrictions ['allow-stderr'] features ['test-name=58_of_104__cpptest__c10_tempfile_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 145s autopkgtest: DBG: processing dependency build-essential 145s autopkgtest: DBG: processing dependency ninja-build 145s autopkgtest: DBG: processing dependency libtorch-dev 145s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 145s autopkgtest: DBG: processing dependency libtorch-test 145s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 145s autopkgtest: DBG: Test defined: name 59_of_104__cpptest__c10_typeid_test path None command "/usr/lib/libtorch-test/c10_typeid_test" restrictions ['allow-stderr'] features ['test-name=59_of_104__cpptest__c10_typeid_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 145s autopkgtest: DBG: processing dependency build-essential 145s autopkgtest: DBG: processing dependency ninja-build 145s autopkgtest: DBG: processing dependency libtorch-dev 145s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 145s autopkgtest: DBG: processing dependency libtorch-test 145s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 145s autopkgtest: DBG: Test defined: name 60_of_104__cpptest__cpu_allocator_test path None command "/usr/lib/libtorch-test/cpu_allocator_test" restrictions ['allow-stderr'] features ['test-name=60_of_104__cpptest__cpu_allocator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency ninja-build 146s autopkgtest: DBG: processing dependency libtorch-dev 146s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency libtorch-test 146s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name 61_of_104__cpptest__cpu_generator_test path None command "/usr/lib/libtorch-test/cpu_generator_test" restrictions ['allow-stderr'] features ['test-name=61_of_104__cpptest__cpu_generator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency ninja-build 146s autopkgtest: DBG: processing dependency libtorch-dev 146s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency libtorch-test 146s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name 62_of_104__cpptest__cpu_profiling_allocator_test path None command "/usr/lib/libtorch-test/cpu_profiling_allocator_test" restrictions ['allow-stderr'] features ['test-name=62_of_104__cpptest__cpu_profiling_allocator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency ninja-build 146s autopkgtest: DBG: processing dependency libtorch-dev 146s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency libtorch-test 146s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name 63_of_104__cpptest__cpu_rng_test path None command "/usr/lib/libtorch-test/cpu_rng_test" restrictions ['allow-stderr'] features ['test-name=63_of_104__cpptest__cpu_rng_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency ninja-build 146s autopkgtest: DBG: processing dependency libtorch-dev 146s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency libtorch-test 146s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name 64_of_104__cpptest__dispatch_key_set_test path None command "/usr/lib/libtorch-test/dispatch_key_set_test" restrictions ['allow-stderr'] features ['test-name=64_of_104__cpptest__dispatch_key_set_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 146s autopkgtest: DBG: processing dependency build-essential 146s autopkgtest: DBG: processing dependency ninja-build 146s autopkgtest: DBG: processing dependency libtorch-dev 146s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 146s autopkgtest: DBG: processing dependency libtorch-test 146s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name 65_of_104__cpptest__dlconvertor_test path None command "/usr/lib/libtorch-test/dlconvertor_test" restrictions ['allow-stderr'] features ['test-name=65_of_104__cpptest__dlconvertor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 147s autopkgtest: DBG: processing dependency build-essential 147s autopkgtest: DBG: processing dependency ninja-build 147s autopkgtest: DBG: processing dependency libtorch-dev 147s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 147s autopkgtest: DBG: processing dependency libtorch-test 147s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 147s autopkgtest: DBG: Test defined: name 66_of_104__cpptest__extension_backend_test path None command "/usr/lib/libtorch-test/extension_backend_test" restrictions ['allow-stderr'] features ['test-name=66_of_104__cpptest__extension_backend_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 147s autopkgtest: DBG: processing dependency build-essential 147s autopkgtest: DBG: processing dependency ninja-build 147s autopkgtest: DBG: processing dependency libtorch-dev 147s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 147s autopkgtest: DBG: processing dependency libtorch-test 147s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 147s autopkgtest: DBG: Test defined: name 67_of_104__cpptest__half_test path None command "/usr/lib/libtorch-test/half_test" restrictions ['allow-stderr'] features ['test-name=67_of_104__cpptest__half_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 147s autopkgtest: DBG: processing dependency build-essential 147s autopkgtest: DBG: processing dependency ninja-build 147s autopkgtest: DBG: processing dependency libtorch-dev 147s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 147s autopkgtest: DBG: processing dependency libtorch-test 147s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 147s autopkgtest: DBG: Test defined: name 68_of_104__cpptest__inline_container_test path None command "/usr/lib/libtorch-test/inline_container_test || true" restrictions ['allow-stderr'] features ['test-name=68_of_104__cpptest__inline_container_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 147s autopkgtest: DBG: processing dependency build-essential 147s autopkgtest: DBG: processing dependency ninja-build 147s autopkgtest: DBG: processing dependency libtorch-dev 147s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 147s autopkgtest: DBG: processing dependency libtorch-test 147s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 147s autopkgtest: DBG: Test defined: name 69_of_104__cpptest__ivalue_test path None command "/usr/lib/libtorch-test/ivalue_test" restrictions ['allow-stderr'] features ['test-name=69_of_104__cpptest__ivalue_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 70_of_104__cpptest__kernel_function_legacy_test path None command "/usr/lib/libtorch-test/kernel_function_legacy_test" restrictions ['allow-stderr'] features ['test-name=70_of_104__cpptest__kernel_function_legacy_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 71_of_104__cpptest__kernel_function_test path None command "/usr/lib/libtorch-test/kernel_function_test" restrictions ['allow-stderr'] features ['test-name=71_of_104__cpptest__kernel_function_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 72_of_104__cpptest__kernel_lambda_legacy_test path None command "/usr/lib/libtorch-test/kernel_lambda_legacy_test" restrictions ['allow-stderr'] features ['test-name=72_of_104__cpptest__kernel_lambda_legacy_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 73_of_104__cpptest__kernel_lambda_test path None command "/usr/lib/libtorch-test/kernel_lambda_test" restrictions ['allow-stderr'] features ['test-name=73_of_104__cpptest__kernel_lambda_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 74_of_104__cpptest__kernel_stackbased_test path None command "/usr/lib/libtorch-test/kernel_stackbased_test" restrictions ['allow-stderr'] features ['test-name=74_of_104__cpptest__kernel_stackbased_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 75_of_104__cpptest__lazy_tensor_test path None command "/usr/lib/libtorch-test/lazy_tensor_test" restrictions ['allow-stderr'] features ['test-name=75_of_104__cpptest__lazy_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 148s autopkgtest: DBG: processing dependency build-essential 148s autopkgtest: DBG: processing dependency ninja-build 148s autopkgtest: DBG: processing dependency libtorch-dev 148s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 148s autopkgtest: DBG: processing dependency libtorch-test 148s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 148s autopkgtest: DBG: Test defined: name 76_of_104__cpptest__legacy_vmap_test path None command "/usr/lib/libtorch-test/legacy_vmap_test" restrictions ['allow-stderr'] features ['test-name=76_of_104__cpptest__legacy_vmap_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 149s autopkgtest: DBG: processing dependency build-essential 149s autopkgtest: DBG: processing dependency ninja-build 149s autopkgtest: DBG: processing dependency libtorch-dev 149s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency libtorch-test 149s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name 77_of_104__cpptest__make_boxed_from_unboxed_functor_test path None command "/usr/lib/libtorch-test/make_boxed_from_unboxed_functor_test" restrictions ['allow-stderr'] features ['test-name=77_of_104__cpptest__make_boxed_from_unboxed_functor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 149s autopkgtest: DBG: processing dependency build-essential 149s autopkgtest: DBG: processing dependency ninja-build 149s autopkgtest: DBG: processing dependency libtorch-dev 149s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency libtorch-test 149s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name 78_of_104__cpptest__math_kernel_test path None command "/usr/lib/libtorch-test/math_kernel_test" restrictions ['allow-stderr'] features ['test-name=78_of_104__cpptest__math_kernel_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 149s autopkgtest: DBG: processing dependency build-essential 149s autopkgtest: DBG: processing dependency ninja-build 149s autopkgtest: DBG: processing dependency libtorch-dev 149s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency libtorch-test 149s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name 79_of_104__cpptest__memory_format_test path None command "/usr/lib/libtorch-test/memory_format_test" restrictions ['allow-stderr'] features ['test-name=79_of_104__cpptest__memory_format_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 149s autopkgtest: DBG: processing dependency build-essential 149s autopkgtest: DBG: processing dependency ninja-build 149s autopkgtest: DBG: processing dependency libtorch-dev 149s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency libtorch-test 149s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name 80_of_104__cpptest__memory_overlapping_test path None command "/usr/lib/libtorch-test/memory_overlapping_test" restrictions ['allow-stderr'] features ['test-name=80_of_104__cpptest__memory_overlapping_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 149s autopkgtest: DBG: processing dependency build-essential 149s autopkgtest: DBG: processing dependency ninja-build 149s autopkgtest: DBG: processing dependency libtorch-dev 149s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency libtorch-test 149s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name 81_of_104__cpptest__mobile_memory_cleanup path None command "/usr/lib/libtorch-test/mobile_memory_cleanup" restrictions ['allow-stderr'] features ['test-name=81_of_104__cpptest__mobile_memory_cleanup'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 149s autopkgtest: DBG: processing dependency build-essential 149s autopkgtest: DBG: processing dependency ninja-build 149s autopkgtest: DBG: processing dependency libtorch-dev 149s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 149s autopkgtest: DBG: processing dependency libtorch-test 149s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name 82_of_104__cpptest__native_test path None command "/usr/lib/libtorch-test/native_test" restrictions ['allow-stderr'] features ['test-name=82_of_104__cpptest__native_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 150s autopkgtest: DBG: processing dependency build-essential 150s autopkgtest: DBG: processing dependency ninja-build 150s autopkgtest: DBG: processing dependency libtorch-dev 150s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency libtorch-test 150s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 150s autopkgtest: DBG: Test defined: name 83_of_104__cpptest__op_allowlist_test path None command "/usr/lib/libtorch-test/op_allowlist_test" restrictions ['allow-stderr'] features ['test-name=83_of_104__cpptest__op_allowlist_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 150s autopkgtest: DBG: processing dependency build-essential 150s autopkgtest: DBG: processing dependency ninja-build 150s autopkgtest: DBG: processing dependency libtorch-dev 150s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency libtorch-test 150s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 150s autopkgtest: DBG: Test defined: name 84_of_104__cpptest__op_registration_test path None command "/usr/lib/libtorch-test/op_registration_test" restrictions ['allow-stderr'] features ['test-name=84_of_104__cpptest__op_registration_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 150s autopkgtest: DBG: processing dependency build-essential 150s autopkgtest: DBG: processing dependency ninja-build 150s autopkgtest: DBG: processing dependency libtorch-dev 150s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency libtorch-test 150s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 150s autopkgtest: DBG: Test defined: name 85_of_104__cpptest__operator_name_test path None command "/usr/lib/libtorch-test/operator_name_test" restrictions ['allow-stderr'] features ['test-name=85_of_104__cpptest__operator_name_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 150s autopkgtest: DBG: processing dependency build-essential 150s autopkgtest: DBG: processing dependency ninja-build 150s autopkgtest: DBG: processing dependency libtorch-dev 150s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency libtorch-test 150s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 150s autopkgtest: DBG: Test defined: name 86_of_104__cpptest__operators_test path None command "/usr/lib/libtorch-test/operators_test" restrictions ['allow-stderr'] features ['test-name=86_of_104__cpptest__operators_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 150s autopkgtest: DBG: processing dependency build-essential 150s autopkgtest: DBG: processing dependency ninja-build 150s autopkgtest: DBG: processing dependency libtorch-dev 150s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency libtorch-test 150s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 150s autopkgtest: DBG: Test defined: name 87_of_104__cpptest__packedtensoraccessor_test path None command "/usr/lib/libtorch-test/packedtensoraccessor_test" restrictions ['allow-stderr'] features ['test-name=87_of_104__cpptest__packedtensoraccessor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 150s autopkgtest: DBG: processing dependency build-essential 150s autopkgtest: DBG: processing dependency ninja-build 150s autopkgtest: DBG: processing dependency libtorch-dev 150s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 150s autopkgtest: DBG: processing dependency libtorch-test 150s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 150s autopkgtest: DBG: Test defined: name 88_of_104__cpptest__pow_test path None command "/usr/lib/libtorch-test/pow_test" restrictions ['allow-stderr'] features ['test-name=88_of_104__cpptest__pow_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency ninja-build 151s autopkgtest: DBG: processing dependency libtorch-dev 151s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency libtorch-test 151s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 151s autopkgtest: DBG: Test defined: name 89_of_104__cpptest__quantized_test path None command "/usr/lib/libtorch-test/quantized_test" restrictions ['allow-stderr'] features ['test-name=89_of_104__cpptest__quantized_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency ninja-build 151s autopkgtest: DBG: processing dependency libtorch-dev 151s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency libtorch-test 151s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 151s autopkgtest: DBG: Test defined: name 90_of_104__cpptest__reduce_ops_test path None command "/usr/lib/libtorch-test/reduce_ops_test" restrictions ['allow-stderr'] features ['test-name=90_of_104__cpptest__reduce_ops_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency ninja-build 151s autopkgtest: DBG: processing dependency libtorch-dev 151s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency libtorch-test 151s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 151s autopkgtest: DBG: Test defined: name 91_of_104__cpptest__reportMemoryUsage_test path None command "/usr/lib/libtorch-test/reportMemoryUsage_test" restrictions ['allow-stderr'] features ['test-name=91_of_104__cpptest__reportMemoryUsage_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency ninja-build 151s autopkgtest: DBG: processing dependency libtorch-dev 151s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency libtorch-test 151s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 151s autopkgtest: DBG: Test defined: name 92_of_104__cpptest__scalar_tensor_test path None command "/usr/lib/libtorch-test/scalar_tensor_test" restrictions ['allow-stderr'] features ['test-name=92_of_104__cpptest__scalar_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency ninja-build 151s autopkgtest: DBG: processing dependency libtorch-dev 151s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency libtorch-test 151s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 151s autopkgtest: DBG: Test defined: name 93_of_104__cpptest__scalar_test path None command "/usr/lib/libtorch-test/scalar_test" restrictions ['allow-stderr'] features ['test-name=93_of_104__cpptest__scalar_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency ninja-build 151s autopkgtest: DBG: processing dependency libtorch-dev 151s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency libtorch-test 151s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 151s autopkgtest: DBG: Test defined: name 94_of_104__cpptest__stride_properties_test path None command "/usr/lib/libtorch-test/stride_properties_test" restrictions ['allow-stderr'] features ['test-name=94_of_104__cpptest__stride_properties_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 95_of_104__cpptest__tensor_iterator_test path None command "/usr/lib/libtorch-test/tensor_iterator_test" restrictions ['allow-stderr'] features ['test-name=95_of_104__cpptest__tensor_iterator_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 96_of_104__cpptest__test_parallel path None command "/usr/lib/libtorch-test/test_parallel" restrictions ['allow-stderr'] features ['test-name=96_of_104__cpptest__test_parallel'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 97_of_104__cpptest__thread_init_test path None command "/usr/lib/libtorch-test/thread_init_test" restrictions ['allow-stderr'] features ['test-name=97_of_104__cpptest__thread_init_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 98_of_104__cpptest__type_ptr_test path None command "/usr/lib/libtorch-test/type_ptr_test" restrictions ['allow-stderr'] features ['test-name=98_of_104__cpptest__type_ptr_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 99_of_104__cpptest__type_test path None command "/usr/lib/libtorch-test/type_test" restrictions ['allow-stderr'] features ['test-name=99_of_104__cpptest__type_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 100_of_104__cpptest__undefined_tensor_test path None command "/usr/lib/libtorch-test/undefined_tensor_test" restrictions ['allow-stderr'] features ['test-name=100_of_104__cpptest__undefined_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency ninja-build 152s autopkgtest: DBG: processing dependency libtorch-dev 152s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libtorch-test 152s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 152s autopkgtest: DBG: Test defined: name 101_of_104__cpptest__verify_api_visibility path None command "/usr/lib/libtorch-test/verify_api_visibility" restrictions ['allow-stderr'] features ['test-name=101_of_104__cpptest__verify_api_visibility'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 153s autopkgtest: DBG: processing dependency build-essential 153s autopkgtest: DBG: processing dependency ninja-build 153s autopkgtest: DBG: processing dependency libtorch-dev 153s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency libtorch-test 153s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 153s autopkgtest: DBG: Test defined: name 102_of_104__cpptest__weakref_test path None command "/usr/lib/libtorch-test/weakref_test" restrictions ['allow-stderr'] features ['test-name=102_of_104__cpptest__weakref_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 153s autopkgtest: DBG: processing dependency build-essential 153s autopkgtest: DBG: processing dependency ninja-build 153s autopkgtest: DBG: processing dependency libtorch-dev 153s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency libtorch-test 153s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 153s autopkgtest: DBG: Test defined: name 103_of_104__cpptest__wrapdim_test path None command "/usr/lib/libtorch-test/wrapdim_test" restrictions ['allow-stderr'] features ['test-name=103_of_104__cpptest__wrapdim_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 153s autopkgtest: DBG: processing dependency build-essential 153s autopkgtest: DBG: processing dependency ninja-build 153s autopkgtest: DBG: processing dependency libtorch-dev 153s autopkgtest: DBG: marked alternatives ['libtorch-dev'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency libtorch-test 153s autopkgtest: DBG: marked alternatives ['libtorch-test'] as a synthesised dependency 153s autopkgtest: DBG: Test defined: name 104_of_104__cpptest__xla_tensor_test path None command "/usr/lib/libtorch-test/xla_tensor_test" restrictions ['allow-stderr'] features ['test-name=104_of_104__cpptest__xla_tensor_test'] depends ['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 153s autopkgtest [08:12:30]: test py_import_and_version: preparing testbed 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-torch'] 153s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 153s autopkgtest: DBG: install_deps: deps_new=['python3-torch'] 153s autopkgtest: DBG: install-deps: satisfying python3-torch 153s autopkgtest: DBG: can use apt-get on testbed: True 153s 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-torch'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 153s Reading package lists... 153s Building dependency tree... 153s Reading state information... 153s Starting pkgProblemResolver with broken count: 0 153s Starting 2 pkgProblemResolver with broken count: 0 153s Done 154s The following NEW packages will be installed: 154s libbenchmark1.9.1 libblas3 libcpp-httplib0.16 libevent-pthreads-2.1-7t64 154s libfabric1 libfmt10 libgfortran5 libgloo0 libgomp1 libhiredis1.1.0 154s libhwloc-plugins libhwloc15 liblapack3 libmunge2 libonnx1t64 libopenmpi40 154s libpciaccess0 libpmix2t64 libprotobuf32t64 librdmacm1t64 libsleef3 154s libtensorpipe0 libtorch-test libtorch2.6 libxnvctrl0 ocl-icd-libopencl1 154s python3-dateutil python3-expecttest python3-filelock python3-fsspec 154s python3-hypothesis python3-mpmath python3-networkx python3-numpy 154s python3-packaging python3-psutil python3-sortedcontainers python3-sympy 154s python3-torch 154s 0 upgraded, 39 newly installed, 0 to remove and 0 not upgraded. 154s Need to get 113 MB of archives. 154s After this operation, 595 MB of additional disk space will be used. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libbenchmark1.9.1 s390x 1.9.1-1 [143 kB] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 154s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libcpp-httplib0.16 s390x 0.16.3+ds-2 [206 kB] 154s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-pthreads-2.1-7t64 s390x 2.1.12-stable-10 [7870 B] 154s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x librdmacm1t64 s390x 55.0-1ubuntu1 [73.7 kB] 154s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libfabric1 s390x 1.17.0-3ubuntu1 [558 kB] 154s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libfmt10 s390x 10.1.1+ds1-4 [82.6 kB] 154s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 154s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libhiredis1.1.0 s390x 1.2.0-6ubuntu3 [42.7 kB] 154s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.12.0-1 [176 kB] 154s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x libmunge2 s390x 0.5.16-1 [15.2 kB] 154s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libpciaccess0 s390x 0.17-3build1 [19.0 kB] 154s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxnvctrl0 s390x 510.47.03-0ubuntu4 [12.7 kB] 154s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 154s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc-plugins s390x 2.12.0-1 [16.1 kB] 154s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x libpmix2t64 s390x 5.0.6-3 [715 kB] 154s Get:17 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libopenmpi40 s390x 5.0.7-1 [2196 kB] 155s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libgloo0 s390x 0.0~git20231202.5354032-3build1 [171 kB] 155s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 155s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 155s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 155s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libonnx1t64 s390x 1.17.0-3 [966 kB] 155s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libsleef3 s390x 3.7-0ubuntu2 [292 kB] 155s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x libtensorpipe0 s390x 0.0~git20220513.bb1473a-5build2 [475 kB] 155s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch2.6 s390x 2.6.0+dfsg-1 [61.4 MB] 159s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch-test s390x 2.6.0+dfsg-1 [7318 kB] 159s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 159s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 159s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 159s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-expecttest all 0.3.0-1 [9108 B] 159s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-filelock all 3.16.1-2 [12.9 kB] 159s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fsspec all 2025.2.0-1 [211 kB] 159s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 159s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 159s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 160s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 160s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 160s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 160s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x python3-torch s390x 2.6.0+dfsg-1 [11.8 MB] 160s Fetched 113 MB in 7s (17.2 MB/s) 161s Selecting previously unselected package libbenchmark1.9.1:s390x. 161s (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.) 161s Preparing to unpack .../00-libbenchmark1.9.1_1.9.1-1_s390x.deb ... 161s Unpacking libbenchmark1.9.1:s390x (1.9.1-1) ... 161s Selecting previously unselected package libblas3:s390x. 161s Preparing to unpack .../01-libblas3_3.12.1-2_s390x.deb ... 161s Unpacking libblas3:s390x (3.12.1-2) ... 161s Selecting previously unselected package libcpp-httplib0.16:s390x. 161s Preparing to unpack .../02-libcpp-httplib0.16_0.16.3+ds-2_s390x.deb ... 161s Unpacking libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 161s Selecting previously unselected package libevent-pthreads-2.1-7t64:s390x. 161s Preparing to unpack .../03-libevent-pthreads-2.1-7t64_2.1.12-stable-10_s390x.deb ... 161s Unpacking libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 161s Selecting previously unselected package librdmacm1t64:s390x. 161s Preparing to unpack .../04-librdmacm1t64_55.0-1ubuntu1_s390x.deb ... 161s Unpacking librdmacm1t64:s390x (55.0-1ubuntu1) ... 161s Selecting previously unselected package libfabric1:s390x. 161s Preparing to unpack .../05-libfabric1_1.17.0-3ubuntu1_s390x.deb ... 161s Unpacking libfabric1:s390x (1.17.0-3ubuntu1) ... 161s Selecting previously unselected package libfmt10:s390x. 161s Preparing to unpack .../06-libfmt10_10.1.1+ds1-4_s390x.deb ... 161s Unpacking libfmt10:s390x (10.1.1+ds1-4) ... 161s Selecting previously unselected package libgfortran5:s390x. 161s Preparing to unpack .../07-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 161s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 161s Selecting previously unselected package libhiredis1.1.0:s390x. 161s Preparing to unpack .../08-libhiredis1.1.0_1.2.0-6ubuntu3_s390x.deb ... 161s Unpacking libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 161s Selecting previously unselected package libhwloc15:s390x. 161s Preparing to unpack .../09-libhwloc15_2.12.0-1_s390x.deb ... 161s Unpacking libhwloc15:s390x (2.12.0-1) ... 161s Selecting previously unselected package libmunge2:s390x. 161s Preparing to unpack .../10-libmunge2_0.5.16-1_s390x.deb ... 161s Unpacking libmunge2:s390x (0.5.16-1) ... 161s Selecting previously unselected package libpciaccess0:s390x. 161s Preparing to unpack .../11-libpciaccess0_0.17-3build1_s390x.deb ... 161s Unpacking libpciaccess0:s390x (0.17-3build1) ... 161s Selecting previously unselected package libxnvctrl0:s390x. 161s Preparing to unpack .../12-libxnvctrl0_510.47.03-0ubuntu4_s390x.deb ... 161s Unpacking libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 161s Selecting previously unselected package ocl-icd-libopencl1:s390x. 161s Preparing to unpack .../13-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 161s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 161s Selecting previously unselected package libhwloc-plugins:s390x. 161s Preparing to unpack .../14-libhwloc-plugins_2.12.0-1_s390x.deb ... 161s Unpacking libhwloc-plugins:s390x (2.12.0-1) ... 161s Selecting previously unselected package libpmix2t64:s390x. 161s Preparing to unpack .../15-libpmix2t64_5.0.6-3_s390x.deb ... 161s Unpacking libpmix2t64:s390x (5.0.6-3) ... 161s Selecting previously unselected package libopenmpi40:s390x. 161s Preparing to unpack .../16-libopenmpi40_5.0.7-1_s390x.deb ... 161s Unpacking libopenmpi40:s390x (5.0.7-1) ... 161s Selecting previously unselected package libgloo0. 161s Preparing to unpack .../17-libgloo0_0.0~git20231202.5354032-3build1_s390x.deb ... 161s Unpacking libgloo0 (0.0~git20231202.5354032-3build1) ... 161s Selecting previously unselected package libgomp1:s390x. 161s Preparing to unpack .../18-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 161s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 161s Selecting previously unselected package liblapack3:s390x. 161s Preparing to unpack .../19-liblapack3_3.12.1-2_s390x.deb ... 161s Unpacking liblapack3:s390x (3.12.1-2) ... 161s Selecting previously unselected package libprotobuf32t64:s390x. 161s Preparing to unpack .../20-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 161s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 161s Selecting previously unselected package libonnx1t64:s390x. 161s Preparing to unpack .../21-libonnx1t64_1.17.0-3_s390x.deb ... 161s Unpacking libonnx1t64:s390x (1.17.0-3) ... 161s Selecting previously unselected package libsleef3:s390x. 161s Preparing to unpack .../22-libsleef3_3.7-0ubuntu2_s390x.deb ... 161s Unpacking libsleef3:s390x (3.7-0ubuntu2) ... 161s Selecting previously unselected package libtensorpipe0:s390x. 161s Preparing to unpack .../23-libtensorpipe0_0.0~git20220513.bb1473a-5build2_s390x.deb ... 161s Unpacking libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 161s Selecting previously unselected package libtorch2.6:s390x. 161s Preparing to unpack .../24-libtorch2.6_2.6.0+dfsg-1_s390x.deb ... 161s Unpacking libtorch2.6:s390x (2.6.0+dfsg-1) ... 162s Selecting previously unselected package libtorch-test. 162s Preparing to unpack .../25-libtorch-test_2.6.0+dfsg-1_s390x.deb ... 162s Unpacking libtorch-test (2.6.0+dfsg-1) ... 162s Selecting previously unselected package python3-dateutil. 162s Preparing to unpack .../26-python3-dateutil_2.9.0-3_all.deb ... 162s Unpacking python3-dateutil (2.9.0-3) ... 162s Selecting previously unselected package python3-sortedcontainers. 162s Preparing to unpack .../27-python3-sortedcontainers_2.4.0-2_all.deb ... 162s Unpacking python3-sortedcontainers (2.4.0-2) ... 162s Selecting previously unselected package python3-hypothesis. 162s Preparing to unpack .../28-python3-hypothesis_6.125.2-1_all.deb ... 162s Unpacking python3-hypothesis (6.125.2-1) ... 162s Selecting previously unselected package python3-expecttest. 162s Preparing to unpack .../29-python3-expecttest_0.3.0-1_all.deb ... 162s Unpacking python3-expecttest (0.3.0-1) ... 162s Selecting previously unselected package python3-filelock. 162s Preparing to unpack .../30-python3-filelock_3.16.1-2_all.deb ... 162s Unpacking python3-filelock (3.16.1-2) ... 162s Selecting previously unselected package python3-fsspec. 162s Preparing to unpack .../31-python3-fsspec_2025.2.0-1_all.deb ... 162s Unpacking python3-fsspec (2025.2.0-1) ... 162s Selecting previously unselected package python3-mpmath. 162s Preparing to unpack .../32-python3-mpmath_1.3.0-1_all.deb ... 162s Unpacking python3-mpmath (1.3.0-1) ... 162s Selecting previously unselected package python3-networkx. 162s Preparing to unpack .../33-python3-networkx_3.2.1-4ubuntu1_all.deb ... 162s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 163s Selecting previously unselected package python3-numpy. 163s Preparing to unpack .../34-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 163s Unpacking python3-numpy (1:1.26.4+ds-13) ... 163s Selecting previously unselected package python3-packaging. 163s Preparing to unpack .../35-python3-packaging_24.2-1_all.deb ... 163s Unpacking python3-packaging (24.2-1) ... 163s Selecting previously unselected package python3-psutil. 163s Preparing to unpack .../36-python3-psutil_5.9.8-2build3_s390x.deb ... 163s Unpacking python3-psutil (5.9.8-2build3) ... 163s Selecting previously unselected package python3-sympy. 163s Preparing to unpack .../37-python3-sympy_1.13.3-1_all.deb ... 163s Unpacking python3-sympy (1.13.3-1) ... 163s Selecting previously unselected package python3-torch. 163s Preparing to unpack .../38-python3-torch_2.6.0+dfsg-1_s390x.deb ... 163s Unpacking python3-torch (2.6.0+dfsg-1) ... 163s Setting up libpciaccess0:s390x (0.17-3build1) ... 163s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 163s Setting up python3-filelock (3.16.1-2) ... 163s Setting up libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 163s Setting up libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 163s Setting up python3-fsspec (2025.2.0-1) ... 164s Setting up python3-sortedcontainers (2.4.0-2) ... 164s Setting up libsleef3:s390x (3.7-0ubuntu2) ... 164s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 164s Setting up python3-networkx (3.2.1-4ubuntu1) ... 165s Setting up python3-psutil (5.9.8-2build3) ... 165s Setting up libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 165s Setting up libblas3:s390x (3.12.1-2) ... 165s 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 165s Setting up python3-packaging (24.2-1) ... 165s Setting up libmunge2:s390x (0.5.16-1) ... 165s Setting up libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 165s Setting up libhwloc15:s390x (2.12.0-1) ... 165s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 165s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 165s Setting up libbenchmark1.9.1:s390x (1.9.1-1) ... 165s Setting up librdmacm1t64:s390x (55.0-1ubuntu1) ... 165s Setting up python3-dateutil (2.9.0-3) ... 165s Setting up libonnx1t64:s390x (1.17.0-3) ... 165s Setting up python3-mpmath (1.3.0-1) ... 165s Setting up libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 165s Setting up libfmt10:s390x (10.1.1+ds1-4) ... 165s Setting up libfabric1:s390x (1.17.0-3ubuntu1) ... 165s Setting up python3-sympy (1.13.3-1) ... 170s Setting up liblapack3:s390x (3.12.1-2) ... 170s 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 170s Setting up python3-hypothesis (6.125.2-1) ... 170s Setting up libhwloc-plugins:s390x (2.12.0-1) ... 170s Setting up libpmix2t64:s390x (5.0.6-3) ... 170s Setting up python3-numpy (1:1.26.4+ds-13) ... 171s Setting up python3-expecttest (0.3.0-1) ... 171s Setting up libopenmpi40:s390x (5.0.7-1) ... 171s Setting up libgloo0 (0.0~git20231202.5354032-3build1) ... 171s Setting up libtorch2.6:s390x (2.6.0+dfsg-1) ... 171s Setting up libtorch-test (2.6.0+dfsg-1) ... 171s Setting up python3-torch (2.6.0+dfsg-1) ... 176s Processing triggers for man-db (2.13.0-1) ... 176s Processing triggers for libc-bin (2.41-1ubuntu1) ... 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-torch'], kind short, sout pipe, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/py_import_and_version-packages.all"], kind short, sout raw, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_import_and_version-packages.all /tmp/autopkgtest-work.z8qos2ju/out/py_import_and_version-packages.all 177s autopkgtest: DBG: got reply from testbed: ok 177s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 177s autopkgtest: DBG: testbed command exited with code 0 177s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 177s autopkgtest [08:12:54]: test py_import_and_version: cd test/ ; python3 -c "import sys, torch as th; print(sys.version, th.__path__, th.__version__)" 177s autopkgtest [08:12:54]: test py_import_and_version: [----------------------- 177s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/py_import_and_version-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/py_import_and_version-stderr --stdout=/tmp/autopkgtest.wFE02M/py_import_and_version-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp \'--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1\' -- bash -ec \'cd test/ ; python3 -c "import sys, torch as th; print(sys.version, th.__path__, th.__version__)"\''], kind test, sout raw, serr raw, env [] 177s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/py_import_and_version-artifacts 177s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 177s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 177s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 177s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 177s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 177s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 177s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 177s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 177s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 177s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/py_import_and_version-stderr 177s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/py_import_and_version-stdout 177s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 177s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 177s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec cd test/ ; python3 -c "import sys, torch as th; print(sys.version, th.__path__, th.__version__)" 177s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.kEP59Cclsv/out to stdout and file: /tmp/autopkgtest.wFE02M/py_import_and_version-stdout 177s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.kEP59Cclsv/err to standard error and file: /tmp/autopkgtest.wFE02M/py_import_and_version-stdout 177s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 1820 to /tmp/autopkgtest_script_pid 178s 3.13.2 (main, Feb 5 2025, 01:23:35) [GCC 14.2.0] ['/usr/lib/python3/dist-packages/torch'] 2.6.0+debian 178s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 178s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 178s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 178s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest [08:12:55]: test py_import_and_version: -----------------------] 178s autopkgtest: DBG: testbed executing test finished with exit status 0 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_import_and_version-stdout /tmp/autopkgtest-work.z8qos2ju/out/py_import_and_version-stdout 179s autopkgtest: DBG: got reply from testbed: ok 179s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_import_and_version-stderr /tmp/autopkgtest-work.z8qos2ju/out/py_import_and_version-stderr 179s autopkgtest: DBG: got reply from testbed: ok 179s autopkgtest [08:12:56]: test py_import_and_version: - - - - - - - - - - results - - - - - - - - - - 179s py_import_and_version PASS 179s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_import_and_version-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 179s autopkgtest: DBG: got reply from testbed: ok 179s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/py_import_and_version-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest [08:12:56]: test py_blas_openblas: preparing testbed 179s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-torch'], deps_new=['python3-torch', 'libopenblas0'] 179s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 179s autopkgtest: DBG: install_deps: deps_new=['python3-torch', 'libopenblas0'] 179s autopkgtest: DBG: install-deps: satisfying python3-torch, libopenblas0 179s autopkgtest: DBG: can use apt-get on testbed: True 179s 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-torch, libopenblas0'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 179s Reading package lists... 180s Building dependency tree... 180s Reading state information... 180s Starting pkgProblemResolver with broken count: 0 180s Starting 2 pkgProblemResolver with broken count: 0 180s Done 180s The following NEW packages will be installed: 180s libopenblas0 libopenblas0-pthread 180s 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. 180s Need to get 6958 kB of archives. 180s After this operation, 21.4 MB of additional disk space will be used. 180s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenblas0-pthread s390x 0.3.29+ds-2 [6952 kB] 181s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenblas0 s390x 0.3.29+ds-2 [6260 B] 181s Fetched 6958 kB in 1s (7533 kB/s) 181s Selecting previously unselected package libopenblas0-pthread:s390x. 181s (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 ... 65000 files and directories currently installed.) 181s Preparing to unpack .../libopenblas0-pthread_0.3.29+ds-2_s390x.deb ... 181s Unpacking libopenblas0-pthread:s390x (0.3.29+ds-2) ... 181s Selecting previously unselected package libopenblas0:s390x. 181s Preparing to unpack .../libopenblas0_0.3.29+ds-2_s390x.deb ... 181s Unpacking libopenblas0:s390x (0.3.29+ds-2) ... 181s Setting up libopenblas0-pthread:s390x (0.3.29+ds-2) ... 181s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 181s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 181s update-alternatives: using /usr/lib/s390x-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/s390x-linux-gnu/libopenblas.so.0 (libopenblas.so.0-s390x-linux-gnu) in auto mode 181s Setting up libopenblas0:s390x (0.3.29+ds-2) ... 181s Processing triggers for libc-bin (2.41-1ubuntu1) ... 181s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-torch'], kind short, sout pipe, serr pipe, env [] 181s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/py_blas_openblas-packages.all"], kind short, sout raw, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_openblas-packages.all /tmp/autopkgtest-work.z8qos2ju/out/py_blas_openblas-packages.all 182s autopkgtest: DBG: got reply from testbed: ok 182s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 182s autopkgtest [08:12:59]: test py_blas_openblas: cd debian/tests ; python3 blas.py 182s autopkgtest [08:12:59]: test py_blas_openblas: [----------------------- 182s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/py_blas_openblas-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/py_blas_openblas-stderr --stdout=/tmp/autopkgtest.wFE02M/py_blas_openblas-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec 'cd debian/tests ; python3 blas.py'"], kind test, sout raw, serr raw, env [] 182s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/py_blas_openblas-artifacts 182s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 182s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 182s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 182s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 182s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 182s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 182s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 182s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 182s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 182s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/py_blas_openblas-stderr 182s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/py_blas_openblas-stdout 182s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 182s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 182s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec cd debian/tests ; python3 blas.py 182s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pTybK7c4tS/out to stdout and file: /tmp/autopkgtest.wFE02M/py_blas_openblas-stdout 182s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pTybK7c4tS/err to standard error and file: /tmp/autopkgtest.wFE02M/py_blas_openblas-stdout 182s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2004 to /tmp/autopkgtest_script_pid 182s Traceback (most recent call last): 182s File "/usr/lib/python3/dist-packages/numpy/core/__init__.py", line 24, in 182s from . import multiarray 182s File "/usr/lib/python3/dist-packages/numpy/core/multiarray.py", line 10, in 182s from . import overrides 182s File "/usr/lib/python3/dist-packages/numpy/core/overrides.py", line 8, in 182s from numpy.core._multiarray_umath import ( 182s add_docstring, _get_implementing_args, _ArrayFunctionDispatcher) 182s ImportError: libopenblas.so.0: cannot enable executable stack as shared object requires: Invalid argument 182s 182s During handling of the above exception, another exception occurred: 182s 182s Traceback (most recent call last): 182s File "/usr/lib/python3/dist-packages/numpy/__init__.py", line 130, in 182s from numpy.__config__ import show as show_config 182s File "/usr/lib/python3/dist-packages/numpy/__config__.py", line 4, in 182s from numpy.core._multiarray_umath import ( 182s ...<3 lines>... 182s ) 182s File "/usr/lib/python3/dist-packages/numpy/core/__init__.py", line 50, in 182s raise ImportError(msg) 182s ImportError: 182s 182s IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! 182s 182s Importing the numpy C-extensions failed. This error can happen for 182s many reasons, often due to issues with your setup or how NumPy was 182s installed. 182s 182s We have compiled some common reasons and troubleshooting tips at: 182s 182s https://numpy.org/devdocs/user/troubleshooting-importerror.html 182s 182s Please note and check the following: 182s 182s * The Python version is: Python3.13 from "/usr/bin/python3" 182s * The NumPy version is: "1.26.4" 182s 182s and make sure that they are the versions you expect. 182s Please carefully study the documentation linked above for further help. 182s 182s Original error was: libopenblas.so.0: cannot enable executable stack as shared object requires: Invalid argument 182s 182s 182s The above exception was the direct cause of the following exception: 182s 182s Traceback (most recent call last): 182s File "/tmp/autopkgtest.wFE02M/build.E4h/src/debian/tests/blas.py", line 6, in 182s import numpy as np 182s File "/usr/lib/python3/dist-packages/numpy/__init__.py", line 135, in 182s raise ImportError(msg) from e 182s ImportError: Error importing numpy: you should not try to import numpy from 182s its source directory; please exit the numpy source tree, and relaunch 182s your python interpreter from there. 182s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 182s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 182s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 182s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 1 182s autopkgtest: DBG: testbed command exited with code 1 183s autopkgtest [08:13:00]: test py_blas_openblas: -----------------------] 183s autopkgtest: DBG: testbed executing test finished with exit status 1 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_openblas-stdout /tmp/autopkgtest-work.z8qos2ju/out/py_blas_openblas-stdout 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_openblas-stderr /tmp/autopkgtest-work.z8qos2ju/out/py_blas_openblas-stderr 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest [08:13:00]: test py_blas_openblas: - - - - - - - - - - results - - - - - - - - - - 183s py_blas_openblas FAIL non-zero exit status 1 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_openblas-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/py_blas_openblas-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest [08:13:00]: test py_blas_blis: preparing testbed 183s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-torch', 'libopenblas0'], deps_new=['python3-torch', 'libblis4'] 183s autopkgtest: DBG: testbed reset 183s autopkgtest: DBG: sending command to testbed: revert 265s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.wFE02M 265s autopkgtest: DBG: sending command to testbed: print-execute-command 265s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.nnx3sg39/runcmd 265s autopkgtest: DBG: sending command to testbed: capabilities 265s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu root-on-testbed ok reboot revert 265s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'reboot', 'revert', 'has_internet'] 265s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 265s autopkgtest: DBG: testbed command exited with code 0 265s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.wFE02M/wrapper.sh 265s autopkgtest: DBG: got reply from testbed: ok 265s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/wrapper.sh'], kind short, sout raw, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest [08:14:23]: testbed dpkg architecture: s390x 266s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest [08:14:23]: testbed apt version: 2.9.30 266s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest: DBG: testbed has eatmydata 266s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest [08:14:23]: @@@@@@@@@@@@@@@@@@@@ test bed setup 266s 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 [] 266s autopkgtest: DBG: testbed command exited with code 0 266s autopkgtest [08:14:23]: testbed release detected to be: plucky 266s 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 [] 267s autopkgtest: DBG: testbed command exited with code 0 267s 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 [] 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest: DBG: adding APT source: Types: deb deb-src 267s URIs: http://ftpmaster.internal/ubuntu/ 267s Suites: plucky-proposed 267s Components: main restricted universe multiverse 267s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 267s 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 [] 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 267s Package: * 267s Pin: release plucky-proposed 267s Pin-Priority: 500 267s 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 [] 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest [08:14:24]: updating testbed package index (apt update) 267s 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'] 267s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 268s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 268s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 268s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 268s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 268s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 268s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 268s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 268s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 268s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 268s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 268s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 269s Fetched 1651 kB in 1s (1310 kB/s) 269s Reading package lists... 269s autopkgtest: DBG: testbed command exited with code 0 269s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 269s Package: * 269s Pin: release plucky-proposed 269s Pin-Priority: 100 269s 269s Package: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any 269s Pin: release plucky-proposed 269s Pin-Priority: 995 269s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 269s autopkgtest: DBG: testbed command exited with code 0 269s 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.wFE02M/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 269s autopkgtest: DBG: testbed command exited with code 0 269s 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'] 270s + lsb_release --codename --short 270s + RELEASE=plucky 270s + cat 270s + [ plucky != trusty ] 270s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 270s Reading package lists... 270s Building dependency tree... 270s Reading state information... 270s Calculating upgrade... 270s The following packages were automatically installed and are no longer required: 270s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 270s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 270s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 270s linux-tools-6.11.0-8-generic 270s Use 'sudo apt autoremove' to remove them. 270s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 270s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 270s + /usr/lib/apt/apt-helper analyze-pattern ?true 270s + uname -r 270s + sed s/\./\\./g 270s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 270s + apt list ?obsolete 270s + + cut -d/ -f1 270s tail -n+2 270s + grep -v ^linux-.*6\.12\.0-15-generic.* 270s + true 270s + obsolete_pkgs= 270s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 270s Reading package lists... 270s Building dependency tree... 270s Reading state information... 270s The following packages will be REMOVED: 270s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 270s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 270s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 270s linux-tools-6.11.0-8-generic* 271s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 271s After this operation, 167 MB disk space will be freed. 271s (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.) 271s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 271s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 271s Removing libpython3.12t64:s390x (3.12.9-1) ... 271s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 271s Removing libnsl2:s390x (1.3.0-3build3) ... 271s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 271s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 271s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 272s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 272s Processing triggers for libc-bin (2.40-4ubuntu1) ... 272s (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 ... 55930 files and directories currently installed.) 272s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 272s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 272s + grep -q trusty /etc/lsb-release 272s + [ ! -d /usr/share/doc/unattended-upgrades ] 272s + [ ! -d /usr/share/doc/lxd ] 272s + [ ! -d /usr/share/doc/lxd-client ] 272s + [ ! -d /usr/share/doc/snapd ] 272s + type iptables 272s + cat 272s + chmod 755 /etc/rc.local 272s + . /etc/rc.local 272s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 272s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 272s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 272s + uname -m 272s + [ s390x = ppc64le ] 272s + [ -d /run/systemd/system ] 272s + systemd-detect-virt --quiet --vm 272s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 272s + cat 272s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 272s + echo COMPRESS=lz4 272s autopkgtest: DBG: testbed command exited with code 0 272s autopkgtest [08:14:29]: upgrading testbed (apt dist-upgrade and autopurge) 272s 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'] 272s Reading package lists... 272s Building dependency tree... 272s Reading state information... 272s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 272s Starting 2 pkgProblemResolver with broken count: 0 272s Done 273s Entering ResolveByKeep 273s 273s The following packages will be upgraded: 273s libc-bin libc-dev-bin libc6 libc6-dev locales 273s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 273s Need to get 9512 kB of archives. 273s After this operation, 288 kB of additional disk space will be used. 273s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 273s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 274s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 275s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 275s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 275s Preconfiguring packages ... 275s Fetched 9512 kB in 2s (3957 kB/s) 276s (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 ... 55928 files and directories currently installed.) 276s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 276s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 276s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 276s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 276s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 276s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 276s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 276s Checking for services that may need to be restarted... 276s Checking init scripts... 276s Checking for services that may need to be restarted... 276s Checking init scripts... 276s Stopping some services possibly affected by the upgrade (will be restarted later): 276s cron: stopping...done. 276s 276s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 276s Setting up libc6:s390x (2.41-1ubuntu1) ... 276s Checking for services that may need to be restarted... 276s Checking init scripts... 276s Restarting services possibly affected by the upgrade: 276s cron: restarting...done. 276s 276s Services restarted successfully. 276s (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.) 276s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 276s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 276s Setting up libc-bin (2.41-1ubuntu1) ... 276s Setting up locales (2.41-1ubuntu1) ... 276s Installing new version of config file /etc/locale.alias ... 277s Generating locales (this might take a while)... 277s en_US.UTF-8... done 277s Generation complete. 277s Setting up libc-dev-bin (2.41-1ubuntu1) ... 277s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 278s Processing triggers for man-db (2.13.0-1) ... 278s Processing triggers for systemd (257.2-3ubuntu1) ... 279s autopkgtest: DBG: testbed command exited with code 0 279s 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'] 279s Reading package lists... 279s Building dependency tree... 279s Reading state information... 279s Starting pkgProblemResolver with broken count: 0 279s Starting 2 pkgProblemResolver with broken count: 0 279s Done 279s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 280s autopkgtest: DBG: testbed command exited with code 0 280s 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.wFE02M/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 280s autopkgtest: DBG: testbed command exited with code 1 280s autopkgtest [08:14:37]: rebooting testbed after setup commands that affected boot 280s autopkgtest: DBG: sending command to testbed: reboot 296s autopkgtest: DBG: got reply from testbed: ok 296s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 296s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 296s autopkgtest: DBG: testbed command exited with code 0 296s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 297s autopkgtest: DBG: got reply from testbed: ok 297s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 297s autopkgtest: DBG: testbed command exited with code 0 297s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 297s autopkgtest: DBG: testbed command exited with code 0 297s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 297s autopkgtest: DBG: testbed command exited with code 0 297s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 297s autopkgtest: DBG: testbed command exited with code 0 297s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 298s autopkgtest: DBG: got reply from testbed: ok 298s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 298s autopkgtest: DBG: testbed command exited with code 0 298s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 298s autopkgtest: DBG: testbed command exited with code 0 298s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 298s autopkgtest: DBG: testbed command exited with code 0 298s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/testbed-packages"], kind short, sout raw, serr pipe, env [] 298s autopkgtest: DBG: testbed command exited with code 0 298s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/testbed-packages /tmp/autopkgtest-work.z8qos2ju/out/testbed-packages 298s autopkgtest: DBG: got reply from testbed: ok 298s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 298s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 298s autopkgtest: DBG: testbed command exited with code 0 298s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 299s autopkgtest: DBG: got reply from testbed: ok 299s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 299s autopkgtest: DBG: testbed command exited with code 0 299s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 300s autopkgtest: DBG: got reply from testbed: ok 300s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 300s autopkgtest: DBG: testbed command exited with code 0 300s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 300s autopkgtest: DBG: install_deps: deps_new=['python3-torch', 'libblis4'] 300s autopkgtest: DBG: install-deps: satisfying python3-torch, libblis4 300s autopkgtest: DBG: can use apt-get on testbed: True 300s 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-torch, libblis4'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 300s Reading package lists... 300s Building dependency tree... 300s Reading state information... 300s Starting pkgProblemResolver with broken count: 0 301s Starting 2 pkgProblemResolver with broken count: 0 301s Done 301s The following NEW packages will be installed: 301s libbenchmark1.9.1 libblas3 libblis4 libblis4-openmp libcpp-httplib0.16 301s libevent-pthreads-2.1-7t64 libfabric1 libfmt10 libgfortran5 libgloo0 301s libgomp1 libhiredis1.1.0 libhwloc-plugins libhwloc15 liblapack3 libmunge2 301s libonnx1t64 libopenmpi40 libpciaccess0 libpmix2t64 libprotobuf32t64 301s librdmacm1t64 libsleef3 libtensorpipe0 libtorch-test libtorch2.6 libxnvctrl0 301s ocl-icd-libopencl1 python3-dateutil python3-expecttest python3-filelock 301s python3-fsspec python3-hypothesis python3-mpmath python3-networkx 301s python3-numpy python3-packaging python3-psutil python3-sortedcontainers 301s python3-sympy python3-torch 301s 0 upgraded, 41 newly installed, 0 to remove and 0 not upgraded. 301s Need to get 114 MB of archives. 301s After this operation, 598 MB of additional disk space will be used. 301s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libbenchmark1.9.1 s390x 1.9.1-1 [143 kB] 301s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 301s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 301s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libblis4-openmp s390x 1.1-2ubuntu1 [673 kB] 301s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x libblis4 s390x 1.1-2ubuntu1 [3082 B] 301s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libcpp-httplib0.16 s390x 0.16.3+ds-2 [206 kB] 301s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-pthreads-2.1-7t64 s390x 2.1.12-stable-10 [7870 B] 301s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x librdmacm1t64 s390x 55.0-1ubuntu1 [73.7 kB] 301s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libfabric1 s390x 1.17.0-3ubuntu1 [558 kB] 302s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libfmt10 s390x 10.1.1+ds1-4 [82.6 kB] 302s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 302s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x libhiredis1.1.0 s390x 1.2.0-6ubuntu3 [42.7 kB] 302s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.12.0-1 [176 kB] 302s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x libmunge2 s390x 0.5.16-1 [15.2 kB] 302s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libpciaccess0 s390x 0.17-3build1 [19.0 kB] 302s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libxnvctrl0 s390x 510.47.03-0ubuntu4 [12.7 kB] 302s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 302s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc-plugins s390x 2.12.0-1 [16.1 kB] 302s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x libpmix2t64 s390x 5.0.6-3 [715 kB] 302s Get:20 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libopenmpi40 s390x 5.0.7-1 [2196 kB] 302s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libgloo0 s390x 0.0~git20231202.5354032-3build1 [171 kB] 302s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 302s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 303s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x libonnx1t64 s390x 1.17.0-3 [966 kB] 303s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libsleef3 s390x 3.7-0ubuntu2 [292 kB] 303s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x libtensorpipe0 s390x 0.0~git20220513.bb1473a-5build2 [475 kB] 303s Get:27 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch2.6 s390x 2.6.0+dfsg-1 [61.4 MB] 305s Get:28 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch-test s390x 2.6.0+dfsg-1 [7318 kB] 306s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 306s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 306s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 306s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-expecttest all 0.3.0-1 [9108 B] 306s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-filelock all 3.16.1-2 [12.9 kB] 306s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fsspec all 2025.2.0-1 [211 kB] 306s Get:35 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 306s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 306s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 306s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 306s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 306s Get:40 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 306s Get:41 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x python3-torch s390x 2.6.0+dfsg-1 [11.8 MB] 307s Fetched 114 MB in 6s (19.7 MB/s) 307s Selecting previously unselected package libbenchmark1.9.1:s390x. 307s (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.) 307s Preparing to unpack .../00-libbenchmark1.9.1_1.9.1-1_s390x.deb ... 307s Unpacking libbenchmark1.9.1:s390x (1.9.1-1) ... 307s Selecting previously unselected package libblas3:s390x. 307s Preparing to unpack .../01-libblas3_3.12.1-2_s390x.deb ... 307s Unpacking libblas3:s390x (3.12.1-2) ... 307s Selecting previously unselected package libgomp1:s390x. 307s Preparing to unpack .../02-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 307s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 307s Selecting previously unselected package libblis4-openmp:s390x. 307s Preparing to unpack .../03-libblis4-openmp_1.1-2ubuntu1_s390x.deb ... 307s Unpacking libblis4-openmp:s390x (1.1-2ubuntu1) ... 307s Selecting previously unselected package libblis4:s390x. 307s Preparing to unpack .../04-libblis4_1.1-2ubuntu1_s390x.deb ... 307s Unpacking libblis4:s390x (1.1-2ubuntu1) ... 307s Selecting previously unselected package libcpp-httplib0.16:s390x. 307s Preparing to unpack .../05-libcpp-httplib0.16_0.16.3+ds-2_s390x.deb ... 307s Unpacking libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 307s Selecting previously unselected package libevent-pthreads-2.1-7t64:s390x. 307s Preparing to unpack .../06-libevent-pthreads-2.1-7t64_2.1.12-stable-10_s390x.deb ... 307s Unpacking libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 307s Selecting previously unselected package librdmacm1t64:s390x. 307s Preparing to unpack .../07-librdmacm1t64_55.0-1ubuntu1_s390x.deb ... 307s Unpacking librdmacm1t64:s390x (55.0-1ubuntu1) ... 307s Selecting previously unselected package libfabric1:s390x. 307s Preparing to unpack .../08-libfabric1_1.17.0-3ubuntu1_s390x.deb ... 307s Unpacking libfabric1:s390x (1.17.0-3ubuntu1) ... 307s Selecting previously unselected package libfmt10:s390x. 307s Preparing to unpack .../09-libfmt10_10.1.1+ds1-4_s390x.deb ... 307s Unpacking libfmt10:s390x (10.1.1+ds1-4) ... 307s Selecting previously unselected package libgfortran5:s390x. 307s Preparing to unpack .../10-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 307s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 307s Selecting previously unselected package libhiredis1.1.0:s390x. 307s Preparing to unpack .../11-libhiredis1.1.0_1.2.0-6ubuntu3_s390x.deb ... 307s Unpacking libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 307s Selecting previously unselected package libhwloc15:s390x. 307s Preparing to unpack .../12-libhwloc15_2.12.0-1_s390x.deb ... 307s Unpacking libhwloc15:s390x (2.12.0-1) ... 307s Selecting previously unselected package libmunge2:s390x. 307s Preparing to unpack .../13-libmunge2_0.5.16-1_s390x.deb ... 307s Unpacking libmunge2:s390x (0.5.16-1) ... 307s Selecting previously unselected package libpciaccess0:s390x. 307s Preparing to unpack .../14-libpciaccess0_0.17-3build1_s390x.deb ... 307s Unpacking libpciaccess0:s390x (0.17-3build1) ... 307s Selecting previously unselected package libxnvctrl0:s390x. 307s Preparing to unpack .../15-libxnvctrl0_510.47.03-0ubuntu4_s390x.deb ... 307s Unpacking libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 307s Selecting previously unselected package ocl-icd-libopencl1:s390x. 307s Preparing to unpack .../16-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 307s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 307s Selecting previously unselected package libhwloc-plugins:s390x. 307s Preparing to unpack .../17-libhwloc-plugins_2.12.0-1_s390x.deb ... 307s Unpacking libhwloc-plugins:s390x (2.12.0-1) ... 307s Selecting previously unselected package libpmix2t64:s390x. 307s Preparing to unpack .../18-libpmix2t64_5.0.6-3_s390x.deb ... 307s Unpacking libpmix2t64:s390x (5.0.6-3) ... 307s Selecting previously unselected package libopenmpi40:s390x. 307s Preparing to unpack .../19-libopenmpi40_5.0.7-1_s390x.deb ... 307s Unpacking libopenmpi40:s390x (5.0.7-1) ... 307s Selecting previously unselected package libgloo0. 307s Preparing to unpack .../20-libgloo0_0.0~git20231202.5354032-3build1_s390x.deb ... 307s Unpacking libgloo0 (0.0~git20231202.5354032-3build1) ... 307s Selecting previously unselected package liblapack3:s390x. 307s Preparing to unpack .../21-liblapack3_3.12.1-2_s390x.deb ... 307s Unpacking liblapack3:s390x (3.12.1-2) ... 307s Selecting previously unselected package libprotobuf32t64:s390x. 307s Preparing to unpack .../22-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 307s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 307s Selecting previously unselected package libonnx1t64:s390x. 307s Preparing to unpack .../23-libonnx1t64_1.17.0-3_s390x.deb ... 307s Unpacking libonnx1t64:s390x (1.17.0-3) ... 307s Selecting previously unselected package libsleef3:s390x. 307s Preparing to unpack .../24-libsleef3_3.7-0ubuntu2_s390x.deb ... 307s Unpacking libsleef3:s390x (3.7-0ubuntu2) ... 307s Selecting previously unselected package libtensorpipe0:s390x. 307s Preparing to unpack .../25-libtensorpipe0_0.0~git20220513.bb1473a-5build2_s390x.deb ... 307s Unpacking libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 307s Selecting previously unselected package libtorch2.6:s390x. 307s Preparing to unpack .../26-libtorch2.6_2.6.0+dfsg-1_s390x.deb ... 307s Unpacking libtorch2.6:s390x (2.6.0+dfsg-1) ... 308s Selecting previously unselected package libtorch-test. 308s Preparing to unpack .../27-libtorch-test_2.6.0+dfsg-1_s390x.deb ... 308s Unpacking libtorch-test (2.6.0+dfsg-1) ... 309s Selecting previously unselected package python3-dateutil. 309s Preparing to unpack .../28-python3-dateutil_2.9.0-3_all.deb ... 309s Unpacking python3-dateutil (2.9.0-3) ... 309s Selecting previously unselected package python3-sortedcontainers. 309s Preparing to unpack .../29-python3-sortedcontainers_2.4.0-2_all.deb ... 309s Unpacking python3-sortedcontainers (2.4.0-2) ... 309s Selecting previously unselected package python3-hypothesis. 309s Preparing to unpack .../30-python3-hypothesis_6.125.2-1_all.deb ... 309s Unpacking python3-hypothesis (6.125.2-1) ... 309s Selecting previously unselected package python3-expecttest. 309s Preparing to unpack .../31-python3-expecttest_0.3.0-1_all.deb ... 309s Unpacking python3-expecttest (0.3.0-1) ... 309s Selecting previously unselected package python3-filelock. 309s Preparing to unpack .../32-python3-filelock_3.16.1-2_all.deb ... 309s Unpacking python3-filelock (3.16.1-2) ... 309s Selecting previously unselected package python3-fsspec. 309s Preparing to unpack .../33-python3-fsspec_2025.2.0-1_all.deb ... 309s Unpacking python3-fsspec (2025.2.0-1) ... 309s Selecting previously unselected package python3-mpmath. 309s Preparing to unpack .../34-python3-mpmath_1.3.0-1_all.deb ... 309s Unpacking python3-mpmath (1.3.0-1) ... 309s Selecting previously unselected package python3-networkx. 309s Preparing to unpack .../35-python3-networkx_3.2.1-4ubuntu1_all.deb ... 309s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 309s Selecting previously unselected package python3-numpy. 309s Preparing to unpack .../36-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 309s Unpacking python3-numpy (1:1.26.4+ds-13) ... 309s Selecting previously unselected package python3-packaging. 309s Preparing to unpack .../37-python3-packaging_24.2-1_all.deb ... 309s Unpacking python3-packaging (24.2-1) ... 309s Selecting previously unselected package python3-psutil. 309s Preparing to unpack .../38-python3-psutil_5.9.8-2build3_s390x.deb ... 309s Unpacking python3-psutil (5.9.8-2build3) ... 309s Selecting previously unselected package python3-sympy. 309s Preparing to unpack .../39-python3-sympy_1.13.3-1_all.deb ... 309s Unpacking python3-sympy (1.13.3-1) ... 309s Selecting previously unselected package python3-torch. 309s Preparing to unpack .../40-python3-torch_2.6.0+dfsg-1_s390x.deb ... 309s Unpacking python3-torch (2.6.0+dfsg-1) ... 310s Setting up libpciaccess0:s390x (0.17-3build1) ... 310s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 310s Setting up python3-filelock (3.16.1-2) ... 310s Setting up libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 310s Setting up libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 310s Setting up python3-fsspec (2025.2.0-1) ... 310s Setting up python3-sortedcontainers (2.4.0-2) ... 310s Setting up libsleef3:s390x (3.7-0ubuntu2) ... 310s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 310s Setting up python3-networkx (3.2.1-4ubuntu1) ... 311s Setting up python3-psutil (5.9.8-2build3) ... 311s Setting up libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 311s Setting up libblas3:s390x (3.12.1-2) ... 311s 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 311s Setting up python3-packaging (24.2-1) ... 311s Setting up libmunge2:s390x (0.5.16-1) ... 311s Setting up libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 311s Setting up libhwloc15:s390x (2.12.0-1) ... 311s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 311s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 311s Setting up libbenchmark1.9.1:s390x (1.9.1-1) ... 311s Setting up librdmacm1t64:s390x (55.0-1ubuntu1) ... 311s Setting up python3-dateutil (2.9.0-3) ... 311s Setting up libonnx1t64:s390x (1.17.0-3) ... 311s Setting up libblis4-openmp:s390x (1.1-2ubuntu1) ... 311s update-alternatives: using /usr/lib/s390x-linux-gnu/blis-openmp/libblis.so.4 to provide /usr/lib/s390x-linux-gnu/libblis.so.4 (libblis.so.4-s390x-linux-gnu) in auto mode 311s update-alternatives: using /usr/lib/s390x-linux-gnu/blis-openmp/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 311s Setting up python3-mpmath (1.3.0-1) ... 312s Setting up libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 312s Setting up libfmt10:s390x (10.1.1+ds1-4) ... 312s Setting up libfabric1:s390x (1.17.0-3ubuntu1) ... 312s Setting up python3-sympy (1.13.3-1) ... 316s Setting up liblapack3:s390x (3.12.1-2) ... 316s 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 316s Setting up libblis4:s390x (1.1-2ubuntu1) ... 316s Setting up python3-hypothesis (6.125.2-1) ... 316s Setting up libhwloc-plugins:s390x (2.12.0-1) ... 316s Setting up libpmix2t64:s390x (5.0.6-3) ... 316s Setting up python3-numpy (1:1.26.4+ds-13) ... 317s Setting up python3-expecttest (0.3.0-1) ... 317s Setting up libopenmpi40:s390x (5.0.7-1) ... 317s Setting up libgloo0 (0.0~git20231202.5354032-3build1) ... 318s Setting up libtorch2.6:s390x (2.6.0+dfsg-1) ... 318s Setting up libtorch-test (2.6.0+dfsg-1) ... 318s Setting up python3-torch (2.6.0+dfsg-1) ... 322s Processing triggers for man-db (2.13.0-1) ... 322s Processing triggers for libc-bin (2.41-1ubuntu1) ... 322s autopkgtest: DBG: testbed command exited with code 0 322s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-torch'], kind short, sout pipe, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/py_blas_blis-packages.all"], kind short, sout raw, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_blis-packages.all /tmp/autopkgtest-work.z8qos2ju/out/py_blas_blis-packages.all 323s autopkgtest: DBG: got reply from testbed: ok 323s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 323s autopkgtest: DBG: testbed command exited with code 1 323s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M/build.E4h'], kind short, sout raw, serr pipe, env [] 323s autopkgtest: DBG: testbed command exited with code 0 323s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.z8qos2ju/out/tests-tree/ /tmp/autopkgtest.wFE02M/build.E4h/src/ 338s autopkgtest: DBG: got reply from testbed: ok 338s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr pipe, env [] 338s autopkgtest: DBG: testbed command exited with code 0 338s autopkgtest [08:15:35]: test py_blas_blis: cd debian/tests ; python3 blas.py 338s autopkgtest [08:15:35]: test py_blas_blis: [----------------------- 338s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/py_blas_blis-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/py_blas_blis-stderr --stdout=/tmp/autopkgtest.wFE02M/py_blas_blis-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec 'cd debian/tests ; python3 blas.py'"], kind test, sout raw, serr raw, env [] 338s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/py_blas_blis-artifacts 338s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 338s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 338s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 338s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/py_blas_blis-stderr 338s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/py_blas_blis-stdout 338s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 338s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec cd debian/tests ; python3 blas.py 338s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.INgXTF8ZjI/out to stdout and file: /tmp/autopkgtest.wFE02M/py_blas_blis-stdout 338s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.INgXTF8ZjI/err to standard error and file: /tmp/autopkgtest.wFE02M/py_blas_blis-stdout 338s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 1665 to /tmp/autopkgtest_script_pid 339s F64 Numpy Refrence Group update-alternatives: error: no alternatives for libblas.so.3-x86_64-linux-gnu 396s ........6607.0ms pm 113.9ms 451s F64 Torch ........6548.7ms pm 96.3ms 646s F32 Numpy Refrence Group ........23895.2ms pm 142.1ms 837s F32 Torch ........23722.6ms pm 154.4ms 837s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 837s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 837s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 837s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 837s autopkgtest: DBG: testbed command exited with code 0 838s autopkgtest [08:23:55]: test py_blas_blis: -----------------------] 838s autopkgtest: DBG: testbed executing test finished with exit status 0 838s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_blis-stdout /tmp/autopkgtest-work.z8qos2ju/out/py_blas_blis-stdout 838s autopkgtest: DBG: got reply from testbed: ok 838s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_blis-stderr /tmp/autopkgtest-work.z8qos2ju/out/py_blas_blis-stderr 838s autopkgtest: DBG: got reply from testbed: ok 838s autopkgtest [08:23:55]: test py_blas_blis: - - - - - - - - - - results - - - - - - - - - - 838s py_blas_blis PASS 838s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_blas_blis-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 838s autopkgtest: DBG: got reply from testbed: ok 838s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/py_blas_blis-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 838s autopkgtest: DBG: testbed command exited with code 0 838s autopkgtest [08:23:55]: test py_sequential: preparing testbed 838s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-torch', 'libblis4'], deps_new=['python3-torch'] 838s autopkgtest: DBG: testbed reset 838s autopkgtest: DBG: sending command to testbed: revert 914s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.wFE02M 914s autopkgtest: DBG: sending command to testbed: print-execute-command 914s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.nnx3sg39/runcmd 914s autopkgtest: DBG: sending command to testbed: capabilities 914s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu root-on-testbed ok reboot revert 914s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'reboot', 'revert', 'has_internet'] 914s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 914s autopkgtest: DBG: testbed command exited with code 0 914s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.wFE02M/wrapper.sh 914s autopkgtest: DBG: got reply from testbed: ok 914s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/wrapper.sh'], kind short, sout raw, serr pipe, env [] 914s autopkgtest: DBG: testbed command exited with code 0 914s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 914s autopkgtest: DBG: testbed command exited with code 0 914s autopkgtest [08:25:11]: testbed dpkg architecture: s390x 914s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 915s autopkgtest: DBG: testbed command exited with code 0 915s autopkgtest [08:25:12]: testbed apt version: 2.9.30 915s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 915s autopkgtest: DBG: testbed command exited with code 0 915s autopkgtest: DBG: testbed has eatmydata 915s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 915s autopkgtest: DBG: testbed command exited with code 0 915s autopkgtest [08:25:12]: @@@@@@@@@@@@@@@@@@@@ test bed setup 915s 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 [] 915s autopkgtest: DBG: testbed command exited with code 0 915s autopkgtest [08:25:12]: testbed release detected to be: plucky 915s 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 [] 915s autopkgtest: DBG: testbed command exited with code 0 915s 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 [] 915s autopkgtest: DBG: testbed command exited with code 0 915s autopkgtest: DBG: adding APT source: Types: deb deb-src 915s URIs: http://ftpmaster.internal/ubuntu/ 915s Suites: plucky-proposed 915s Components: main restricted universe multiverse 915s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 915s 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 [] 915s autopkgtest: DBG: testbed command exited with code 0 915s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 915s Package: * 915s Pin: release plucky-proposed 915s Pin-Priority: 500 915s 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 [] 916s autopkgtest: DBG: testbed command exited with code 0 916s autopkgtest [08:25:13]: updating testbed package index (apt update) 916s 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'] 916s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 916s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 916s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 916s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 916s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 917s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 917s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 917s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 917s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 917s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 917s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 917s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 917s Fetched 1651 kB in 1s (1824 kB/s) 917s Reading package lists... 917s autopkgtest: DBG: testbed command exited with code 0 917s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 917s Package: * 917s Pin: release plucky-proposed 917s Pin-Priority: 100 917s 917s Package: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any 917s Pin: release plucky-proposed 917s Pin-Priority: 995 917s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 918s autopkgtest: DBG: testbed command exited with code 0 918s 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.wFE02M/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 918s autopkgtest: DBG: testbed command exited with code 0 918s 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'] 918s + lsb_release --codename --short 918s + RELEASE=plucky 918s + cat 918s + [ plucky != trusty ] 918s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 918s Reading package lists... 918s Building dependency tree... 918s Reading state information... 918s Calculating upgrade... 918s The following packages were automatically installed and are no longer required: 918s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 918s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 918s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 918s linux-tools-6.11.0-8-generic 918s Use 'sudo apt autoremove' to remove them. 918s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 918s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 918s + /usr/lib/apt/apt-helper analyze-pattern ?true 918s + uname -r 918s + sed s/\./\\./g 918s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 918s + apt list ?obsolete 918s + tail -n+2 918s + cut -d/ -f1 918s + grep -v ^linux-.*6\.12\.0-15-generic.* 918s + true 918s + obsolete_pkgs= 918s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 918s Reading package lists... 918s Building dependency tree... 918s Reading state information... 919s The following packages will be REMOVED: 919s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 919s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 919s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 919s linux-tools-6.11.0-8-generic* 919s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 919s After this operation, 167 MB disk space will be freed. 919s (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.) 919s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 919s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 919s Removing libpython3.12t64:s390x (3.12.9-1) ... 919s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 919s Removing libnsl2:s390x (1.3.0-3build3) ... 919s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 919s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 919s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 920s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 920s Processing triggers for libc-bin (2.40-4ubuntu1) ... 920s (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 ... 55930 files and directories currently installed.) 920s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 920s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 920s + grep -q trusty /etc/lsb-release 920s + [ ! -d /usr/share/doc/unattended-upgrades ] 920s + [ ! -d /usr/share/doc/lxd ] 920s + [ ! -d /usr/share/doc/lxd-client ] 920s + [ ! -d /usr/share/doc/snapd ] 920s + type iptables 920s + cat 920s + chmod 755 /etc/rc.local 920s + . /etc/rc.local 920s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 920s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 920s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 920s + uname -m 920s + [ s390x = ppc64le ] 920s + [ -d /run/systemd/system ] 920s + systemd-detect-virt --quiet --vm 920s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 920s + cat 920s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 920s + echo COMPRESS=lz4 920s autopkgtest: DBG: testbed command exited with code 0 920s autopkgtest [08:25:17]: upgrading testbed (apt dist-upgrade and autopurge) 920s 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'] 920s Reading package lists... 920s Building dependency tree... 920s Reading state information... 920s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 921s Starting 2 pkgProblemResolver with broken count: 0 921s Done 921s Entering ResolveByKeep 921s 921s The following packages will be upgraded: 921s libc-bin libc-dev-bin libc6 libc6-dev locales 921s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 921s Need to get 9512 kB of archives. 921s After this operation, 288 kB of additional disk space will be used. 921s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 921s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 922s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 922s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 922s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 922s Preconfiguring packages ... 922s Fetched 9512 kB in 1s (10.0 MB/s) 922s (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 ... 55928 files and directories currently installed.) 922s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 922s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 922s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 922s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 922s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 922s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 922s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 922s Checking for services that may need to be restarted... 922s Checking init scripts... 922s Checking for services that may need to be restarted... 922s Checking init scripts... 922s Stopping some services possibly affected by the upgrade (will be restarted later): 922s cron: stopping...done. 922s 922s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 923s Setting up libc6:s390x (2.41-1ubuntu1) ... 923s Checking for services that may need to be restarted... 923s Checking init scripts... 923s Restarting services possibly affected by the upgrade: 923s cron: restarting...done. 923s 923s Services restarted successfully. 923s (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.) 923s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 923s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 923s Setting up libc-bin (2.41-1ubuntu1) ... 923s Setting up locales (2.41-1ubuntu1) ... 923s Installing new version of config file /etc/locale.alias ... 923s Generating locales (this might take a while)... 924s en_US.UTF-8... done 924s Generation complete. 924s Setting up libc-dev-bin (2.41-1ubuntu1) ... 924s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 924s Processing triggers for man-db (2.13.0-1) ... 925s Processing triggers for systemd (257.2-3ubuntu1) ... 925s autopkgtest: DBG: testbed command exited with code 0 925s 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'] 926s Reading package lists... 926s Building dependency tree... 926s Reading state information... 926s Starting pkgProblemResolver with broken count: 0 926s Starting 2 pkgProblemResolver with broken count: 0 926s Done 926s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 926s autopkgtest: DBG: testbed command exited with code 0 926s 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.wFE02M/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 926s autopkgtest: DBG: testbed command exited with code 1 926s autopkgtest [08:25:23]: rebooting testbed after setup commands that affected boot 926s autopkgtest: DBG: sending command to testbed: reboot 944s autopkgtest: DBG: got reply from testbed: ok 944s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 944s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 944s autopkgtest: DBG: testbed command exited with code 0 944s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 944s autopkgtest: DBG: got reply from testbed: ok 944s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 945s autopkgtest: DBG: testbed command exited with code 0 945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 945s autopkgtest: DBG: testbed command exited with code 0 945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 945s autopkgtest: DBG: testbed command exited with code 0 945s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 945s autopkgtest: DBG: testbed command exited with code 0 945s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 945s autopkgtest: DBG: got reply from testbed: ok 945s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 945s autopkgtest: DBG: testbed command exited with code 0 945s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 946s autopkgtest: DBG: testbed command exited with code 0 946s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 946s autopkgtest: DBG: testbed command exited with code 0 946s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/testbed-packages"], kind short, sout raw, serr pipe, env [] 946s autopkgtest: DBG: testbed command exited with code 0 946s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/testbed-packages /tmp/autopkgtest-work.z8qos2ju/out/testbed-packages 946s autopkgtest: DBG: got reply from testbed: ok 946s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 946s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 946s autopkgtest: DBG: testbed command exited with code 0 946s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 946s autopkgtest: DBG: got reply from testbed: ok 946s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 947s autopkgtest: DBG: testbed command exited with code 0 947s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 947s autopkgtest: DBG: testbed command exited with code 0 947s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 947s autopkgtest: DBG: testbed command exited with code 0 947s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 947s autopkgtest: DBG: testbed command exited with code 0 947s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 947s autopkgtest: DBG: got reply from testbed: ok 947s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 947s autopkgtest: DBG: testbed command exited with code 0 947s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 948s autopkgtest: DBG: testbed command exited with code 0 948s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 948s autopkgtest: DBG: testbed command exited with code 0 948s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 948s autopkgtest: DBG: install_deps: deps_new=['python3-torch'] 948s autopkgtest: DBG: install-deps: satisfying python3-torch 948s autopkgtest: DBG: can use apt-get on testbed: True 948s 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-torch'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 948s Reading package lists... 948s Building dependency tree... 948s Reading state information... 948s Starting pkgProblemResolver with broken count: 0 948s Starting 2 pkgProblemResolver with broken count: 0 948s Done 948s The following NEW packages will be installed: 948s libbenchmark1.9.1 libblas3 libcpp-httplib0.16 libevent-pthreads-2.1-7t64 948s libfabric1 libfmt10 libgfortran5 libgloo0 libgomp1 libhiredis1.1.0 948s libhwloc-plugins libhwloc15 liblapack3 libmunge2 libonnx1t64 libopenmpi40 948s libpciaccess0 libpmix2t64 libprotobuf32t64 librdmacm1t64 libsleef3 948s libtensorpipe0 libtorch-test libtorch2.6 libxnvctrl0 ocl-icd-libopencl1 948s python3-dateutil python3-expecttest python3-filelock python3-fsspec 948s python3-hypothesis python3-mpmath python3-networkx python3-numpy 948s python3-packaging python3-psutil python3-sortedcontainers python3-sympy 948s python3-torch 949s 0 upgraded, 39 newly installed, 0 to remove and 0 not upgraded. 949s Need to get 113 MB of archives. 949s After this operation, 595 MB of additional disk space will be used. 949s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x libbenchmark1.9.1 s390x 1.9.1-1 [143 kB] 949s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 949s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libcpp-httplib0.16 s390x 0.16.3+ds-2 [206 kB] 949s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-pthreads-2.1-7t64 s390x 2.1.12-stable-10 [7870 B] 949s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x librdmacm1t64 s390x 55.0-1ubuntu1 [73.7 kB] 949s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libfabric1 s390x 1.17.0-3ubuntu1 [558 kB] 949s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libfmt10 s390x 10.1.1+ds1-4 [82.6 kB] 949s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 949s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x libhiredis1.1.0 s390x 1.2.0-6ubuntu3 [42.7 kB] 949s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.12.0-1 [176 kB] 949s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x libmunge2 s390x 0.5.16-1 [15.2 kB] 949s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libpciaccess0 s390x 0.17-3build1 [19.0 kB] 949s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libxnvctrl0 s390x 510.47.03-0ubuntu4 [12.7 kB] 949s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 949s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc-plugins s390x 2.12.0-1 [16.1 kB] 949s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x libpmix2t64 s390x 5.0.6-3 [715 kB] 949s Get:17 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libopenmpi40 s390x 5.0.7-1 [2196 kB] 949s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x libgloo0 s390x 0.0~git20231202.5354032-3build1 [171 kB] 949s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 949s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 949s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 949s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libonnx1t64 s390x 1.17.0-3 [966 kB] 949s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libsleef3 s390x 3.7-0ubuntu2 [292 kB] 949s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x libtensorpipe0 s390x 0.0~git20220513.bb1473a-5build2 [475 kB] 949s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch2.6 s390x 2.6.0+dfsg-1 [61.4 MB] 952s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch-test s390x 2.6.0+dfsg-1 [7318 kB] 953s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 953s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 953s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 953s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-expecttest all 0.3.0-1 [9108 B] 953s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-filelock all 3.16.1-2 [12.9 kB] 953s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fsspec all 2025.2.0-1 [211 kB] 953s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 953s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 953s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 953s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 953s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 953s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 954s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x python3-torch s390x 2.6.0+dfsg-1 [11.8 MB] 955s Fetched 113 MB in 6s (18.9 MB/s) 955s Selecting previously unselected package libbenchmark1.9.1:s390x. 955s (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.) 955s Preparing to unpack .../00-libbenchmark1.9.1_1.9.1-1_s390x.deb ... 955s Unpacking libbenchmark1.9.1:s390x (1.9.1-1) ... 955s Selecting previously unselected package libblas3:s390x. 955s Preparing to unpack .../01-libblas3_3.12.1-2_s390x.deb ... 955s Unpacking libblas3:s390x (3.12.1-2) ... 955s Selecting previously unselected package libcpp-httplib0.16:s390x. 955s Preparing to unpack .../02-libcpp-httplib0.16_0.16.3+ds-2_s390x.deb ... 955s Unpacking libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 955s Selecting previously unselected package libevent-pthreads-2.1-7t64:s390x. 955s Preparing to unpack .../03-libevent-pthreads-2.1-7t64_2.1.12-stable-10_s390x.deb ... 955s Unpacking libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 955s Selecting previously unselected package librdmacm1t64:s390x. 955s Preparing to unpack .../04-librdmacm1t64_55.0-1ubuntu1_s390x.deb ... 955s Unpacking librdmacm1t64:s390x (55.0-1ubuntu1) ... 955s Selecting previously unselected package libfabric1:s390x. 955s Preparing to unpack .../05-libfabric1_1.17.0-3ubuntu1_s390x.deb ... 955s Unpacking libfabric1:s390x (1.17.0-3ubuntu1) ... 955s Selecting previously unselected package libfmt10:s390x. 955s Preparing to unpack .../06-libfmt10_10.1.1+ds1-4_s390x.deb ... 955s Unpacking libfmt10:s390x (10.1.1+ds1-4) ... 955s Selecting previously unselected package libgfortran5:s390x. 955s Preparing to unpack .../07-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 955s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 955s Selecting previously unselected package libhiredis1.1.0:s390x. 955s Preparing to unpack .../08-libhiredis1.1.0_1.2.0-6ubuntu3_s390x.deb ... 955s Unpacking libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 955s Selecting previously unselected package libhwloc15:s390x. 955s Preparing to unpack .../09-libhwloc15_2.12.0-1_s390x.deb ... 955s Unpacking libhwloc15:s390x (2.12.0-1) ... 955s Selecting previously unselected package libmunge2:s390x. 955s Preparing to unpack .../10-libmunge2_0.5.16-1_s390x.deb ... 955s Unpacking libmunge2:s390x (0.5.16-1) ... 955s Selecting previously unselected package libpciaccess0:s390x. 955s Preparing to unpack .../11-libpciaccess0_0.17-3build1_s390x.deb ... 955s Unpacking libpciaccess0:s390x (0.17-3build1) ... 955s Selecting previously unselected package libxnvctrl0:s390x. 955s Preparing to unpack .../12-libxnvctrl0_510.47.03-0ubuntu4_s390x.deb ... 955s Unpacking libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 955s Selecting previously unselected package ocl-icd-libopencl1:s390x. 955s Preparing to unpack .../13-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 955s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 955s Selecting previously unselected package libhwloc-plugins:s390x. 955s Preparing to unpack .../14-libhwloc-plugins_2.12.0-1_s390x.deb ... 955s Unpacking libhwloc-plugins:s390x (2.12.0-1) ... 955s Selecting previously unselected package libpmix2t64:s390x. 955s Preparing to unpack .../15-libpmix2t64_5.0.6-3_s390x.deb ... 955s Unpacking libpmix2t64:s390x (5.0.6-3) ... 955s Selecting previously unselected package libopenmpi40:s390x. 955s Preparing to unpack .../16-libopenmpi40_5.0.7-1_s390x.deb ... 955s Unpacking libopenmpi40:s390x (5.0.7-1) ... 955s Selecting previously unselected package libgloo0. 955s Preparing to unpack .../17-libgloo0_0.0~git20231202.5354032-3build1_s390x.deb ... 955s Unpacking libgloo0 (0.0~git20231202.5354032-3build1) ... 955s Selecting previously unselected package libgomp1:s390x. 955s Preparing to unpack .../18-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 955s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 955s Selecting previously unselected package liblapack3:s390x. 955s Preparing to unpack .../19-liblapack3_3.12.1-2_s390x.deb ... 955s Unpacking liblapack3:s390x (3.12.1-2) ... 955s Selecting previously unselected package libprotobuf32t64:s390x. 955s Preparing to unpack .../20-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 955s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 955s Selecting previously unselected package libonnx1t64:s390x. 955s Preparing to unpack .../21-libonnx1t64_1.17.0-3_s390x.deb ... 955s Unpacking libonnx1t64:s390x (1.17.0-3) ... 955s Selecting previously unselected package libsleef3:s390x. 955s Preparing to unpack .../22-libsleef3_3.7-0ubuntu2_s390x.deb ... 955s Unpacking libsleef3:s390x (3.7-0ubuntu2) ... 955s Selecting previously unselected package libtensorpipe0:s390x. 955s Preparing to unpack .../23-libtensorpipe0_0.0~git20220513.bb1473a-5build2_s390x.deb ... 955s Unpacking libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 955s Selecting previously unselected package libtorch2.6:s390x. 955s Preparing to unpack .../24-libtorch2.6_2.6.0+dfsg-1_s390x.deb ... 955s Unpacking libtorch2.6:s390x (2.6.0+dfsg-1) ... 956s Selecting previously unselected package libtorch-test. 956s Preparing to unpack .../25-libtorch-test_2.6.0+dfsg-1_s390x.deb ... 956s Unpacking libtorch-test (2.6.0+dfsg-1) ... 956s Selecting previously unselected package python3-dateutil. 956s Preparing to unpack .../26-python3-dateutil_2.9.0-3_all.deb ... 956s Unpacking python3-dateutil (2.9.0-3) ... 956s Selecting previously unselected package python3-sortedcontainers. 956s Preparing to unpack .../27-python3-sortedcontainers_2.4.0-2_all.deb ... 956s Unpacking python3-sortedcontainers (2.4.0-2) ... 956s Selecting previously unselected package python3-hypothesis. 956s Preparing to unpack .../28-python3-hypothesis_6.125.2-1_all.deb ... 956s Unpacking python3-hypothesis (6.125.2-1) ... 956s Selecting previously unselected package python3-expecttest. 956s Preparing to unpack .../29-python3-expecttest_0.3.0-1_all.deb ... 956s Unpacking python3-expecttest (0.3.0-1) ... 956s Selecting previously unselected package python3-filelock. 956s Preparing to unpack .../30-python3-filelock_3.16.1-2_all.deb ... 956s Unpacking python3-filelock (3.16.1-2) ... 956s Selecting previously unselected package python3-fsspec. 956s Preparing to unpack .../31-python3-fsspec_2025.2.0-1_all.deb ... 956s Unpacking python3-fsspec (2025.2.0-1) ... 956s Selecting previously unselected package python3-mpmath. 956s Preparing to unpack .../32-python3-mpmath_1.3.0-1_all.deb ... 956s Unpacking python3-mpmath (1.3.0-1) ... 957s Selecting previously unselected package python3-networkx. 957s Preparing to unpack .../33-python3-networkx_3.2.1-4ubuntu1_all.deb ... 957s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 957s Selecting previously unselected package python3-numpy. 957s Preparing to unpack .../34-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 957s Unpacking python3-numpy (1:1.26.4+ds-13) ... 957s Selecting previously unselected package python3-packaging. 957s Preparing to unpack .../35-python3-packaging_24.2-1_all.deb ... 957s Unpacking python3-packaging (24.2-1) ... 957s Selecting previously unselected package python3-psutil. 957s Preparing to unpack .../36-python3-psutil_5.9.8-2build3_s390x.deb ... 957s Unpacking python3-psutil (5.9.8-2build3) ... 957s Selecting previously unselected package python3-sympy. 957s Preparing to unpack .../37-python3-sympy_1.13.3-1_all.deb ... 957s Unpacking python3-sympy (1.13.3-1) ... 957s Selecting previously unselected package python3-torch. 957s Preparing to unpack .../38-python3-torch_2.6.0+dfsg-1_s390x.deb ... 957s Unpacking python3-torch (2.6.0+dfsg-1) ... 957s Setting up libpciaccess0:s390x (0.17-3build1) ... 957s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 957s Setting up python3-filelock (3.16.1-2) ... 958s Setting up libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 958s Setting up libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 958s Setting up python3-fsspec (2025.2.0-1) ... 958s Setting up python3-sortedcontainers (2.4.0-2) ... 958s Setting up libsleef3:s390x (3.7-0ubuntu2) ... 958s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 958s Setting up python3-networkx (3.2.1-4ubuntu1) ... 959s Setting up python3-psutil (5.9.8-2build3) ... 959s Setting up libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 959s Setting up libblas3:s390x (3.12.1-2) ... 959s 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 959s Setting up python3-packaging (24.2-1) ... 959s Setting up libmunge2:s390x (0.5.16-1) ... 959s Setting up libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 959s Setting up libhwloc15:s390x (2.12.0-1) ... 959s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 959s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 959s Setting up libbenchmark1.9.1:s390x (1.9.1-1) ... 959s Setting up librdmacm1t64:s390x (55.0-1ubuntu1) ... 959s Setting up python3-dateutil (2.9.0-3) ... 959s Setting up libonnx1t64:s390x (1.17.0-3) ... 959s Setting up python3-mpmath (1.3.0-1) ... 959s Setting up libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 959s Setting up libfmt10:s390x (10.1.1+ds1-4) ... 960s Setting up libfabric1:s390x (1.17.0-3ubuntu1) ... 960s Setting up python3-sympy (1.13.3-1) ... 964s Setting up liblapack3:s390x (3.12.1-2) ... 964s 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 964s Setting up python3-hypothesis (6.125.2-1) ... 964s Setting up libhwloc-plugins:s390x (2.12.0-1) ... 964s Setting up libpmix2t64:s390x (5.0.6-3) ... 964s Setting up python3-numpy (1:1.26.4+ds-13) ... 965s Setting up python3-expecttest (0.3.0-1) ... 965s Setting up libopenmpi40:s390x (5.0.7-1) ... 965s Setting up libgloo0 (0.0~git20231202.5354032-3build1) ... 965s Setting up libtorch2.6:s390x (2.6.0+dfsg-1) ... 965s Setting up libtorch-test (2.6.0+dfsg-1) ... 965s Setting up python3-torch (2.6.0+dfsg-1) ... 970s Processing triggers for man-db (2.13.0-1) ... 970s Processing triggers for libc-bin (2.41-1ubuntu1) ... 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-torch'], kind short, sout pipe, serr pipe, env [] 970s autopkgtest: DBG: testbed command exited with code 0 970s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/py_sequential-packages.all"], kind short, sout raw, serr pipe, env [] 971s autopkgtest: DBG: testbed command exited with code 0 971s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_sequential-packages.all /tmp/autopkgtest-work.z8qos2ju/out/py_sequential-packages.all 971s autopkgtest: DBG: got reply from testbed: ok 971s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 971s autopkgtest: DBG: testbed command exited with code 1 971s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M/build.E4h'], kind short, sout raw, serr pipe, env [] 971s autopkgtest: DBG: testbed command exited with code 0 971s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.z8qos2ju/out/tests-tree/ /tmp/autopkgtest.wFE02M/build.E4h/src/ 988s autopkgtest: DBG: got reply from testbed: ok 988s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr pipe, env [] 989s autopkgtest: DBG: testbed command exited with code 0 989s autopkgtest [08:26:26]: test py_sequential: cd debian/tests ; python3 sequential.py 989s autopkgtest [08:26:26]: test py_sequential: [----------------------- 989s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/py_sequential-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/py_sequential-stderr --stdout=/tmp/autopkgtest.wFE02M/py_sequential-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec 'cd debian/tests ; python3 sequential.py'"], kind test, sout raw, serr raw, env [] 989s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/py_sequential-artifacts 989s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 989s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 989s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 989s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 989s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 989s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 989s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 989s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 989s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 989s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/py_sequential-stderr 989s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/py_sequential-stdout 989s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 989s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 989s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec cd debian/tests ; python3 sequential.py 989s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.H5LBkcGRie/out to stdout and file: /tmp/autopkgtest.wFE02M/py_sequential-stdout 989s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.H5LBkcGRie/err to standard error and file: /tmp/autopkgtest.wFE02M/py_sequential-stdout 989s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 1644 to /tmp/autopkgtest_script_pid 990s Sequential model setup 990s using device: cpu 990s iteration 0 loss 0.2106824368238449 990s iteration 1 loss 0.12721267342567444 990s iteration 2 loss 0.12073169648647308 990s iteration 3 loss 0.04417641833424568 990s iteration 4 loss 0.03759285807609558 990s iteration 5 loss 0.03348953276872635 990s iteration 6 loss 0.029583537951111794 990s iteration 7 loss 0.026341881603002548 990s iteration 8 loss 0.023082394152879715 990s iteration 9 loss 0.020497051998972893 990s sequential model test ok 991s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 991s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 991s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 991s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 991s autopkgtest: DBG: testbed command exited with code 0 991s autopkgtest [08:26:28]: test py_sequential: -----------------------] 991s autopkgtest: DBG: testbed executing test finished with exit status 0 991s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_sequential-stdout /tmp/autopkgtest-work.z8qos2ju/out/py_sequential-stdout 991s autopkgtest: DBG: got reply from testbed: ok 991s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_sequential-stderr /tmp/autopkgtest-work.z8qos2ju/out/py_sequential-stderr 991s autopkgtest: DBG: got reply from testbed: ok 991s py_sequential PASS 991s autopkgtest [08:26:28]: test py_sequential: - - - - - - - - - - results - - - - - - - - - - 991s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/py_sequential-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 991s autopkgtest: DBG: got reply from testbed: ok 991s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/py_sequential-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 992s autopkgtest: DBG: testbed command exited with code 0 992s autopkgtest [08:26:29]: test show_dangling_symlink_if_any: preparing testbed 992s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-torch'], deps_new=['python3-torch', 'libtorch-dev', 'libtorch2.6', 'libtorch-test'] 992s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 992s autopkgtest: DBG: install_deps: deps_new=['python3-torch', 'libtorch-dev', 'libtorch2.6', 'libtorch-test'] 992s autopkgtest: DBG: install-deps: satisfying python3-torch, libtorch-dev, libtorch2.6, libtorch-test 992s autopkgtest: DBG: can use apt-get on testbed: True 992s 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-torch, libtorch-dev, libtorch2.6, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 992s Reading package lists... 992s Building dependency tree... 992s Reading state information... 992s Starting pkgProblemResolver with broken count: 0 992s Starting 2 pkgProblemResolver with broken count: 0 992s Done 992s The following NEW packages will be installed: 992s libexpat1-dev libjs-jquery libjs-sphinxdoc libjs-underscore libprotobuf-dev 992s libprotobuf-lite32t64 libpython3-dev libpython3.13-dev libtorch-dev 992s python3-dev python3.13-dev zlib1g-dev 992s 0 upgraded, 12 newly installed, 0 to remove and 0 not upgraded. 992s Need to get 11.7 MB of archives. 992s After this operation, 73.9 MB of additional disk space will be used. 992s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 993s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 993s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 993s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 993s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-lite32t64 s390x 3.21.12-10build1 [238 kB] 993s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 993s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 993s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 993s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 993s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 993s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-dev s390x 3.21.12-10build1 [1433 kB] 993s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch-dev s390x 2.6.0+dfsg-1 [2413 kB] 994s Fetched 11.7 MB in 1s (8514 kB/s) 994s Selecting previously unselected package libexpat1-dev:s390x. 994s (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 ... 65000 files and directories currently installed.) 994s Preparing to unpack .../00-libexpat1-dev_2.6.4-1_s390x.deb ... 994s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 994s Selecting previously unselected package libjs-jquery. 994s Preparing to unpack .../01-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 994s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 994s Selecting previously unselected package libjs-underscore. 994s Preparing to unpack .../02-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 994s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 994s Selecting previously unselected package libjs-sphinxdoc. 994s Preparing to unpack .../03-libjs-sphinxdoc_8.1.3-4_all.deb ... 994s Unpacking libjs-sphinxdoc (8.1.3-4) ... 994s Selecting previously unselected package libprotobuf-lite32t64:s390x. 994s Preparing to unpack .../04-libprotobuf-lite32t64_3.21.12-10build1_s390x.deb ... 994s Unpacking libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 994s Selecting previously unselected package zlib1g-dev:s390x. 994s Preparing to unpack .../05-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 994s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 994s Selecting previously unselected package libpython3.13-dev:s390x. 994s Preparing to unpack .../06-libpython3.13-dev_3.13.2-1_s390x.deb ... 994s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 994s Selecting previously unselected package libpython3-dev:s390x. 994s Preparing to unpack .../07-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 994s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 994s Selecting previously unselected package python3.13-dev. 994s Preparing to unpack .../08-python3.13-dev_3.13.2-1_s390x.deb ... 994s Unpacking python3.13-dev (3.13.2-1) ... 994s Selecting previously unselected package python3-dev. 994s Preparing to unpack .../09-python3-dev_3.13.1-1~exp2_s390x.deb ... 994s Unpacking python3-dev (3.13.1-1~exp2) ... 994s Selecting previously unselected package libprotobuf-dev:s390x. 994s Preparing to unpack .../10-libprotobuf-dev_3.21.12-10build1_s390x.deb ... 994s Unpacking libprotobuf-dev:s390x (3.21.12-10build1) ... 994s Selecting previously unselected package libtorch-dev. 994s Preparing to unpack .../11-libtorch-dev_2.6.0+dfsg-1_s390x.deb ... 994s Unpacking libtorch-dev (2.6.0+dfsg-1) ... 995s Setting up libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 995s Setting up libexpat1-dev:s390x (2.6.4-1) ... 995s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 995s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 995s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 995s Setting up libprotobuf-dev:s390x (3.21.12-10build1) ... 995s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 995s Setting up libjs-sphinxdoc (8.1.3-4) ... 995s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 995s Setting up python3.13-dev (3.13.2-1) ... 995s Setting up python3-dev (3.13.1-1~exp2) ... 995s Setting up libtorch-dev (2.6.0+dfsg-1) ... 995s Processing triggers for man-db (2.13.0-1) ... 995s Processing triggers for libc-bin (2.41-1ubuntu1) ... 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-torch'], kind short, sout pipe, serr pipe, env [] 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch2.6'], kind short, sout pipe, serr pipe, env [] 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 995s autopkgtest: DBG: testbed command exited with code 0 995s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-packages.all"], kind short, sout raw, serr pipe, env [] 996s autopkgtest: DBG: testbed command exited with code 0 996s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-packages.all /tmp/autopkgtest-work.z8qos2ju/out/show_dangling_symlink_if_any-packages.all 996s autopkgtest: DBG: got reply from testbed: ok 996s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 996s autopkgtest: DBG: testbed command exited with code 0 996s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 996s autopkgtest [08:26:33]: test show_dangling_symlink_if_any: cd debian/tests ; find /usr -xtype l -print || true 996s autopkgtest [08:26:33]: test show_dangling_symlink_if_any: [----------------------- 996s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/show_dangling_symlink_if_any-stderr --stdout=/tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec 'cd debian/tests ; find /usr -xtype l -print || true'"], kind test, sout raw, serr raw, env [] 996s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-artifacts 996s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 996s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 996s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 996s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 996s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 996s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 996s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 996s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 996s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 996s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stderr 996s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stdout 996s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 996s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 996s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec cd debian/tests ; find /usr -xtype l -print || true 996s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.N1F9ESy3UN/out to stdout and file: /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stdout 996s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.N1F9ESy3UN/err to standard error and file: /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stdout 996s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 1955 to /tmp/autopkgtest_script_pid 997s /usr/share/doc/libxml2/NEWS.gz 997s /usr/share/doc/python3-wadllib/NEWS.rst.gz 997s /usr/share/doc/xfsprogs/changelog.gz 997s /usr/share/doc/perl/Changes.gz 997s /usr/share/locale/ja/LC_TIME/coreutils.mo 997s /usr/share/locale/lg/LC_TIME/coreutils.mo 997s /usr/share/locale/ia/LC_TIME/coreutils.mo 997s /usr/share/locale/pt/LC_TIME/coreutils.mo 997s /usr/share/locale/ga/LC_TIME/coreutils.mo 997s /usr/share/locale/sl/LC_TIME/coreutils.mo 997s /usr/share/locale/sr/LC_TIME/coreutils.mo 997s /usr/share/locale/ko/LC_TIME/coreutils.mo 997s /usr/share/locale/hr/LC_TIME/coreutils.mo 997s /usr/share/locale/be/LC_TIME/coreutils.mo 997s /usr/share/locale/da/LC_TIME/coreutils.mo 997s /usr/share/locale/tr/LC_TIME/coreutils.mo 997s /usr/share/locale/es/LC_TIME/coreutils.mo 997s /usr/share/locale/eu/LC_TIME/coreutils.mo 997s /usr/share/locale/ca/LC_TIME/coreutils.mo 997s /usr/share/locale/ta/LC_TIME/coreutils.mo 997s /usr/share/locale/zh_TW/LC_TIME/coreutils.mo 997s /usr/share/locale/zh_CN/LC_TIME/coreutils.mo 997s /usr/share/locale/af/LC_TIME/coreutils.mo 997s /usr/share/locale/gl/LC_TIME/coreutils.mo 997s /usr/share/locale/vi/LC_TIME/coreutils.mo 997s /usr/share/locale/bg/LC_TIME/coreutils.mo 997s /usr/share/locale/uk/LC_TIME/coreutils.mo 997s /usr/share/locale/ru/LC_TIME/coreutils.mo 997s /usr/share/locale/ms/LC_TIME/coreutils.mo 997s /usr/share/locale/kk/LC_TIME/coreutils.mo 997s /usr/share/locale/pl/LC_TIME/coreutils.mo 997s /usr/share/locale/nb/LC_TIME/coreutils.mo 997s /usr/share/locale/ka/LC_TIME/coreutils.mo 997s /usr/share/locale/pt_BR/LC_TIME/coreutils.mo 997s /usr/share/locale/sv/LC_TIME/coreutils.mo 997s /usr/share/locale/lt/LC_TIME/coreutils.mo 997s /usr/share/locale/sk/LC_TIME/coreutils.mo 997s /usr/share/locale/de/LC_TIME/coreutils.mo 997s /usr/share/locale/et/LC_TIME/coreutils.mo 997s /usr/share/locale/fi/LC_TIME/coreutils.mo 997s /usr/share/locale/it/LC_TIME/coreutils.mo 997s /usr/share/locale/cs/LC_TIME/coreutils.mo 997s /usr/share/locale/nl/LC_TIME/coreutils.mo 997s /usr/share/locale/el/LC_TIME/coreutils.mo 997s /usr/share/locale/eo/LC_TIME/coreutils.mo 997s /usr/share/locale/hu/LC_TIME/coreutils.mo 997s /usr/share/locale/ro/LC_TIME/coreutils.mo 997s /usr/share/locale/fr/LC_TIME/coreutils.mo 997s /usr/share/locale/id/LC_TIME/coreutils.mo 997s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 997s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 997s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 997s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 997s autopkgtest: DBG: testbed command exited with code 0 998s autopkgtest [08:26:35]: test show_dangling_symlink_if_any: -----------------------] 998s autopkgtest: DBG: testbed executing test finished with exit status 0 998s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stdout /tmp/autopkgtest-work.z8qos2ju/out/show_dangling_symlink_if_any-stdout 998s autopkgtest: DBG: got reply from testbed: ok 998s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-stderr /tmp/autopkgtest-work.z8qos2ju/out/show_dangling_symlink_if_any-stderr 998s autopkgtest: DBG: got reply from testbed: ok 998s show_dangling_symlink_if_any PASS 998s autopkgtest [08:26:35]: test show_dangling_symlink_if_any: - - - - - - - - - - results - - - - - - - - - - 998s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 998s autopkgtest: DBG: got reply from testbed: ok 998s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/show_dangling_symlink_if_any-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 998s autopkgtest: DBG: testbed command exited with code 0 998s autopkgtest [08:26:35]: test 1_of_104__cpptest__CppSignature_test: preparing testbed 998s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-torch', 'libtorch-dev', 'libtorch2.6', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 998s autopkgtest: DBG: testbed reset 998s autopkgtest: DBG: sending command to testbed: revert 1080s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.wFE02M 1080s autopkgtest: DBG: sending command to testbed: print-execute-command 1080s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.nnx3sg39/runcmd 1080s autopkgtest: DBG: sending command to testbed: capabilities 1080s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu root-on-testbed ok reboot revert 1080s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'ok', 'reboot', 'revert', 'has_internet'] 1080s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 1080s autopkgtest: DBG: testbed command exited with code 0 1080s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.wFE02M/wrapper.sh 1080s autopkgtest: DBG: got reply from testbed: ok 1080s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/wrapper.sh'], kind short, sout raw, serr pipe, env [] 1080s autopkgtest: DBG: testbed command exited with code 0 1080s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 1081s autopkgtest: DBG: testbed command exited with code 0 1081s autopkgtest [08:27:58]: testbed dpkg architecture: s390x 1081s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 1081s autopkgtest: DBG: testbed command exited with code 0 1081s autopkgtest [08:27:58]: testbed apt version: 2.9.30 1081s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 1081s autopkgtest: DBG: testbed command exited with code 0 1081s autopkgtest: DBG: testbed has eatmydata 1081s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 1081s autopkgtest: DBG: testbed command exited with code 0 1081s autopkgtest [08:27:58]: @@@@@@@@@@@@@@@@@@@@ test bed setup 1081s 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 [] 1081s autopkgtest: DBG: testbed command exited with code 0 1081s autopkgtest [08:27:58]: testbed release detected to be: plucky 1081s 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 [] 1081s autopkgtest: DBG: testbed command exited with code 0 1081s 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 [] 1082s autopkgtest: DBG: testbed command exited with code 0 1082s autopkgtest: DBG: adding APT source: Types: deb deb-src 1082s URIs: http://ftpmaster.internal/ubuntu/ 1082s Suites: plucky-proposed 1082s Components: main restricted universe multiverse 1082s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 1082s 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 [] 1082s autopkgtest: DBG: testbed command exited with code 0 1082s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 1082s Package: * 1082s Pin: release plucky-proposed 1082s Pin-Priority: 500 1082s 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 [] 1082s autopkgtest: DBG: testbed command exited with code 0 1082s autopkgtest [08:27:59]: updating testbed package index (apt update) 1082s 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'] 1082s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 1082s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 1082s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 1083s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 1083s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [734 kB] 1083s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.3 kB] 1083s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 1083s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 1083s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [90.5 kB] 1083s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 1083s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [618 kB] 1083s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 1083s Fetched 1651 kB in 1s (1812 kB/s) 1084s Reading package lists... 1084s autopkgtest: DBG: testbed command exited with code 0 1084s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 1084s Package: * 1084s Pin: release plucky-proposed 1084s Pin-Priority: 100 1084s 1084s Package: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any 1084s Pin: release plucky-proposed 1084s Pin-Priority: 995 1084s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:openmpi:any src:pytorch:any src:xnnpack:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 1084s autopkgtest: DBG: testbed command exited with code 0 1084s 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.wFE02M/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 1084s autopkgtest: DBG: testbed command exited with code 0 1084s 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'] 1084s + lsb_release --codename --short 1084s + RELEASE=plucky 1084s + cat 1084s + [ plucky != trusty ] 1084s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 1084s Reading package lists... 1084s Building dependency tree... 1084s Reading state information... 1084s Calculating upgrade... 1084s The following packages were automatically installed and are no longer required: 1084s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 1084s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 1084s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 1084s linux-tools-6.11.0-8-generic 1084s Use 'sudo apt autoremove' to remove them. 1084s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1084s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 1084s + /usr/lib/apt/apt-helper analyze-pattern ?true 1084s + uname -r 1084s + sed s/\./\\./g 1084s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 1084s + apt list ?obsolete 1084s + tail -n+2 1084s + cut -d/ -f1 1084s + grep -v ^linux-.*6\.12\.0-15-generic.* 1085s + true 1085s + obsolete_pkgs= 1085s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 1085s Reading package lists... 1085s Building dependency tree... 1085s Reading state information... 1085s The following packages will be REMOVED: 1085s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 1085s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 1085s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 1085s linux-tools-6.11.0-8-generic* 1085s 0 upgraded, 0 newly installed, 9 to remove and 5 not upgraded. 1085s After this operation, 167 MB disk space will be freed. 1085s (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.) 1085s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 1085s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 1085s Removing libpython3.12t64:s390x (3.12.9-1) ... 1085s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 1085s Removing libnsl2:s390x (1.3.0-3build3) ... 1085s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 1085s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 1085s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 1086s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1086s Processing triggers for libc-bin (2.40-4ubuntu1) ... 1086s (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 ... 55930 files and directories currently installed.) 1086s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 1086s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 1086s + grep -q trusty /etc/lsb-release 1086s + [ ! -d /usr/share/doc/unattended-upgrades ] 1086s + [ ! -d /usr/share/doc/lxd ] 1086s + [ ! -d /usr/share/doc/lxd-client ] 1086s + [ ! -d /usr/share/doc/snapd ] 1086s + type iptables 1086s + cat 1086s + chmod 755 /etc/rc.local 1086s + . /etc/rc.local 1086s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 1086s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 1086s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 1086s + uname -m 1086s + [ s390x = ppc64le ] 1086s + [ -d /run/systemd/system ] 1086s + systemd-detect-virt --quiet --vm 1086s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 1086s + cat 1086s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 1086s + echo COMPRESS=lz4 1086s autopkgtest: DBG: testbed command exited with code 0 1086s autopkgtest [08:28:03]: upgrading testbed (apt dist-upgrade and autopurge) 1086s 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'] 1086s Reading package lists... 1086s Building dependency tree... 1086s Reading state information... 1087s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 1087s Starting 2 pkgProblemResolver with broken count: 0 1087s Done 1087s Entering ResolveByKeep 1087s 1087s The following packages will be upgraded: 1087s libc-bin libc-dev-bin libc6 libc6-dev locales 1087s 5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1087s Need to get 9512 kB of archives. 1087s After this operation, 288 kB of additional disk space will be used. 1087s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 1087s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 1088s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 1088s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 1088s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 1089s Preconfiguring packages ... 1089s Fetched 9512 kB in 1s (7352 kB/s) 1089s (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 ... 55928 files and directories currently installed.) 1089s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 1089s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1089s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 1089s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1089s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 1089s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1089s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 1089s Checking for services that may need to be restarted... 1089s Checking init scripts... 1089s Checking for services that may need to be restarted... 1089s Checking init scripts... 1089s Stopping some services possibly affected by the upgrade (will be restarted later): 1089s cron: stopping...done. 1089s 1089s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1089s Setting up libc6:s390x (2.41-1ubuntu1) ... 1089s Checking for services that may need to be restarted... 1089s Checking init scripts... 1089s Restarting services possibly affected by the upgrade: 1089s cron: restarting...done. 1089s 1089s Services restarted successfully. 1089s (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.) 1089s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 1089s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 1089s Setting up libc-bin (2.41-1ubuntu1) ... 1089s Setting up locales (2.41-1ubuntu1) ... 1089s Installing new version of config file /etc/locale.alias ... 1090s Generating locales (this might take a while)... 1090s en_US.UTF-8... done 1090s Generation complete. 1090s Setting up libc-dev-bin (2.41-1ubuntu1) ... 1090s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 1090s Processing triggers for man-db (2.13.0-1) ... 1091s Processing triggers for systemd (257.2-3ubuntu1) ... 1092s autopkgtest: DBG: testbed command exited with code 0 1092s 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'] 1092s Reading package lists... 1092s Building dependency tree... 1092s Reading state information... 1092s Starting pkgProblemResolver with broken count: 0 1092s Starting 2 pkgProblemResolver with broken count: 0 1092s Done 1092s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1092s autopkgtest: DBG: testbed command exited with code 0 1092s 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.wFE02M/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 1093s autopkgtest: DBG: testbed command exited with code 1 1093s autopkgtest [08:28:10]: rebooting testbed after setup commands that affected boot 1093s autopkgtest: DBG: sending command to testbed: reboot 1109s autopkgtest: DBG: got reply from testbed: ok 1109s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 1109s autopkgtest: DBG: testbed command exited with code 0 1109s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 1109s autopkgtest: DBG: got reply from testbed: ok 1109s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1109s autopkgtest: DBG: testbed command exited with code 0 1109s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1109s autopkgtest: DBG: testbed command exited with code 0 1109s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1110s autopkgtest: DBG: testbed command exited with code 0 1110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 1110s autopkgtest: DBG: testbed command exited with code 0 1110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 1110s autopkgtest: DBG: got reply from testbed: ok 1110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1110s autopkgtest: DBG: testbed command exited with code 0 1110s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1110s autopkgtest: DBG: testbed command exited with code 0 1110s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1110s autopkgtest: DBG: testbed command exited with code 0 1110s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/testbed-packages"], kind short, sout raw, serr pipe, env [] 1111s autopkgtest: DBG: testbed command exited with code 0 1111s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/testbed-packages /tmp/autopkgtest-work.z8qos2ju/out/testbed-packages 1111s autopkgtest: DBG: got reply from testbed: ok 1111s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 1111s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 1111s autopkgtest: DBG: testbed command exited with code 0 1111s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot 1111s autopkgtest: DBG: got reply from testbed: ok 1111s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1111s autopkgtest: DBG: testbed command exited with code 0 1111s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1111s autopkgtest: DBG: testbed command exited with code 0 1111s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 1112s autopkgtest: DBG: testbed command exited with code 0 1112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M'], kind short, sout raw, serr pipe, env [] 1112s autopkgtest: DBG: testbed command exited with code 0 1112s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare 1112s autopkgtest: DBG: got reply from testbed: ok 1112s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1112s autopkgtest: DBG: testbed command exited with code 0 1112s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.wFE02M/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 1112s autopkgtest: DBG: testbed command exited with code 0 1112s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 1112s autopkgtest: DBG: testbed command exited with code 0 1112s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1112s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1112s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1112s autopkgtest: DBG: can use apt-get on testbed: True 1112s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1113s Reading package lists... 1113s Building dependency tree... 1113s Reading state information... 1113s Starting pkgProblemResolver with broken count: 0 1113s Starting 2 pkgProblemResolver with broken count: 0 1113s Done 1113s The following NEW packages will be installed: 1113s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ 1113s g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 1113s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libbenchmark1.9.1 1113s libblas3 libcc1-0 libcpp-httplib0.16 libevent-pthreads-2.1-7t64 1113s libexpat1-dev libfabric1 libfmt10 libgcc-14-dev libgfortran5 libgloo0 1113s libgomp1 libhiredis1.1.0 libhwloc-plugins libhwloc15 libisl23 libitm1 1113s libjs-jquery libjs-sphinxdoc libjs-underscore liblapack3 libmpc3 libmunge2 1113s libonnx1t64 libopenmpi40 libpciaccess0 libpmix2t64 libprotobuf-dev 1113s libprotobuf-lite32t64 libprotobuf32t64 libpython3-dev libpython3.13-dev 1113s librdmacm1t64 libsleef3 libstdc++-14-dev libtensorpipe0 libtorch-dev 1113s libtorch-test libtorch2.6 libubsan1 libxnvctrl0 ninja-build 1113s ocl-icd-libopencl1 python3-dev python3.13-dev zlib1g-dev 1113s 0 upgraded, 60 newly installed, 0 to remove and 0 not upgraded. 1113s Need to get 140 MB of archives. 1113s After this operation, 611 MB of additional disk space will be used. 1113s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 1114s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 1114s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 1114s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 1114s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 1114s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 1114s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 1114s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 1114s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 1114s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 1115s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 1115s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 1115s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 1115s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 1115s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 1115s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 1115s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 1115s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 1116s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 1116s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 1116s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 1116s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 1116s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libbenchmark1.9.1 s390x 1.9.1-1 [143 kB] 1116s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 1116s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libcpp-httplib0.16 s390x 0.16.3+ds-2 [206 kB] 1116s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-pthreads-2.1-7t64 s390x 2.1.12-stable-10 [7870 B] 1116s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 1116s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x librdmacm1t64 s390x 55.0-1ubuntu1 [73.7 kB] 1116s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libfabric1 s390x 1.17.0-3ubuntu1 [558 kB] 1116s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libfmt10 s390x 10.1.1+ds1-4 [82.6 kB] 1116s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 1116s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x libhiredis1.1.0 s390x 1.2.0-6ubuntu3 [42.7 kB] 1116s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc15 s390x 2.12.0-1 [176 kB] 1116s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x libmunge2 s390x 0.5.16-1 [15.2 kB] 1116s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libpciaccess0 s390x 0.17-3build1 [19.0 kB] 1116s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libxnvctrl0 s390x 510.47.03-0ubuntu4 [12.7 kB] 1116s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 1116s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libhwloc-plugins s390x 2.12.0-1 [16.1 kB] 1116s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x libpmix2t64 s390x 5.0.6-3 [715 kB] 1116s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libopenmpi40 s390x 5.0.7-1 [2196 kB] 1116s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x libgloo0 s390x 0.0~git20231202.5354032-3build1 [171 kB] 1116s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 1116s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 1116s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 1116s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 1116s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 1116s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x libonnx1t64 s390x 1.17.0-3 [966 kB] 1116s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-lite32t64 s390x 3.21.12-10build1 [238 kB] 1116s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 1116s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.13-dev s390x 3.13.2-1 [5596 kB] 1116s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3-dev s390x 3.13.1-1~exp2 [10.5 kB] 1116s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x libsleef3 s390x 3.7-0ubuntu2 [292 kB] 1116s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libtensorpipe0 s390x 0.0~git20220513.bb1473a-5build2 [475 kB] 1116s Get:54 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch2.6 s390x 2.6.0+dfsg-1 [61.4 MB] 1119s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-dev s390x 3.13.2-1 [508 kB] 1119s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dev s390x 3.13.1-1~exp2 [26.7 kB] 1119s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-dev s390x 3.21.12-10build1 [1433 kB] 1119s Get:58 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch-dev s390x 2.6.0+dfsg-1 [2413 kB] 1119s Get:59 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x libtorch-test s390x 2.6.0+dfsg-1 [7318 kB] 1120s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x ninja-build s390x 1.12.1-1 [153 kB] 1120s Fetched 140 MB in 6s (21.6 MB/s) 1120s Selecting previously unselected package libisl23:s390x. 1120s (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.) 1120s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 1120s Unpacking libisl23:s390x (0.27-1) ... 1120s Selecting previously unselected package libmpc3:s390x. 1120s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 1120s Unpacking libmpc3:s390x (1.3.1-1build2) ... 1120s Selecting previously unselected package cpp-14-s390x-linux-gnu. 1120s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1120s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1120s Selecting previously unselected package cpp-14. 1120s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 1120s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 1120s Selecting previously unselected package cpp-s390x-linux-gnu. 1120s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1120s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1120s Selecting previously unselected package cpp. 1120s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 1120s Unpacking cpp (4:14.2.0-1ubuntu1) ... 1120s Selecting previously unselected package libcc1-0:s390x. 1120s Preparing to unpack .../06-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 1120s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 1120s Selecting previously unselected package libgomp1:s390x. 1120s Preparing to unpack .../07-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 1120s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 1120s Selecting previously unselected package libitm1:s390x. 1120s Preparing to unpack .../08-libitm1_15-20250213-1ubuntu1_s390x.deb ... 1120s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 1120s Selecting previously unselected package libasan8:s390x. 1120s Preparing to unpack .../09-libasan8_15-20250213-1ubuntu1_s390x.deb ... 1120s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 1120s Selecting previously unselected package libubsan1:s390x. 1120s Preparing to unpack .../10-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 1120s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 1120s Selecting previously unselected package libgcc-14-dev:s390x. 1120s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1120s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1120s Selecting previously unselected package gcc-14-s390x-linux-gnu. 1120s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1120s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1120s Selecting previously unselected package gcc-14. 1120s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 1120s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 1120s Selecting previously unselected package gcc-s390x-linux-gnu. 1120s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1120s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1120s Selecting previously unselected package gcc. 1120s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 1120s Unpacking gcc (4:14.2.0-1ubuntu1) ... 1121s Selecting previously unselected package libstdc++-14-dev:s390x. 1121s Preparing to unpack .../16-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 1121s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 1121s Selecting previously unselected package g++-14-s390x-linux-gnu. 1121s Preparing to unpack .../17-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 1121s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1121s Selecting previously unselected package g++-14. 1121s Preparing to unpack .../18-g++-14_14.2.0-17ubuntu1_s390x.deb ... 1121s Unpacking g++-14 (14.2.0-17ubuntu1) ... 1121s Selecting previously unselected package g++-s390x-linux-gnu. 1121s Preparing to unpack .../19-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 1121s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1121s Selecting previously unselected package g++. 1121s Preparing to unpack .../20-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 1121s Unpacking g++ (4:14.2.0-1ubuntu1) ... 1121s Selecting previously unselected package build-essential. 1121s Preparing to unpack .../21-build-essential_12.10ubuntu1_s390x.deb ... 1121s Unpacking build-essential (12.10ubuntu1) ... 1121s Selecting previously unselected package libbenchmark1.9.1:s390x. 1121s Preparing to unpack .../22-libbenchmark1.9.1_1.9.1-1_s390x.deb ... 1121s Unpacking libbenchmark1.9.1:s390x (1.9.1-1) ... 1121s Selecting previously unselected package libblas3:s390x. 1121s Preparing to unpack .../23-libblas3_3.12.1-2_s390x.deb ... 1121s Unpacking libblas3:s390x (3.12.1-2) ... 1121s Selecting previously unselected package libcpp-httplib0.16:s390x. 1121s Preparing to unpack .../24-libcpp-httplib0.16_0.16.3+ds-2_s390x.deb ... 1121s Unpacking libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 1121s Selecting previously unselected package libevent-pthreads-2.1-7t64:s390x. 1121s Preparing to unpack .../25-libevent-pthreads-2.1-7t64_2.1.12-stable-10_s390x.deb ... 1121s Unpacking libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 1121s Selecting previously unselected package libexpat1-dev:s390x. 1121s Preparing to unpack .../26-libexpat1-dev_2.6.4-1_s390x.deb ... 1121s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 1121s Selecting previously unselected package librdmacm1t64:s390x. 1121s Preparing to unpack .../27-librdmacm1t64_55.0-1ubuntu1_s390x.deb ... 1121s Unpacking librdmacm1t64:s390x (55.0-1ubuntu1) ... 1121s Selecting previously unselected package libfabric1:s390x. 1121s Preparing to unpack .../28-libfabric1_1.17.0-3ubuntu1_s390x.deb ... 1121s Unpacking libfabric1:s390x (1.17.0-3ubuntu1) ... 1121s Selecting previously unselected package libfmt10:s390x. 1121s Preparing to unpack .../29-libfmt10_10.1.1+ds1-4_s390x.deb ... 1121s Unpacking libfmt10:s390x (10.1.1+ds1-4) ... 1121s Selecting previously unselected package libgfortran5:s390x. 1121s Preparing to unpack .../30-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 1121s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 1121s Selecting previously unselected package libhiredis1.1.0:s390x. 1121s Preparing to unpack .../31-libhiredis1.1.0_1.2.0-6ubuntu3_s390x.deb ... 1121s Unpacking libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 1121s Selecting previously unselected package libhwloc15:s390x. 1121s Preparing to unpack .../32-libhwloc15_2.12.0-1_s390x.deb ... 1121s Unpacking libhwloc15:s390x (2.12.0-1) ... 1121s Selecting previously unselected package libmunge2:s390x. 1121s Preparing to unpack .../33-libmunge2_0.5.16-1_s390x.deb ... 1121s Unpacking libmunge2:s390x (0.5.16-1) ... 1121s Selecting previously unselected package libpciaccess0:s390x. 1121s Preparing to unpack .../34-libpciaccess0_0.17-3build1_s390x.deb ... 1121s Unpacking libpciaccess0:s390x (0.17-3build1) ... 1121s Selecting previously unselected package libxnvctrl0:s390x. 1121s Preparing to unpack .../35-libxnvctrl0_510.47.03-0ubuntu4_s390x.deb ... 1121s Unpacking libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 1121s Selecting previously unselected package ocl-icd-libopencl1:s390x. 1121s Preparing to unpack .../36-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 1121s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 1121s Selecting previously unselected package libhwloc-plugins:s390x. 1121s Preparing to unpack .../37-libhwloc-plugins_2.12.0-1_s390x.deb ... 1121s Unpacking libhwloc-plugins:s390x (2.12.0-1) ... 1121s Selecting previously unselected package libpmix2t64:s390x. 1121s Preparing to unpack .../38-libpmix2t64_5.0.6-3_s390x.deb ... 1121s Unpacking libpmix2t64:s390x (5.0.6-3) ... 1121s Selecting previously unselected package libopenmpi40:s390x. 1121s Preparing to unpack .../39-libopenmpi40_5.0.7-1_s390x.deb ... 1121s Unpacking libopenmpi40:s390x (5.0.7-1) ... 1121s Selecting previously unselected package libgloo0. 1121s Preparing to unpack .../40-libgloo0_0.0~git20231202.5354032-3build1_s390x.deb ... 1121s Unpacking libgloo0 (0.0~git20231202.5354032-3build1) ... 1121s Selecting previously unselected package libjs-jquery. 1121s Preparing to unpack .../41-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 1121s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 1121s Selecting previously unselected package libjs-underscore. 1121s Preparing to unpack .../42-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 1121s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 1121s Selecting previously unselected package libjs-sphinxdoc. 1121s Preparing to unpack .../43-libjs-sphinxdoc_8.1.3-4_all.deb ... 1121s Unpacking libjs-sphinxdoc (8.1.3-4) ... 1121s Selecting previously unselected package liblapack3:s390x. 1121s Preparing to unpack .../44-liblapack3_3.12.1-2_s390x.deb ... 1121s Unpacking liblapack3:s390x (3.12.1-2) ... 1121s Selecting previously unselected package libprotobuf32t64:s390x. 1121s Preparing to unpack .../45-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 1121s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 1121s Selecting previously unselected package libonnx1t64:s390x. 1121s Preparing to unpack .../46-libonnx1t64_1.17.0-3_s390x.deb ... 1121s Unpacking libonnx1t64:s390x (1.17.0-3) ... 1121s Selecting previously unselected package libprotobuf-lite32t64:s390x. 1121s Preparing to unpack .../47-libprotobuf-lite32t64_3.21.12-10build1_s390x.deb ... 1121s Unpacking libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 1121s Selecting previously unselected package zlib1g-dev:s390x. 1121s Preparing to unpack .../48-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 1121s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1121s Selecting previously unselected package libpython3.13-dev:s390x. 1121s Preparing to unpack .../49-libpython3.13-dev_3.13.2-1_s390x.deb ... 1121s Unpacking libpython3.13-dev:s390x (3.13.2-1) ... 1121s Selecting previously unselected package libpython3-dev:s390x. 1121s Preparing to unpack .../50-libpython3-dev_3.13.1-1~exp2_s390x.deb ... 1121s Unpacking libpython3-dev:s390x (3.13.1-1~exp2) ... 1121s Selecting previously unselected package libsleef3:s390x. 1121s Preparing to unpack .../51-libsleef3_3.7-0ubuntu2_s390x.deb ... 1121s Unpacking libsleef3:s390x (3.7-0ubuntu2) ... 1121s Selecting previously unselected package libtensorpipe0:s390x. 1121s Preparing to unpack .../52-libtensorpipe0_0.0~git20220513.bb1473a-5build2_s390x.deb ... 1121s Unpacking libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 1121s Selecting previously unselected package libtorch2.6:s390x. 1121s Preparing to unpack .../53-libtorch2.6_2.6.0+dfsg-1_s390x.deb ... 1121s Unpacking libtorch2.6:s390x (2.6.0+dfsg-1) ... 1122s Selecting previously unselected package python3.13-dev. 1122s Preparing to unpack .../54-python3.13-dev_3.13.2-1_s390x.deb ... 1122s Unpacking python3.13-dev (3.13.2-1) ... 1122s Selecting previously unselected package python3-dev. 1122s Preparing to unpack .../55-python3-dev_3.13.1-1~exp2_s390x.deb ... 1122s Unpacking python3-dev (3.13.1-1~exp2) ... 1122s Selecting previously unselected package libprotobuf-dev:s390x. 1122s Preparing to unpack .../56-libprotobuf-dev_3.21.12-10build1_s390x.deb ... 1122s Unpacking libprotobuf-dev:s390x (3.21.12-10build1) ... 1122s Selecting previously unselected package libtorch-dev. 1122s Preparing to unpack .../57-libtorch-dev_2.6.0+dfsg-1_s390x.deb ... 1122s Unpacking libtorch-dev (2.6.0+dfsg-1) ... 1123s Selecting previously unselected package libtorch-test. 1123s Preparing to unpack .../58-libtorch-test_2.6.0+dfsg-1_s390x.deb ... 1123s Unpacking libtorch-test (2.6.0+dfsg-1) ... 1123s Selecting previously unselected package ninja-build. 1123s Preparing to unpack .../59-ninja-build_1.12.1-1_s390x.deb ... 1123s Unpacking ninja-build (1.12.1-1) ... 1123s Setting up libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 1123s Setting up libpciaccess0:s390x (0.17-3build1) ... 1123s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 1123s Setting up libcpp-httplib0.16:s390x (0.16.3+ds-2) ... 1123s Setting up libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 1123s Setting up libsleef3:s390x (3.7-0ubuntu2) ... 1123s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 1123s Setting up ninja-build (1.12.1-1) ... 1123s Setting up libxnvctrl0:s390x (510.47.03-0ubuntu4) ... 1123s Setting up libblas3:s390x (3.12.1-2) ... 1123s 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 1123s Setting up libmunge2:s390x (0.5.16-1) ... 1123s Setting up libexpat1-dev:s390x (2.6.4-1) ... 1123s Setting up libtensorpipe0:s390x (0.0~git20220513.bb1473a-5build2) ... 1123s Setting up libhwloc15:s390x (2.12.0-1) ... 1123s Setting up libmpc3:s390x (1.3.1-1build2) ... 1123s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 1123s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 1123s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 1123s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 1123s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 1123s Setting up libbenchmark1.9.1:s390x (1.9.1-1) ... 1123s Setting up librdmacm1t64:s390x (55.0-1ubuntu1) ... 1123s Setting up libonnx1t64:s390x (1.17.0-3) ... 1123s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 1123s Setting up libisl23:s390x (0.27-1) ... 1123s Setting up libhiredis1.1.0:s390x (1.2.0-6ubuntu3) ... 1123s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 1123s Setting up libfmt10:s390x (10.1.1+ds1-4) ... 1123s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 1123s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 1123s Setting up libfabric1:s390x (1.17.0-3ubuntu1) ... 1123s Setting up liblapack3:s390x (3.12.1-2) ... 1123s 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 1123s Setting up libhwloc-plugins:s390x (2.12.0-1) ... 1123s Setting up libprotobuf-dev:s390x (3.21.12-10build1) ... 1123s Setting up libpython3.13-dev:s390x (3.13.2-1) ... 1123s Setting up libpmix2t64:s390x (5.0.6-3) ... 1123s Setting up libjs-sphinxdoc (8.1.3-4) ... 1123s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1123s Setting up cpp-14 (14.2.0-17ubuntu1) ... 1123s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 1123s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 1123s Setting up libopenmpi40:s390x (5.0.7-1) ... 1123s Setting up libpython3-dev:s390x (3.13.1-1~exp2) ... 1123s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1123s Setting up libgloo0 (0.0~git20231202.5354032-3build1) ... 1123s Setting up python3.13-dev (3.13.2-1) ... 1123s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1123s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1123s Setting up python3-dev (3.13.1-1~exp2) ... 1123s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 1123s Setting up cpp (4:14.2.0-1ubuntu1) ... 1123s Setting up libtorch2.6:s390x (2.6.0+dfsg-1) ... 1123s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 1123s Setting up gcc-14 (14.2.0-17ubuntu1) ... 1123s Setting up libtorch-dev (2.6.0+dfsg-1) ... 1123s Setting up libtorch-test (2.6.0+dfsg-1) ... 1123s Setting up g++-14 (14.2.0-17ubuntu1) ... 1123s Setting up gcc (4:14.2.0-1ubuntu1) ... 1123s Setting up g++ (4:14.2.0-1ubuntu1) ... 1123s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 1123s Setting up build-essential (12.10ubuntu1) ... 1123s Processing triggers for man-db (2.13.0-1) ... 1124s Processing triggers for libc-bin (2.41-1ubuntu1) ... 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-packages.all"], kind short, sout raw, serr pipe, env [] 1124s autopkgtest: DBG: testbed command exited with code 0 1124s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/1_of_104__cpptest__CppSignature_test-packages.all 1125s autopkgtest: DBG: got reply from testbed: ok 1125s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1125s autopkgtest: DBG: testbed command exited with code 1 1125s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.wFE02M/build.E4h'], kind short, sout raw, serr pipe, env [] 1125s autopkgtest: DBG: testbed command exited with code 0 1125s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.z8qos2ju/out/tests-tree/ /tmp/autopkgtest.wFE02M/build.E4h/src/ 1134s autopkgtest: DBG: got reply from testbed: ok 1134s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr pipe, env [] 1134s autopkgtest: DBG: testbed command exited with code 0 1134s autopkgtest [08:28:51]: test 1_of_104__cpptest__CppSignature_test: /usr/lib/libtorch-test/CppSignature_test 1134s autopkgtest [08:28:51]: test 1_of_104__cpptest__CppSignature_test: [----------------------- 1134s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/1_of_104__cpptest__CppSignature_test-stderr --stdout=/tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/CppSignature_test"], kind test, sout raw, serr raw, env [] 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-artifacts 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stderr 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stdout 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/CppSignature_test 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.GCce73C45a/out to stdout and file: /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stdout 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.GCce73C45a/err to standard error and file: /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stdout 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 1801 to /tmp/autopkgtest_script_pid 1134s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1134s [==========] Running 5 tests from 1 test suite. 1134s [----------] Global test environment set-up. 1134s [----------] 5 tests from CppSignatureTest 1134s [ RUN ] CppSignatureTest.given_equalSignature_then_areEqual 1134s [ OK ] CppSignatureTest.given_equalSignature_then_areEqual (0 ms) 1134s [ RUN ] CppSignatureTest.given_differentSignature_then_areDifferent 1134s [ OK ] CppSignatureTest.given_differentSignature_then_areDifferent (0 ms) 1134s [ RUN ] CppSignatureTest.given_equalFunctorAndFunction_then_areEqual 1134s [ OK ] CppSignatureTest.given_equalFunctorAndFunction_then_areEqual (0 ms) 1134s [ RUN ] CppSignatureTest.given_differentFunctorAndFunction_then_areDifferent 1134s [ OK ] CppSignatureTest.given_differentFunctorAndFunction_then_areDifferent (0 ms) 1134s [ RUN ] CppSignatureTest.given_cppSignature_then_canQueryNameWithoutCrashing 1134s [ OK ] CppSignatureTest.given_cppSignature_then_canQueryNameWithoutCrashing (0 ms) 1134s [----------] 5 tests from CppSignatureTest (0 ms total) 1134s 1134s [----------] Global test environment tear-down 1134s [==========] 5 tests from 1 test suite ran. (0 ms total) 1134s [ PASSED ] 5 tests. 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1134s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1134s autopkgtest: DBG: testbed command exited with code 0 1135s autopkgtest [08:28:52]: test 1_of_104__cpptest__CppSignature_test: -----------------------] 1135s autopkgtest: DBG: testbed executing test finished with exit status 0 1135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/1_of_104__cpptest__CppSignature_test-stdout 1135s autopkgtest: DBG: got reply from testbed: ok 1135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/1_of_104__cpptest__CppSignature_test-stderr 1135s autopkgtest: DBG: got reply from testbed: ok 1135s autopkgtest [08:28:52]: test 1_of_104__cpptest__CppSignature_test: - - - - - - - - - - results - - - - - - - - - - 1135s 1_of_104__cpptest__CppSignature_test PASS 1135s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1135s autopkgtest: DBG: got reply from testbed: ok 1135s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/1_of_104__cpptest__CppSignature_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1135s autopkgtest: DBG: testbed command exited with code 0 1135s autopkgtest [08:28:52]: test 2_of_104__cpptest__Dict_test: preparing testbed 1135s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1135s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1135s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1135s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1135s autopkgtest: DBG: can use apt-get on testbed: True 1135s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1135s Reading package lists... 1136s Building dependency tree... 1136s Reading state information... 1136s Starting pkgProblemResolver with broken count: 0 1136s Starting 2 pkgProblemResolver with broken count: 0 1136s Done 1136s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-packages.all"], kind short, sout raw, serr pipe, env [] 1136s autopkgtest: DBG: testbed command exited with code 0 1136s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/2_of_104__cpptest__Dict_test-packages.all 1137s autopkgtest: DBG: got reply from testbed: ok 1137s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1137s autopkgtest: DBG: testbed command exited with code 0 1137s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1137s autopkgtest [08:28:54]: test 2_of_104__cpptest__Dict_test: /usr/lib/libtorch-test/Dict_test 1137s autopkgtest [08:28:54]: test 2_of_104__cpptest__Dict_test: [----------------------- 1137s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/2_of_104__cpptest__Dict_test-stderr --stdout=/tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/Dict_test"], kind test, sout raw, serr raw, env [] 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-artifacts 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stderr 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stdout 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/Dict_test 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pxAwPd8fpr/out to stdout and file: /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stdout 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pxAwPd8fpr/err to standard error and file: /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stdout 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 1954 to /tmp/autopkgtest_script_pid 1137s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1137s [==========] Running 47 tests from 2 test suites. 1137s [----------] Global test environment set-up. 1137s [----------] 46 tests from DictTest 1137s [ RUN ] DictTest.givenEmptyDict_whenCallingEmpty_thenReturnsTrue 1137s [ OK ] DictTest.givenEmptyDict_whenCallingEmpty_thenReturnsTrue (0 ms) 1137s [ RUN ] DictTest.givenNonemptyDict_whenCallingEmpty_thenReturnsFalse 1137s [ OK ] DictTest.givenNonemptyDict_whenCallingEmpty_thenReturnsFalse (0 ms) 1137s [ RUN ] DictTest.givenEmptyDict_whenCallingSize_thenReturnsZero 1137s [ OK ] DictTest.givenEmptyDict_whenCallingSize_thenReturnsZero (0 ms) 1137s [ RUN ] DictTest.givenNonemptyDict_whenCallingSize_thenReturnsNumberOfElements 1137s [ OK ] DictTest.givenNonemptyDict_whenCallingSize_thenReturnsNumberOfElements (0 ms) 1137s [ RUN ] DictTest.givenNonemptyDict_whenCallingClear_thenIsEmpty 1137s [ OK ] DictTest.givenNonemptyDict_whenCallingClear_thenIsEmpty (0 ms) 1137s [ RUN ] DictTest.whenInsertingNewKey_thenReturnsTrueAndIteratorToNewElement 1137s [ OK ] DictTest.whenInsertingNewKey_thenReturnsTrueAndIteratorToNewElement (0 ms) 1137s [ RUN ] DictTest.whenInsertingExistingKey_thenReturnsFalseAndIteratorToExistingElement 1137s [ OK ] DictTest.whenInsertingExistingKey_thenReturnsFalseAndIteratorToExistingElement (0 ms) 1137s [ RUN ] DictTest.whenInsertingExistingKey_thenDoesNotModifyDict 1137s [ OK ] DictTest.whenInsertingExistingKey_thenDoesNotModifyDict (0 ms) 1137s [ RUN ] DictTest.whenInsertOrAssigningNewKey_thenReturnsTrueAndIteratorToNewElement 1137s [ OK ] DictTest.whenInsertOrAssigningNewKey_thenReturnsTrueAndIteratorToNewElement (0 ms) 1137s [ RUN ] DictTest.whenInsertOrAssigningExistingKey_thenReturnsFalseAndIteratorToChangedElement 1137s [ OK ] DictTest.whenInsertOrAssigningExistingKey_thenReturnsFalseAndIteratorToChangedElement (0 ms) 1137s [ RUN ] DictTest.whenInsertOrAssigningExistingKey_thenDoesModifyDict 1137s [ OK ] DictTest.whenInsertOrAssigningExistingKey_thenDoesModifyDict (0 ms) 1137s [ RUN ] DictTest.givenEmptyDict_whenIterating_thenBeginIsEnd 1137s [ OK ] DictTest.givenEmptyDict_whenIterating_thenBeginIsEnd (0 ms) 1137s [ RUN ] DictTest.givenMutableDict_whenIterating_thenFindsElements 1137s [ OK ] DictTest.givenMutableDict_whenIterating_thenFindsElements (0 ms) 1137s [ RUN ] DictTest.givenMutableDict_whenIteratingWithForeach_thenFindsElements 1137s [ OK ] DictTest.givenMutableDict_whenIteratingWithForeach_thenFindsElements (0 ms) 1137s [ RUN ] DictTest.givenConstDict_whenIterating_thenFindsElements 1137s [ OK ] DictTest.givenConstDict_whenIterating_thenFindsElements (0 ms) 1137s [ RUN ] DictTest.givenConstDict_whenIteratingWithForeach_thenFindsElements 1137s [ OK ] DictTest.givenConstDict_whenIteratingWithForeach_thenFindsElements (0 ms) 1137s [ RUN ] DictTest.givenIterator_thenCanModifyValue 1137s [ OK ] DictTest.givenIterator_thenCanModifyValue (0 ms) 1137s [ RUN ] DictTest.givenOneElementDict_whenErasingByIterator_thenDictIsEmpty 1137s [ OK ] DictTest.givenOneElementDict_whenErasingByIterator_thenDictIsEmpty (0 ms) 1137s [ RUN ] DictTest.givenOneElementDict_whenErasingByKey_thenReturnsOneAndDictIsEmpty 1137s [ OK ] DictTest.givenOneElementDict_whenErasingByKey_thenReturnsOneAndDictIsEmpty (0 ms) 1137s [ RUN ] DictTest.givenOneElementDict_whenErasingByNonexistingKey_thenReturnsZeroAndDictIsUnchanged 1137s [ OK ] DictTest.givenOneElementDict_whenErasingByNonexistingKey_thenReturnsZeroAndDictIsUnchanged (0 ms) 1137s [ RUN ] DictTest.whenCallingAtWithExistingKey_thenReturnsCorrectElement 1137s [ OK ] DictTest.whenCallingAtWithExistingKey_thenReturnsCorrectElement (0 ms) 1137s [ RUN ] DictTest.whenCallingAtWithNonExistingKey_thenReturnsCorrectElement 1137s [ OK ] DictTest.whenCallingAtWithNonExistingKey_thenReturnsCorrectElement (0 ms) 1137s [ RUN ] DictTest.givenMutableDict_whenCallingFindOnExistingKey_thenFindsCorrectElement 1137s [ OK ] DictTest.givenMutableDict_whenCallingFindOnExistingKey_thenFindsCorrectElement (0 ms) 1137s [ RUN ] DictTest.givenMutableDict_whenCallingFindOnNonExistingKey_thenReturnsEnd 1137s [ OK ] DictTest.givenMutableDict_whenCallingFindOnNonExistingKey_thenReturnsEnd (0 ms) 1137s [ RUN ] DictTest.givenConstDict_whenCallingFindOnExistingKey_thenFindsCorrectElement 1137s [ OK ] DictTest.givenConstDict_whenCallingFindOnExistingKey_thenFindsCorrectElement (0 ms) 1137s [ RUN ] DictTest.givenConstDict_whenCallingFindOnNonExistingKey_thenReturnsEnd 1137s [ OK ] DictTest.givenConstDict_whenCallingFindOnNonExistingKey_thenReturnsEnd (0 ms) 1137s [ RUN ] DictTest.whenCallingContainsWithExistingKey_thenReturnsTrue 1137s [ OK ] DictTest.whenCallingContainsWithExistingKey_thenReturnsTrue (0 ms) 1137s [ RUN ] DictTest.whenCallingContainsWithNonExistingKey_thenReturnsFalse 1137s [ OK ] DictTest.whenCallingContainsWithNonExistingKey_thenReturnsFalse (0 ms) 1137s [ RUN ] DictTest.whenCallingReserve_thenDoesntCrash 1137s [ OK ] DictTest.whenCallingReserve_thenDoesntCrash (0 ms) 1137s [ RUN ] DictTest.whenCopyConstructingDict_thenAreEqual 1137s [ OK ] DictTest.whenCopyConstructingDict_thenAreEqual (0 ms) 1137s [ RUN ] DictTest.whenCopyAssigningDict_thenAreEqual 1137s [ OK ] DictTest.whenCopyAssigningDict_thenAreEqual (0 ms) 1137s [ RUN ] DictTest.whenCopyingDict_thenAreEqual 1137s [ OK ] DictTest.whenCopyingDict_thenAreEqual (0 ms) 1137s [ RUN ] DictTest.whenMoveConstructingDict_thenNewIsCorrect 1137s [ OK ] DictTest.whenMoveConstructingDict_thenNewIsCorrect (0 ms) 1137s [ RUN ] DictTest.whenMoveAssigningDict_thenNewIsCorrect 1137s [ OK ] DictTest.whenMoveAssigningDict_thenNewIsCorrect (0 ms) 1137s [ RUN ] DictTest.whenMoveConstructingDict_thenOldIsUnchanged 1137s [ OK ] DictTest.whenMoveConstructingDict_thenOldIsUnchanged (0 ms) 1137s [ RUN ] DictTest.whenMoveAssigningDict_thenOldIsUnchanged 1137s [ OK ] DictTest.whenMoveAssigningDict_thenOldIsUnchanged (0 ms) 1137s [ RUN ] DictTest.givenIterator_whenPostfixIncrementing_thenMovesToNextAndReturnsOldPosition 1137s [ OK ] DictTest.givenIterator_whenPostfixIncrementing_thenMovesToNextAndReturnsOldPosition (0 ms) 1137s [ RUN ] DictTest.givenIterator_whenPrefixIncrementing_thenMovesToNextAndReturnsNewPosition 1137s [ OK ] DictTest.givenIterator_whenPrefixIncrementing_thenMovesToNextAndReturnsNewPosition (0 ms) 1137s [ RUN ] DictTest.givenEqualIterators_thenAreEqual 1137s [ OK ] DictTest.givenEqualIterators_thenAreEqual (0 ms) 1137s [ RUN ] DictTest.givenDifferentIterators_thenAreNotEqual 1137s [ OK ] DictTest.givenDifferentIterators_thenAreNotEqual (0 ms) 1137s [ RUN ] DictTest.givenIterator_whenDereferencing_thenPointsToCorrectElement 1137s [ OK ] DictTest.givenIterator_whenDereferencing_thenPointsToCorrectElement (0 ms) 1137s [ RUN ] DictTest.givenIterator_whenWritingToValue_thenChangesValue 1137s [ OK ] DictTest.givenIterator_whenWritingToValue_thenChangesValue (0 ms) 1137s [ RUN ] DictTest.isReferenceType 1137s [ OK ] DictTest.isReferenceType (0 ms) 1137s [ RUN ] DictTest.copyHasSeparateStorage 1137s [ OK ] DictTest.copyHasSeparateStorage (0 ms) 1137s [ RUN ] DictTest.dictTensorAsKey 1137s [ OK ] DictTest.dictTensorAsKey (0 ms) 1137s [ RUN ] DictTest.dictEquality 1137s [ OK ] DictTest.dictEquality (0 ms) 1137s [----------] 46 tests from DictTest (0 ms total) 1137s 1137s [----------] 1 test from ListTestIValueBasedList 1137s [ RUN ] ListTestIValueBasedList.givenIterator_whenWritingToValueFromIterator_thenChangesValue 1137s [ OK ] ListTestIValueBasedList.givenIterator_whenWritingToValueFromIterator_thenChangesValue (0 ms) 1137s [----------] 1 test from ListTestIValueBasedList (0 ms total) 1137s 1137s [----------] Global test environment tear-down 1137s [==========] 47 tests from 2 test suites ran. (0 ms total) 1137s [ PASSED ] 47 tests. 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1137s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1137s autopkgtest: DBG: testbed command exited with code 0 1137s autopkgtest [08:28:54]: test 2_of_104__cpptest__Dict_test: -----------------------] 1137s autopkgtest: DBG: testbed executing test finished with exit status 0 1137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/2_of_104__cpptest__Dict_test-stdout 1138s autopkgtest: DBG: got reply from testbed: ok 1138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/2_of_104__cpptest__Dict_test-stderr 1138s autopkgtest: DBG: got reply from testbed: ok 1138s autopkgtest [08:28:55]: test 2_of_104__cpptest__Dict_test: - - - - - - - - - - results - - - - - - - - - - 1138s 2_of_104__cpptest__Dict_test PASS 1138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1138s autopkgtest: DBG: got reply from testbed: ok 1138s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/2_of_104__cpptest__Dict_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1138s autopkgtest: DBG: testbed command exited with code 0 1138s autopkgtest [08:28:55]: test 3_of_104__cpptest__Dimname_test: preparing testbed 1138s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1138s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1138s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1138s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1138s autopkgtest: DBG: can use apt-get on testbed: True 1138s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1138s Reading package lists... 1139s Building dependency tree... 1139s Reading state information... 1139s Starting pkgProblemResolver with broken count: 0 1139s Starting 2 pkgProblemResolver with broken count: 0 1139s Done 1139s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-packages.all"], kind short, sout raw, serr pipe, env [] 1139s autopkgtest: DBG: testbed command exited with code 0 1139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/3_of_104__cpptest__Dimname_test-packages.all 1139s autopkgtest: DBG: got reply from testbed: ok 1139s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1140s autopkgtest: DBG: testbed command exited with code 0 1140s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1140s autopkgtest [08:28:57]: test 3_of_104__cpptest__Dimname_test: /usr/lib/libtorch-test/Dimname_test 1140s autopkgtest [08:28:57]: test 3_of_104__cpptest__Dimname_test: [----------------------- 1140s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/3_of_104__cpptest__Dimname_test-stderr --stdout=/tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/Dimname_test"], kind test, sout raw, serr raw, env [] 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-artifacts 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stderr 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stdout 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/Dimname_test 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uMfitPrytp/out to stdout and file: /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stdout 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uMfitPrytp/err to standard error and file: /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stdout 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2109 to /tmp/autopkgtest_script_pid 1140s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1140s [==========] Running 4 tests from 1 test suite. 1140s [----------] Global test environment set-up. 1140s [----------] 4 tests from DimnameTest 1140s [ RUN ] DimnameTest.isValidIdentifier 1140s [ OK ] DimnameTest.isValidIdentifier (0 ms) 1140s [ RUN ] DimnameTest.wildcardName 1140s [ OK ] DimnameTest.wildcardName (0 ms) 1140s [ RUN ] DimnameTest.createNormalName 1140s [ OK ] DimnameTest.createNormalName (0 ms) 1140s [ RUN ] DimnameTest.unifyAndMatch 1140s [ OK ] DimnameTest.unifyAndMatch (0 ms) 1140s [----------] 4 tests from DimnameTest (0 ms total) 1140s 1140s [----------] Global test environment tear-down 1140s [==========] 4 tests from 1 test suite ran. (0 ms total) 1140s [ PASSED ] 4 tests. 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1140s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1140s autopkgtest: DBG: testbed command exited with code 0 1140s autopkgtest [08:28:57]: test 3_of_104__cpptest__Dimname_test: -----------------------] 1140s autopkgtest: DBG: testbed executing test finished with exit status 0 1140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/3_of_104__cpptest__Dimname_test-stdout 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/3_of_104__cpptest__Dimname_test-stderr 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest [08:28:58]: test 3_of_104__cpptest__Dimname_test: - - - - - - - - - - results - - - - - - - - - - 1141s 3_of_104__cpptest__Dimname_test PASS 1141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1141s autopkgtest: DBG: got reply from testbed: ok 1141s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/3_of_104__cpptest__Dimname_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1141s autopkgtest: DBG: testbed command exited with code 0 1141s autopkgtest [08:28:58]: test 4_of_104__cpptest__IListRef_test: preparing testbed 1141s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1141s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1141s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1141s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1141s autopkgtest: DBG: can use apt-get on testbed: True 1141s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1141s Reading package lists... 1141s Building dependency tree... 1141s Reading state information... 1142s Starting pkgProblemResolver with broken count: 0 1142s Starting 2 pkgProblemResolver with broken count: 0 1142s Done 1142s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1142s autopkgtest: DBG: testbed command exited with code 0 1142s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1142s autopkgtest: DBG: testbed command exited with code 0 1142s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1142s autopkgtest: DBG: testbed command exited with code 0 1142s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-packages.all"], kind short, sout raw, serr pipe, env [] 1142s autopkgtest: DBG: testbed command exited with code 0 1142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/4_of_104__cpptest__IListRef_test-packages.all 1142s autopkgtest: DBG: got reply from testbed: ok 1142s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1143s autopkgtest: DBG: testbed command exited with code 0 1143s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1143s autopkgtest [08:29:00]: test 4_of_104__cpptest__IListRef_test: /usr/lib/libtorch-test/IListRef_test 1143s autopkgtest [08:29:00]: test 4_of_104__cpptest__IListRef_test: [----------------------- 1143s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/4_of_104__cpptest__IListRef_test-stderr --stdout=/tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/IListRef_test"], kind test, sout raw, serr raw, env [] 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-artifacts 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stderr 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stdout 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/IListRef_test 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.iLU4PjMFGM/out to stdout and file: /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stdout 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.iLU4PjMFGM/err to standard error and file: /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stdout 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2262 to /tmp/autopkgtest_script_pid 1143s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1143s [==========] Running 21 tests from 3 test suites. 1143s [----------] Global test environment set-up. 1143s [----------] 12 tests from ITensorListRefTest 1143s [ RUN ] ITensorListRefTest.CtorEmpty_IsNone_Throws 1143s [ OK ] ITensorListRefTest.CtorEmpty_IsNone_Throws (0 ms) 1143s [ RUN ] ITensorListRefTest.CtorBoxed_IsBoxed 1143s [ OK ] ITensorListRefTest.CtorBoxed_IsBoxed (0 ms) 1143s [ RUN ] ITensorListRefTest.CtorUnboxed_IsUnboxed 1143s [ OK ] ITensorListRefTest.CtorUnboxed_IsUnboxed (0 ms) 1143s [ RUN ] ITensorListRefTest.CtorUnboxedIndirect_IsUnboxed 1143s [ OK ] ITensorListRefTest.CtorUnboxedIndirect_IsUnboxed (0 ms) 1143s [ RUN ] ITensorListRefTest.CtorTemp_IsUnboxed 1143s [ OK ] ITensorListRefTest.CtorTemp_IsUnboxed (0 ms) 1143s [ RUN ] ITensorListRefTest.Boxed_GetConstRefTensor 1143s [ OK ] ITensorListRefTest.Boxed_GetConstRefTensor (0 ms) 1143s [ RUN ] ITensorListRefTest.Unboxed_GetConstRefTensor 1143s [ OK ] ITensorListRefTest.Unboxed_GetConstRefTensor (0 ms) 1143s [ RUN ] ITensorListRefTest.Boxed_Equal 1143s [ OK ] ITensorListRefTest.Boxed_Equal (0 ms) 1143s [ RUN ] ITensorListRefTest.Unboxed_Equal 1143s [ OK ] ITensorListRefTest.Unboxed_Equal (0 ms) 1143s [ RUN ] ITensorListRefTest.UnboxedIndirect_Equal 1143s [ OK ] ITensorListRefTest.UnboxedIndirect_Equal (0 ms) 1143s [ RUN ] ITensorListRefTest.BoxedMaterialize_Equal 1143s [ OK ] ITensorListRefTest.BoxedMaterialize_Equal (0 ms) 1143s [ RUN ] ITensorListRefTest.UnboxedMaterialize_Equal 1143s [ OK ] ITensorListRefTest.UnboxedMaterialize_Equal (0 ms) 1143s [----------] 12 tests from ITensorListRefTest (0 ms total) 1143s 1143s [----------] 7 tests from ITensorListRefIteratorTest 1143s [ RUN ] ITensorListRefIteratorTest.CtorEmpty_ThrowsError 1143s [ OK ] ITensorListRefIteratorTest.CtorEmpty_ThrowsError (0 ms) 1143s [ RUN ] ITensorListRefIteratorTest.Boxed_GetFirstElement 1143s [ OK ] ITensorListRefIteratorTest.Boxed_GetFirstElement (0 ms) 1143s [ RUN ] ITensorListRefIteratorTest.Unboxed_GetFirstElement 1143s [ OK ] ITensorListRefIteratorTest.Unboxed_GetFirstElement (0 ms) 1143s [ RUN ] ITensorListRefIteratorTest.Boxed_Equality 1143s [ OK ] ITensorListRefIteratorTest.Boxed_Equality (0 ms) 1143s [ RUN ] ITensorListRefIteratorTest.Unboxed_Equality 1143s [ OK ] ITensorListRefIteratorTest.Unboxed_Equality (0 ms) 1143s [ RUN ] ITensorListRefIteratorTest.Boxed_Iterate 1143s [ OK ] ITensorListRefIteratorTest.Boxed_Iterate (0 ms) 1143s [ RUN ] ITensorListRefIteratorTest.Unboxed_Iterate 1143s [ OK ] ITensorListRefIteratorTest.Unboxed_Iterate (0 ms) 1143s [----------] 7 tests from ITensorListRefIteratorTest (0 ms total) 1143s 1143s [----------] 2 tests from IOptTensorListRefTest 1143s [ RUN ] IOptTensorListRefTest.Boxed_Iterate 1143s [ OK ] IOptTensorListRefTest.Boxed_Iterate (0 ms) 1143s [ RUN ] IOptTensorListRefTest.Unboxed_Iterate 1143s [ OK ] IOptTensorListRefTest.Unboxed_Iterate (0 ms) 1143s [----------] 2 tests from IOptTensorListRefTest (0 ms total) 1143s 1143s [----------] Global test environment tear-down 1143s [==========] 21 tests from 3 test suites ran. (0 ms total) 1143s [ PASSED ] 21 tests. 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1143s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1143s autopkgtest: DBG: testbed command exited with code 0 1143s autopkgtest [08:29:00]: test 4_of_104__cpptest__IListRef_test: -----------------------] 1143s autopkgtest: DBG: testbed executing test finished with exit status 0 1143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/4_of_104__cpptest__IListRef_test-stdout 1144s autopkgtest: DBG: got reply from testbed: ok 1144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/4_of_104__cpptest__IListRef_test-stderr 1144s autopkgtest: DBG: got reply from testbed: ok 1144s autopkgtest [08:29:01]: test 4_of_104__cpptest__IListRef_test: - - - - - - - - - - results - - - - - - - - - - 1144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1144s 4_of_104__cpptest__IListRef_test PASS 1144s autopkgtest: DBG: got reply from testbed: ok 1144s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/4_of_104__cpptest__IListRef_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1144s autopkgtest: DBG: testbed command exited with code 0 1144s autopkgtest [08:29:01]: test 5_of_104__cpptest__KernelFunction_test: preparing testbed 1144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1144s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1144s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1144s autopkgtest: DBG: can use apt-get on testbed: True 1144s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1144s Reading package lists... 1144s Building dependency tree... 1144s Reading state information... 1145s Starting pkgProblemResolver with broken count: 0 1145s Starting 2 pkgProblemResolver with broken count: 0 1145s Done 1145s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1145s autopkgtest: DBG: testbed command exited with code 0 1145s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1145s autopkgtest: DBG: testbed command exited with code 0 1145s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1145s autopkgtest: DBG: testbed command exited with code 0 1145s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-packages.all"], kind short, sout raw, serr pipe, env [] 1145s autopkgtest: DBG: testbed command exited with code 0 1145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/5_of_104__cpptest__KernelFunction_test-packages.all 1145s autopkgtest: DBG: got reply from testbed: ok 1145s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1146s autopkgtest: DBG: testbed command exited with code 0 1146s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1146s autopkgtest [08:29:03]: test 5_of_104__cpptest__KernelFunction_test: /usr/lib/libtorch-test/KernelFunction_test 1146s autopkgtest [08:29:03]: test 5_of_104__cpptest__KernelFunction_test: [----------------------- 1146s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/5_of_104__cpptest__KernelFunction_test-stderr --stdout=/tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/KernelFunction_test"], kind test, sout raw, serr raw, env [] 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-artifacts 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stderr 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stdout 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/KernelFunction_test 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.t2YuZdnAcz/out to stdout and file: /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stdout 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.t2YuZdnAcz/err to standard error and file: /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stdout 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2415 to /tmp/autopkgtest_script_pid 1146s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1146s [==========] Running 28 tests from 1 test suite. 1146s [----------] Global test environment set-up. 1146s [----------] 28 tests from KernelFunctionTest 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withoutReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withoutReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withMultiReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withMultiReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withInPlaceSignature_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withInPlaceSignature_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceSignature_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceSignature_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceMultiSignature_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceMultiSignature_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withoutReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withoutReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withMultiReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withMultiReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withInPlaceSignature_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withInPlaceSignature_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceSignature_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceSignature_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceMultiSignature_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenBoxedFunction_withOutOfPlaceMultiSignature_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunctor_withReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunctor_withReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunctor_withoutReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunctor_withoutReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunctor_withReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunctor_withReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunctor_withoutReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunctor_withoutReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunction_withReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunction_withReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunction_withoutReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunction_withoutReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunction_withReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunction_withReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedFunction_withoutReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedFunction_withoutReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedRuntimeFunction_withReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedRuntimeFunction_withReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedRuntimeFunction_withoutReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedRuntimeFunction_withoutReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedRuntimeFunction_withReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedRuntimeFunction_withReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedRuntimeFunction_withoutReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedRuntimeFunction_withoutReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedLambda_withReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedLambda_withReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedLambda_withoutReturn_whenCallingBoxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedLambda_withoutReturn_whenCallingBoxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedLambda_withReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedLambda_withReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [ RUN ] KernelFunctionTest.givenUnboxedLambda_withoutReturn_whenCallingUnboxed_thenWorks 1146s [ OK ] KernelFunctionTest.givenUnboxedLambda_withoutReturn_whenCallingUnboxed_thenWorks (0 ms) 1146s [----------] 28 tests from KernelFunctionTest (0 ms total) 1146s 1146s [----------] Global test environment tear-down 1146s [==========] 28 tests from 1 test suite ran. (0 ms total) 1146s [ PASSED ] 28 tests. 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1146s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1146s autopkgtest: DBG: testbed command exited with code 0 1146s autopkgtest [08:29:03]: test 5_of_104__cpptest__KernelFunction_test: -----------------------] 1146s autopkgtest: DBG: testbed executing test finished with exit status 0 1146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/5_of_104__cpptest__KernelFunction_test-stdout 1146s autopkgtest: DBG: got reply from testbed: ok 1146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/5_of_104__cpptest__KernelFunction_test-stderr 1147s autopkgtest: DBG: got reply from testbed: ok 1147s autopkgtest [08:29:04]: test 5_of_104__cpptest__KernelFunction_test: - - - - - - - - - - results - - - - - - - - - - 1147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1147s 5_of_104__cpptest__KernelFunction_test PASS 1147s autopkgtest: DBG: got reply from testbed: ok 1147s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/5_of_104__cpptest__KernelFunction_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1147s autopkgtest: DBG: testbed command exited with code 0 1147s autopkgtest [08:29:04]: test 6_of_104__cpptest__List_test: preparing testbed 1147s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1147s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1147s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1147s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1147s autopkgtest: DBG: can use apt-get on testbed: True 1147s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1147s Reading package lists... 1147s Building dependency tree... 1147s Reading state information... 1148s Starting pkgProblemResolver with broken count: 0 1148s Starting 2 pkgProblemResolver with broken count: 0 1148s Done 1148s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1148s autopkgtest: DBG: testbed command exited with code 0 1148s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1148s autopkgtest: DBG: testbed command exited with code 0 1148s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1148s autopkgtest: DBG: testbed command exited with code 0 1148s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-packages.all"], kind short, sout raw, serr pipe, env [] 1148s autopkgtest: DBG: testbed command exited with code 0 1148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/6_of_104__cpptest__List_test-packages.all 1148s autopkgtest: DBG: got reply from testbed: ok 1148s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1149s autopkgtest: DBG: testbed command exited with code 0 1149s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1149s autopkgtest [08:29:06]: test 6_of_104__cpptest__List_test: /usr/lib/libtorch-test/List_test 1149s autopkgtest [08:29:06]: test 6_of_104__cpptest__List_test: [----------------------- 1149s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/6_of_104__cpptest__List_test-stderr --stdout=/tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/List_test"], kind test, sout raw, serr raw, env [] 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-artifacts 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stderr 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stdout 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/List_test 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Xl4Vqht4mt/out to stdout and file: /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stdout 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Xl4Vqht4mt/err to standard error and file: /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stdout 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2568 to /tmp/autopkgtest_script_pid 1149s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1149s [==========] Running 139 tests from 3 test suites. 1149s [----------] Global test environment set-up. 1149s [----------] 67 tests from ListTestIValueBasedList 1149s [ RUN ] ListTestIValueBasedList.givenEmptyList_whenCallingEmpty_thenReturnsTrue 1149s [ OK ] ListTestIValueBasedList.givenEmptyList_whenCallingEmpty_thenReturnsTrue (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenNonemptyList_whenCallingEmpty_thenReturnsFalse 1149s [ OK ] ListTestIValueBasedList.givenNonemptyList_whenCallingEmpty_thenReturnsFalse (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenEmptyList_whenCallingSize_thenReturnsZero 1149s [ OK ] ListTestIValueBasedList.givenEmptyList_whenCallingSize_thenReturnsZero (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenNonemptyList_whenCallingSize_thenReturnsNumberOfElements 1149s [ OK ] ListTestIValueBasedList.givenNonemptyList_whenCallingSize_thenReturnsNumberOfElements (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenNonemptyList_whenCallingClear_thenIsEmpty 1149s [ OK ] ListTestIValueBasedList.givenNonemptyList_whenCallingClear_thenIsEmpty (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingGetWithExistingPosition_thenReturnsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingGetWithExistingPosition_thenReturnsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingGetWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestIValueBasedList.whenCallingGetWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingExtractWithExistingPosition_thenReturnsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingExtractWithExistingPosition_thenReturnsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingExtractWithExistingPosition_thenListElementBecomesInvalid 1149s [ OK ] ListTestIValueBasedList.whenCallingExtractWithExistingPosition_thenListElementBecomesInvalid (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingExtractWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestIValueBasedList.whenCallingExtractWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingCopyingSetWithExistingPosition_thenChangesElement 1149s [ OK ] ListTestIValueBasedList.whenCallingCopyingSetWithExistingPosition_thenChangesElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingMovingSetWithExistingPosition_thenChangesElement 1149s [ OK ] ListTestIValueBasedList.whenCallingMovingSetWithExistingPosition_thenChangesElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingCopyingSetWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestIValueBasedList.whenCallingCopyingSetWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingMovingSetWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestIValueBasedList.whenCallingMovingSetWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingAccessOperatorWithExistingPosition_thenReturnsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingAccessOperatorWithExistingPosition_thenReturnsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenAssigningToAccessOperatorWithExistingPosition_thenSetsElement 1149s [ OK ] ListTestIValueBasedList.whenAssigningToAccessOperatorWithExistingPosition_thenSetsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenAssigningToAccessOperatorFromAccessOperator_thenSetsElement 1149s [ OK ] ListTestIValueBasedList.whenAssigningToAccessOperatorFromAccessOperator_thenSetsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenSwappingFromAccessOperator_thenSwapsElements 1149s [ OK ] ListTestIValueBasedList.whenSwappingFromAccessOperator_thenSwapsElements (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingAccessOperatorWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestIValueBasedList.whenCallingAccessOperatorWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingInsertOnIteratorWithLValue_thenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingInsertOnIteratorWithLValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingInsertOnIteratorWithRValue_thenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingInsertOnIteratorWithRValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingInsertWithLValue_thenReturnsIteratorToNewElement 1149s [ OK ] ListTestIValueBasedList.whenCallingInsertWithLValue_thenReturnsIteratorToNewElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingInsertWithRValue_thenReturnsIteratorToNewElement 1149s [ OK ] ListTestIValueBasedList.whenCallingInsertWithRValue_thenReturnsIteratorToNewElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingEmplaceWithLValue_thenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingEmplaceWithLValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingEmplaceWithRValue_thenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingEmplaceWithRValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingEmplaceWithConstructorArg_thenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingEmplaceWithConstructorArg_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingPushBackWithLValue_ThenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingPushBackWithLValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingPushBackWithRValue_ThenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingPushBackWithRValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingEmplaceBackWithLValue_ThenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingEmplaceBackWithLValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingEmplaceBackWithRValue_ThenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingEmplaceBackWithRValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingEmplaceBackWithConstructorArg_ThenInsertsElement 1149s [ OK ] ListTestIValueBasedList.whenCallingEmplaceBackWithConstructorArg_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenEmptyList_whenIterating_thenBeginIsEnd 1149s [ OK ] ListTestIValueBasedList.givenEmptyList_whenIterating_thenBeginIsEnd (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenIterating_thenFindsElements 1149s [ OK ] ListTestIValueBasedList.whenIterating_thenFindsElements (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenIteratingWithForeach_thenFindsElements 1149s [ OK ] ListTestIValueBasedList.whenIteratingWithForeach_thenFindsElements (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenOneElementList_whenErasing_thenListIsEmpty 1149s [ OK ] ListTestIValueBasedList.givenOneElementList_whenErasing_thenListIsEmpty (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenList_whenErasing_thenReturnsIterator 1149s [ OK ] ListTestIValueBasedList.givenList_whenErasing_thenReturnsIterator (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenList_whenErasingFullRange_thenIsEmpty 1149s [ OK ] ListTestIValueBasedList.givenList_whenErasingFullRange_thenIsEmpty (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCallingReserve_thenDoesntCrash 1149s [ OK ] ListTestIValueBasedList.whenCallingReserve_thenDoesntCrash (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCopyConstructingList_thenAreEqual 1149s [ OK ] ListTestIValueBasedList.whenCopyConstructingList_thenAreEqual (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCopyAssigningList_thenAreEqual 1149s [ OK ] ListTestIValueBasedList.whenCopyAssigningList_thenAreEqual (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenCopyingList_thenAreEqual 1149s [ OK ] ListTestIValueBasedList.whenCopyingList_thenAreEqual (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenMoveConstructingList_thenNewIsCorrect 1149s [ OK ] ListTestIValueBasedList.whenMoveConstructingList_thenNewIsCorrect (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenMoveAssigningList_thenNewIsCorrect 1149s [ OK ] ListTestIValueBasedList.whenMoveAssigningList_thenNewIsCorrect (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenMoveConstructingList_thenOldIsUnchanged 1149s [ OK ] ListTestIValueBasedList.whenMoveConstructingList_thenOldIsUnchanged (0 ms) 1149s [ RUN ] ListTestIValueBasedList.whenMoveAssigningList_thenOldIsUnchanged 1149s [ OK ] ListTestIValueBasedList.whenMoveAssigningList_thenOldIsUnchanged (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenPostfixIncrementing_thenMovesToNextAndReturnsOldPosition 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenPostfixIncrementing_thenMovesToNextAndReturnsOldPosition (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenPrefixIncrementing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenPrefixIncrementing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenPostfixDecrementing_thenMovesToNextAndReturnsOldPosition 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenPostfixDecrementing_thenMovesToNextAndReturnsOldPosition (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenPrefixDecrementing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenPrefixDecrementing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenIncreasing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenIncreasing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenDecreasing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenDecreasing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenAdding_thenReturnsNewIterator 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenAdding_thenReturnsNewIterator (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenSubtracting_thenReturnsNewIterator 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenSubtracting_thenReturnsNewIterator (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenCalculatingDifference_thenReturnsCorrectNumber 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenCalculatingDifference_thenReturnsCorrectNumber (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenEqualIterators_thenAreEqual 1149s [ OK ] ListTestIValueBasedList.givenEqualIterators_thenAreEqual (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenDifferentIterators_thenAreNotEqual 1149s [ OK ] ListTestIValueBasedList.givenDifferentIterators_thenAreNotEqual (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenDereferencing_thenPointsToCorrectElement 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenDereferencing_thenPointsToCorrectElement (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenAssigningNewValue_thenChangesValue 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenAssigningNewValue_thenChangesValue (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenAssigningNewValueFromIterator_thenChangesValue 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenAssigningNewValueFromIterator_thenChangesValue (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenIterator_whenSwappingValuesFromIterator_thenChangesValue 1149s [ OK ] ListTestIValueBasedList.givenIterator_whenSwappingValuesFromIterator_thenChangesValue (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenOneElementList_whenCallingPopBack_thenIsEmpty 1149s [ OK ] ListTestIValueBasedList.givenOneElementList_whenCallingPopBack_thenIsEmpty (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenEmptyList_whenCallingResize_thenResizesAndSetsEmptyValue 1149s [ OK ] ListTestIValueBasedList.givenEmptyList_whenCallingResize_thenResizesAndSetsEmptyValue (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenEmptyList_whenCallingResizeWithValue_thenResizesAndSetsValue 1149s [ OK ] ListTestIValueBasedList.givenEmptyList_whenCallingResizeWithValue_thenResizesAndSetsValue (0 ms) 1149s [ RUN ] ListTestIValueBasedList.isReferenceType 1149s [ OK ] ListTestIValueBasedList.isReferenceType (0 ms) 1149s [ RUN ] ListTestIValueBasedList.copyHasSeparateStorage 1149s [ OK ] ListTestIValueBasedList.copyHasSeparateStorage (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenEqualLists_thenIsEqual 1149s [ OK ] ListTestIValueBasedList.givenEqualLists_thenIsEqual (0 ms) 1149s [ RUN ] ListTestIValueBasedList.givenDifferentLists_thenIsNotEqual 1149s [ OK ] ListTestIValueBasedList.givenDifferentLists_thenIsNotEqual (0 ms) 1149s [----------] 67 tests from ListTestIValueBasedList (0 ms total) 1149s 1149s [----------] 68 tests from ListTestNonIValueBasedList 1149s [ RUN ] ListTestNonIValueBasedList.givenEmptyList_whenCallingEmpty_thenReturnsTrue 1149s [ OK ] ListTestNonIValueBasedList.givenEmptyList_whenCallingEmpty_thenReturnsTrue (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenNonemptyList_whenCallingEmpty_thenReturnsFalse 1149s [ OK ] ListTestNonIValueBasedList.givenNonemptyList_whenCallingEmpty_thenReturnsFalse (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenEmptyList_whenCallingSize_thenReturnsZero 1149s [ OK ] ListTestNonIValueBasedList.givenEmptyList_whenCallingSize_thenReturnsZero (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenNonemptyList_whenCallingSize_thenReturnsNumberOfElements 1149s [ OK ] ListTestNonIValueBasedList.givenNonemptyList_whenCallingSize_thenReturnsNumberOfElements (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenNonemptyList_whenCallingClear_thenIsEmpty 1149s [ OK ] ListTestNonIValueBasedList.givenNonemptyList_whenCallingClear_thenIsEmpty (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingGetWithExistingPosition_thenReturnsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingGetWithExistingPosition_thenReturnsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingGetWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestNonIValueBasedList.whenCallingGetWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingExtractWithExistingPosition_thenReturnsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingExtractWithExistingPosition_thenReturnsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingExtractWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestNonIValueBasedList.whenCallingExtractWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingCopyingSetWithExistingPosition_thenChangesElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingCopyingSetWithExistingPosition_thenChangesElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingMovingSetWithExistingPosition_thenChangesElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingMovingSetWithExistingPosition_thenChangesElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingCopyingSetWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestNonIValueBasedList.whenCallingCopyingSetWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingMovingSetWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestNonIValueBasedList.whenCallingMovingSetWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingAccessOperatorWithExistingPosition_thenReturnsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingAccessOperatorWithExistingPosition_thenReturnsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenAssigningToAccessOperatorWithExistingPosition_thenSetsElement 1149s [ OK ] ListTestNonIValueBasedList.whenAssigningToAccessOperatorWithExistingPosition_thenSetsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenAssigningToAccessOperatorFromAccessOperator_thenSetsElement 1149s [ OK ] ListTestNonIValueBasedList.whenAssigningToAccessOperatorFromAccessOperator_thenSetsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenSwappingFromAccessOperator_thenSwapsElements 1149s [ OK ] ListTestNonIValueBasedList.whenSwappingFromAccessOperator_thenSwapsElements (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingAccessOperatorWithNonExistingPosition_thenThrowsException 1149s [ OK ] ListTestNonIValueBasedList.whenCallingAccessOperatorWithNonExistingPosition_thenThrowsException (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingInsertOnIteratorWithLValue_thenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingInsertOnIteratorWithLValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingInsertOnIteratorWithRValue_thenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingInsertOnIteratorWithRValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingInsertWithLValue_thenReturnsIteratorToNewElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingInsertWithLValue_thenReturnsIteratorToNewElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingInsertWithRValue_thenReturnsIteratorToNewElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingInsertWithRValue_thenReturnsIteratorToNewElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingEmplaceWithLValue_thenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingEmplaceWithLValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingEmplaceWithRValue_thenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingEmplaceWithRValue_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingEmplaceWithConstructorArg_thenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingEmplaceWithConstructorArg_thenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingPushBackWithLValue_ThenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingPushBackWithLValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingPushBackWithRValue_ThenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingPushBackWithRValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingEmplaceBackWithLValue_ThenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingEmplaceBackWithLValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingEmplaceBackWithRValue_ThenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingEmplaceBackWithRValue_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingEmplaceBackWithConstructorArg_ThenInsertsElement 1149s [ OK ] ListTestNonIValueBasedList.whenCallingEmplaceBackWithConstructorArg_ThenInsertsElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenEmptyList_whenIterating_thenBeginIsEnd 1149s [ OK ] ListTestNonIValueBasedList.givenEmptyList_whenIterating_thenBeginIsEnd (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenIterating_thenFindsElements 1149s [ OK ] ListTestNonIValueBasedList.whenIterating_thenFindsElements (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenIteratingWithForeach_thenFindsElements 1149s [ OK ] ListTestNonIValueBasedList.whenIteratingWithForeach_thenFindsElements (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenOneElementList_whenErasing_thenListIsEmpty 1149s [ OK ] ListTestNonIValueBasedList.givenOneElementList_whenErasing_thenListIsEmpty (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenList_whenErasing_thenReturnsIterator 1149s [ OK ] ListTestNonIValueBasedList.givenList_whenErasing_thenReturnsIterator (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenList_whenErasingFullRange_thenIsEmpty 1149s [ OK ] ListTestNonIValueBasedList.givenList_whenErasingFullRange_thenIsEmpty (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCallingReserve_thenDoesntCrash 1149s [ OK ] ListTestNonIValueBasedList.whenCallingReserve_thenDoesntCrash (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCopyConstructingList_thenAreEqual 1149s [ OK ] ListTestNonIValueBasedList.whenCopyConstructingList_thenAreEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCopyAssigningList_thenAreEqual 1149s [ OK ] ListTestNonIValueBasedList.whenCopyAssigningList_thenAreEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenCopyingList_thenAreEqual 1149s [ OK ] ListTestNonIValueBasedList.whenCopyingList_thenAreEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenMoveConstructingList_thenNewIsCorrect 1149s [ OK ] ListTestNonIValueBasedList.whenMoveConstructingList_thenNewIsCorrect (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenMoveAssigningList_thenNewIsCorrect 1149s [ OK ] ListTestNonIValueBasedList.whenMoveAssigningList_thenNewIsCorrect (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenMoveConstructingList_thenOldIsUnchanged 1149s [ OK ] ListTestNonIValueBasedList.whenMoveConstructingList_thenOldIsUnchanged (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.whenMoveAssigningList_thenOldIsUnchanged 1149s [ OK ] ListTestNonIValueBasedList.whenMoveAssigningList_thenOldIsUnchanged (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenPostfixIncrementing_thenMovesToNextAndReturnsOldPosition 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenPostfixIncrementing_thenMovesToNextAndReturnsOldPosition (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenPrefixIncrementing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenPrefixIncrementing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenPostfixDecrementing_thenMovesToNextAndReturnsOldPosition 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenPostfixDecrementing_thenMovesToNextAndReturnsOldPosition (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenPrefixDecrementing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenPrefixDecrementing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenIncreasing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenIncreasing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenDecreasing_thenMovesToNextAndReturnsNewPosition 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenDecreasing_thenMovesToNextAndReturnsNewPosition (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenAdding_thenReturnsNewIterator 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenAdding_thenReturnsNewIterator (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenSubtracting_thenReturnsNewIterator 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenSubtracting_thenReturnsNewIterator (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenCalculatingDifference_thenReturnsCorrectNumber 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenCalculatingDifference_thenReturnsCorrectNumber (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenEqualIterators_thenAreEqual 1149s [ OK ] ListTestNonIValueBasedList.givenEqualIterators_thenAreEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenDifferentIterators_thenAreNotEqual 1149s [ OK ] ListTestNonIValueBasedList.givenDifferentIterators_thenAreNotEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenDereferencing_thenPointsToCorrectElement 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenDereferencing_thenPointsToCorrectElement (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenAssigningNewValue_thenChangesValue 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenAssigningNewValue_thenChangesValue (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenAssigningNewValueFromIterator_thenChangesValue 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenAssigningNewValueFromIterator_thenChangesValue (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenIterator_whenSwappingValuesFromIterator_thenChangesValue 1149s [ OK ] ListTestNonIValueBasedList.givenIterator_whenSwappingValuesFromIterator_thenChangesValue (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenOneElementList_whenCallingPopBack_thenIsEmpty 1149s [ OK ] ListTestNonIValueBasedList.givenOneElementList_whenCallingPopBack_thenIsEmpty (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenEmptyList_whenCallingResize_thenResizesAndSetsEmptyValue 1149s [ OK ] ListTestNonIValueBasedList.givenEmptyList_whenCallingResize_thenResizesAndSetsEmptyValue (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenEmptyList_whenCallingResizeWithValue_thenResizesAndSetsValue 1149s [ OK ] ListTestNonIValueBasedList.givenEmptyList_whenCallingResizeWithValue_thenResizesAndSetsValue (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.isReferenceType 1149s [ OK ] ListTestNonIValueBasedList.isReferenceType (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.copyHasSeparateStorage 1149s [ OK ] ListTestNonIValueBasedList.copyHasSeparateStorage (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenEqualLists_thenIsEqual 1149s [ OK ] ListTestNonIValueBasedList.givenEqualLists_thenIsEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.givenDifferentLists_thenIsNotEqual 1149s [ OK ] ListTestNonIValueBasedList.givenDifferentLists_thenIsNotEqual (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.isChecksIdentity 1149s [ OK ] ListTestNonIValueBasedList.isChecksIdentity (0 ms) 1149s [ RUN ] ListTestNonIValueBasedList.sameValueDifferentStorage_thenIsReturnsFalse 1149s [ OK ] ListTestNonIValueBasedList.sameValueDifferentStorage_thenIsReturnsFalse (0 ms) 1149s [----------] 68 tests from ListTestNonIValueBasedList (0 ms total) 1149s 1149s [----------] 4 tests from ListTest 1149s [ RUN ] ListTest.canAccessStringByReference 1149s [ OK ] ListTest.canAccessStringByReference (0 ms) 1149s [ RUN ] ListTest.canAccessOptionalStringByReference 1149s [ OK ] ListTest.canAccessOptionalStringByReference (0 ms) 1149s [ RUN ] ListTest.canAccessTensorByReference 1149s [ OK ] ListTest.canAccessTensorByReference (0 ms) 1149s [ RUN ] ListTest.toTypedList 1149s [ OK ] ListTest.toTypedList (0 ms) 1149s [----------] 4 tests from ListTest (0 ms total) 1149s 1149s [----------] Global test environment tear-down 1149s [==========] 139 tests from 3 test suites ran. (0 ms total) 1149s [ PASSED ] 139 tests. 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1149s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1149s autopkgtest: DBG: testbed command exited with code 0 1149s autopkgtest [08:29:06]: test 6_of_104__cpptest__List_test: -----------------------] 1149s autopkgtest: DBG: testbed executing test finished with exit status 0 1149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/6_of_104__cpptest__List_test-stdout 1150s autopkgtest: DBG: got reply from testbed: ok 1150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/6_of_104__cpptest__List_test-stderr 1150s autopkgtest: DBG: got reply from testbed: ok 1150s 6_of_104__cpptest__List_test PASS 1150s autopkgtest [08:29:07]: test 6_of_104__cpptest__List_test: - - - - - - - - - - results - - - - - - - - - - 1150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1150s autopkgtest: DBG: got reply from testbed: ok 1150s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/6_of_104__cpptest__List_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1150s autopkgtest: DBG: testbed command exited with code 0 1150s autopkgtest [08:29:07]: test 7_of_104__cpptest__MaybeOwned_test: preparing testbed 1150s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1150s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1150s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1150s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1150s autopkgtest: DBG: can use apt-get on testbed: True 1150s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1150s Reading package lists... 1150s Building dependency tree... 1150s Reading state information... 1151s Starting pkgProblemResolver with broken count: 0 1151s Starting 2 pkgProblemResolver with broken count: 0 1151s Done 1151s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1151s autopkgtest: DBG: testbed command exited with code 0 1151s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1151s autopkgtest: DBG: testbed command exited with code 0 1151s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1151s autopkgtest: DBG: testbed command exited with code 0 1151s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-packages.all"], kind short, sout raw, serr pipe, env [] 1151s autopkgtest: DBG: testbed command exited with code 0 1151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/7_of_104__cpptest__MaybeOwned_test-packages.all 1151s autopkgtest: DBG: got reply from testbed: ok 1151s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1152s autopkgtest: DBG: testbed command exited with code 0 1152s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1152s autopkgtest [08:29:09]: test 7_of_104__cpptest__MaybeOwned_test: /usr/lib/libtorch-test/MaybeOwned_test 1152s autopkgtest [08:29:09]: test 7_of_104__cpptest__MaybeOwned_test: [----------------------- 1152s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/7_of_104__cpptest__MaybeOwned_test-stderr --stdout=/tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/MaybeOwned_test"], kind test, sout raw, serr raw, env [] 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-artifacts 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stderr 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stdout 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/MaybeOwned_test 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.7bCPAuSQDi/out to stdout and file: /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stdout 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.7bCPAuSQDi/err to standard error and file: /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stdout 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2721 to /tmp/autopkgtest_script_pid 1152s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1152s [==========] Running 30 tests from 3 test suites. 1152s [----------] Global test environment set-up. 1152s [----------] 10 tests from MaybeOwnedTest/0, where TypeParam = c10::intrusive_ptr<(anonymous namespace)::MyString,c10::detail::intrusive_target_default_null_type<(anonymous namespace)::MyString> > 1152s [ RUN ] MaybeOwnedTest/0.SimpleDereferencingString 1152s [ OK ] MaybeOwnedTest/0.SimpleDereferencingString (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.DefaultCtor 1152s [ OK ] MaybeOwnedTest/0.DefaultCtor (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.CopyConstructor 1152s [ OK ] MaybeOwnedTest/0.CopyConstructor (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.MoveDereferencing 1152s [ OK ] MaybeOwnedTest/0.MoveDereferencing (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.MoveConstructor 1152s [ OK ] MaybeOwnedTest/0.MoveConstructor (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.CopyAssignmentIntoOwned 1152s [ OK ] MaybeOwnedTest/0.CopyAssignmentIntoOwned (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.CopyAssignmentIntoBorrowed 1152s [ OK ] MaybeOwnedTest/0.CopyAssignmentIntoBorrowed (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.MoveAssignmentIntoOwned 1152s [ OK ] MaybeOwnedTest/0.MoveAssignmentIntoOwned (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.MoveAssignmentIntoBorrowed 1152s [ OK ] MaybeOwnedTest/0.MoveAssignmentIntoBorrowed (0 ms) 1152s [ RUN ] MaybeOwnedTest/0.SelfAssignment 1152s [ OK ] MaybeOwnedTest/0.SelfAssignment (0 ms) 1152s [----------] 10 tests from MaybeOwnedTest/0 (0 ms total) 1152s 1152s [----------] 10 tests from MaybeOwnedTest/1, where TypeParam = at::Tensor 1152s [ RUN ] MaybeOwnedTest/1.SimpleDereferencingString 1152s [ OK ] MaybeOwnedTest/1.SimpleDereferencingString (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.DefaultCtor 1152s [ OK ] MaybeOwnedTest/1.DefaultCtor (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.CopyConstructor 1152s [ OK ] MaybeOwnedTest/1.CopyConstructor (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.MoveDereferencing 1152s [ OK ] MaybeOwnedTest/1.MoveDereferencing (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.MoveConstructor 1152s [ OK ] MaybeOwnedTest/1.MoveConstructor (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.CopyAssignmentIntoOwned 1152s [ OK ] MaybeOwnedTest/1.CopyAssignmentIntoOwned (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.CopyAssignmentIntoBorrowed 1152s [ OK ] MaybeOwnedTest/1.CopyAssignmentIntoBorrowed (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.MoveAssignmentIntoOwned 1152s [ OK ] MaybeOwnedTest/1.MoveAssignmentIntoOwned (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.MoveAssignmentIntoBorrowed 1152s [ OK ] MaybeOwnedTest/1.MoveAssignmentIntoBorrowed (0 ms) 1152s [ RUN ] MaybeOwnedTest/1.SelfAssignment 1152s [ OK ] MaybeOwnedTest/1.SelfAssignment (0 ms) 1152s [----------] 10 tests from MaybeOwnedTest/1 (0 ms total) 1152s 1152s [----------] 10 tests from MaybeOwnedTest/2, where TypeParam = c10::IValue 1152s [ RUN ] MaybeOwnedTest/2.SimpleDereferencingString 1152s [ OK ] MaybeOwnedTest/2.SimpleDereferencingString (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.DefaultCtor 1152s [ OK ] MaybeOwnedTest/2.DefaultCtor (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.CopyConstructor 1152s [ OK ] MaybeOwnedTest/2.CopyConstructor (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.MoveDereferencing 1152s [ OK ] MaybeOwnedTest/2.MoveDereferencing (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.MoveConstructor 1152s [ OK ] MaybeOwnedTest/2.MoveConstructor (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.CopyAssignmentIntoOwned 1152s [ OK ] MaybeOwnedTest/2.CopyAssignmentIntoOwned (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.CopyAssignmentIntoBorrowed 1152s [ OK ] MaybeOwnedTest/2.CopyAssignmentIntoBorrowed (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.MoveAssignmentIntoOwned 1152s [ OK ] MaybeOwnedTest/2.MoveAssignmentIntoOwned (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.MoveAssignmentIntoBorrowed 1152s [ OK ] MaybeOwnedTest/2.MoveAssignmentIntoBorrowed (0 ms) 1152s [ RUN ] MaybeOwnedTest/2.SelfAssignment 1152s [ OK ] MaybeOwnedTest/2.SelfAssignment (0 ms) 1152s [----------] 10 tests from MaybeOwnedTest/2 (0 ms total) 1152s 1152s [----------] Global test environment tear-down 1152s [==========] 30 tests from 3 test suites ran. (0 ms total) 1152s [ PASSED ] 30 tests. 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1152s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1152s autopkgtest: DBG: testbed command exited with code 0 1152s autopkgtest [08:29:09]: test 7_of_104__cpptest__MaybeOwned_test: -----------------------] 1152s autopkgtest: DBG: testbed executing test finished with exit status 0 1152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/7_of_104__cpptest__MaybeOwned_test-stdout 1152s autopkgtest: DBG: got reply from testbed: ok 1152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/7_of_104__cpptest__MaybeOwned_test-stderr 1153s autopkgtest: DBG: got reply from testbed: ok 1153s 7_of_104__cpptest__MaybeOwned_test PASS 1153s autopkgtest [08:29:10]: test 7_of_104__cpptest__MaybeOwned_test: - - - - - - - - - - results - - - - - - - - - - 1153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1153s autopkgtest: DBG: got reply from testbed: ok 1153s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/7_of_104__cpptest__MaybeOwned_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1153s autopkgtest: DBG: testbed command exited with code 0 1153s autopkgtest [08:29:10]: test 8_of_104__cpptest__NamedTensor_test: preparing testbed 1153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1153s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1153s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1153s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1153s autopkgtest: DBG: can use apt-get on testbed: True 1153s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1153s Reading package lists... 1153s Building dependency tree... 1153s Reading state information... 1153s Starting pkgProblemResolver with broken count: 0 1153s Starting 2 pkgProblemResolver with broken count: 0 1153s Done 1154s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1154s autopkgtest: DBG: testbed command exited with code 0 1154s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1154s autopkgtest: DBG: testbed command exited with code 0 1154s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1154s autopkgtest: DBG: testbed command exited with code 0 1154s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1154s autopkgtest: DBG: testbed command exited with code 0 1154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/8_of_104__cpptest__NamedTensor_test-packages.all 1154s autopkgtest: DBG: got reply from testbed: ok 1154s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1154s autopkgtest: DBG: testbed command exited with code 0 1154s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1154s autopkgtest [08:29:11]: test 8_of_104__cpptest__NamedTensor_test: /usr/lib/libtorch-test/NamedTensor_test 1154s autopkgtest [08:29:11]: test 8_of_104__cpptest__NamedTensor_test: [----------------------- 1154s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/8_of_104__cpptest__NamedTensor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/NamedTensor_test"], kind test, sout raw, serr raw, env [] 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-artifacts 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stderr 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stdout 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/NamedTensor_test 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.QB8e1kTSv9/out to stdout and file: /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stdout 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.QB8e1kTSv9/err to standard error and file: /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stdout 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 2874 to /tmp/autopkgtest_script_pid 1155s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1155s [==========] Running 10 tests from 1 test suite. 1155s [----------] Global test environment set-up. 1155s [----------] 10 tests from NamedTensorTest 1155s [ RUN ] NamedTensorTest.isNamed 1155s [ OK ] NamedTensorTest.isNamed (0 ms) 1155s [ RUN ] NamedTensorTest.attachMetadata 1155s [ OK ] NamedTensorTest.attachMetadata (0 ms) 1155s [ RUN ] NamedTensorTest.internalSetNamesInplace 1155s [ OK ] NamedTensorTest.internalSetNamesInplace (0 ms) 1155s [ RUN ] NamedTensorTest.empty 1155s [ OK ] NamedTensorTest.empty (0 ms) 1155s [ RUN ] NamedTensorTest.dimnameToPosition 1155s [ OK ] NamedTensorTest.dimnameToPosition (0 ms) 1155s [ RUN ] NamedTensorTest.unifyFromRight 1155s [ OK ] NamedTensorTest.unifyFromRight (0 ms) 1155s [ RUN ] NamedTensorTest.alias 1155s [ OK ] NamedTensorTest.alias (0 ms) 1155s [ RUN ] NamedTensorTest.NoNamesGuard 1155s [ OK ] NamedTensorTest.NoNamesGuard (0 ms) 1155s [ RUN ] NamedTensorTest.TensorNamePrint 1155s [ OK ] NamedTensorTest.TensorNamePrint (0 ms) 1155s [ RUN ] NamedTensorTest.TensorNamesCheckUnique 1155s [ OK ] NamedTensorTest.TensorNamesCheckUnique (0 ms) 1155s [----------] 10 tests from NamedTensorTest (0 ms total) 1155s 1155s [----------] Global test environment tear-down 1155s [==========] 10 tests from 1 test suite ran. (0 ms total) 1155s [ PASSED ] 10 tests. 1155s [W219 08:29:12.898929416 TensorImpl.h:1935] Warning: Named tensors and all their associated APIs are an experimental feature and subject to change. Please do not use them for anything important until they are released as stable. (function operator()) 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1155s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1155s autopkgtest: DBG: testbed command exited with code 0 1155s autopkgtest [08:29:12]: test 8_of_104__cpptest__NamedTensor_test: -----------------------] 1155s autopkgtest: DBG: testbed executing test finished with exit status 0 1155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/8_of_104__cpptest__NamedTensor_test-stdout 1155s autopkgtest: DBG: got reply from testbed: ok 1155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/8_of_104__cpptest__NamedTensor_test-stderr 1156s autopkgtest: DBG: got reply from testbed: ok 1156s 8_of_104__cpptest__NamedTensor_test PASS 1156s autopkgtest [08:29:13]: test 8_of_104__cpptest__NamedTensor_test: - - - - - - - - - - results - - - - - - - - - - 1156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1156s autopkgtest: DBG: got reply from testbed: ok 1156s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/8_of_104__cpptest__NamedTensor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1156s autopkgtest: DBG: testbed command exited with code 0 1156s autopkgtest [08:29:13]: test 9_of_104__cpptest__StorageUtils_test: preparing testbed 1156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1156s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1156s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1156s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1156s autopkgtest: DBG: can use apt-get on testbed: True 1156s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1156s Reading package lists... 1156s Building dependency tree... 1156s Reading state information... 1156s Starting pkgProblemResolver with broken count: 0 1156s Starting 2 pkgProblemResolver with broken count: 0 1156s Done 1157s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1157s autopkgtest: DBG: testbed command exited with code 0 1157s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1157s autopkgtest: DBG: testbed command exited with code 0 1157s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1157s autopkgtest: DBG: testbed command exited with code 0 1157s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-packages.all"], kind short, sout raw, serr pipe, env [] 1157s autopkgtest: DBG: testbed command exited with code 0 1157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/9_of_104__cpptest__StorageUtils_test-packages.all 1157s autopkgtest: DBG: got reply from testbed: ok 1157s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1157s autopkgtest: DBG: testbed command exited with code 0 1157s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1157s autopkgtest [08:29:14]: test 9_of_104__cpptest__StorageUtils_test: /usr/lib/libtorch-test/StorageUtils_test 1157s autopkgtest [08:29:14]: test 9_of_104__cpptest__StorageUtils_test: [----------------------- 1157s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/9_of_104__cpptest__StorageUtils_test-stderr --stdout=/tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/StorageUtils_test"], kind test, sout raw, serr raw, env [] 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-artifacts 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stderr 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stdout 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/StorageUtils_test 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.FpO3RQpGwZ/out to stdout and file: /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stdout 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.FpO3RQpGwZ/err to standard error and file: /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stdout 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3027 to /tmp/autopkgtest_script_pid 1158s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1158s [==========] Running 1 test from 1 test suite. 1158s [----------] Global test environment set-up. 1158s [----------] 1 test from StorageUtilsTest 1158s [ RUN ] StorageUtilsTest.shm_storage_refcount 1158s [ OK ] StorageUtilsTest.shm_storage_refcount (0 ms) 1158s [----------] 1 test from StorageUtilsTest (0 ms total) 1158s 1158s [----------] Global test environment tear-down 1158s [==========] 1 test from 1 test suite ran. (0 ms total) 1158s [ PASSED ] 1 test. 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1158s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1158s autopkgtest: DBG: testbed command exited with code 0 1158s autopkgtest [08:29:15]: test 9_of_104__cpptest__StorageUtils_test: -----------------------] 1158s autopkgtest: DBG: testbed executing test finished with exit status 0 1158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/9_of_104__cpptest__StorageUtils_test-stdout 1158s autopkgtest: DBG: got reply from testbed: ok 1158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/9_of_104__cpptest__StorageUtils_test-stderr 1158s autopkgtest: DBG: got reply from testbed: ok 1159s autopkgtest [08:29:16]: test 9_of_104__cpptest__StorageUtils_test: - - - - - - - - - - results - - - - - - - - - - 1159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1159s 9_of_104__cpptest__StorageUtils_test PASS 1159s autopkgtest: DBG: got reply from testbed: ok 1159s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/9_of_104__cpptest__StorageUtils_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1159s autopkgtest: DBG: testbed command exited with code 0 1159s autopkgtest [08:29:16]: test 10_of_104__cpptest__apply_utils_test: preparing testbed 1159s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1159s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1159s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1159s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1159s autopkgtest: DBG: can use apt-get on testbed: True 1159s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1159s Reading package lists... 1159s Building dependency tree... 1159s Reading state information... 1159s Starting pkgProblemResolver with broken count: 0 1159s Starting 2 pkgProblemResolver with broken count: 0 1159s Done 1160s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1160s autopkgtest: DBG: testbed command exited with code 0 1160s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1160s autopkgtest: DBG: testbed command exited with code 0 1160s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1160s autopkgtest: DBG: testbed command exited with code 0 1160s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-packages.all"], kind short, sout raw, serr pipe, env [] 1160s autopkgtest: DBG: testbed command exited with code 0 1160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/10_of_104__cpptest__apply_utils_test-packages.all 1160s autopkgtest: DBG: got reply from testbed: ok 1160s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1160s autopkgtest: DBG: testbed command exited with code 0 1160s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1160s autopkgtest [08:29:17]: test 10_of_104__cpptest__apply_utils_test: /usr/lib/libtorch-test/apply_utils_test 1160s autopkgtest [08:29:17]: test 10_of_104__cpptest__apply_utils_test: [----------------------- 1160s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/10_of_104__cpptest__apply_utils_test-stderr --stdout=/tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/apply_utils_test"], kind test, sout raw, serr raw, env [] 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-artifacts 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stderr 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stdout 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/apply_utils_test 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.e8MyTmS4n4/out to stdout and file: /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stdout 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.e8MyTmS4n4/err to standard error and file: /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stdout 1160s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3180 to /tmp/autopkgtest_script_pid 1161s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1161s [==========] Running 6 tests from 1 test suite. 1161s [----------] Global test environment set-up. 1161s [----------] 6 tests from ApplyUtilsTest 1161s [ RUN ] ApplyUtilsTest.Contiguous2D 1161s [ OK ] ApplyUtilsTest.Contiguous2D (0 ms) 1161s [ RUN ] ApplyUtilsTest.Small2D 1161s [ OK ] ApplyUtilsTest.Small2D (0 ms) 1161s [ RUN ] ApplyUtilsTest._2D 1161s [ OK ] ApplyUtilsTest._2D (0 ms) 1161s [ RUN ] ApplyUtilsTest._3D 1161s [ OK ] ApplyUtilsTest._3D (0 ms) 1161s [ RUN ] ApplyUtilsTest.Medium3D 1161s [ OK ] ApplyUtilsTest.Medium3D (1 ms) 1161s [ RUN ] ApplyUtilsTest._10D 1161s [ OK ] ApplyUtilsTest._10D (74 ms) 1161s [----------] 6 tests from ApplyUtilsTest (76 ms total) 1161s 1161s [----------] Global test environment tear-down 1161s [==========] 6 tests from 1 test suite ran. (76 ms total) 1161s [ PASSED ] 6 tests. 1161s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1161s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1161s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1161s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1161s autopkgtest: DBG: testbed command exited with code 0 1161s autopkgtest [08:29:18]: test 10_of_104__cpptest__apply_utils_test: -----------------------] 1161s autopkgtest: DBG: testbed executing test finished with exit status 0 1161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/10_of_104__cpptest__apply_utils_test-stdout 1161s autopkgtest: DBG: got reply from testbed: ok 1161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/10_of_104__cpptest__apply_utils_test-stderr 1161s autopkgtest: DBG: got reply from testbed: ok 1162s autopkgtest [08:29:19]: test 10_of_104__cpptest__apply_utils_test: - - - - - - - - - - results - - - - - - - - - - 1162s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1162s 10_of_104__cpptest__apply_utils_test PASS 1162s autopkgtest: DBG: got reply from testbed: ok 1162s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/10_of_104__cpptest__apply_utils_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1162s autopkgtest: DBG: testbed command exited with code 0 1162s autopkgtest [08:29:19]: test 11_of_104__cpptest__atest: preparing testbed 1162s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1162s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1162s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1162s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1162s autopkgtest: DBG: can use apt-get on testbed: True 1162s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1162s Reading package lists... 1162s Building dependency tree... 1162s Reading state information... 1162s Starting pkgProblemResolver with broken count: 0 1162s Starting 2 pkgProblemResolver with broken count: 0 1162s Done 1162s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1162s autopkgtest: DBG: testbed command exited with code 0 1162s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1163s autopkgtest: DBG: testbed command exited with code 0 1163s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1163s autopkgtest: DBG: testbed command exited with code 0 1163s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-packages.all"], kind short, sout raw, serr pipe, env [] 1163s autopkgtest: DBG: testbed command exited with code 0 1163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-packages.all /tmp/autopkgtest-work.z8qos2ju/out/11_of_104__cpptest__atest-packages.all 1163s autopkgtest: DBG: got reply from testbed: ok 1163s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1163s autopkgtest: DBG: testbed command exited with code 0 1163s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1163s autopkgtest [08:29:20]: test 11_of_104__cpptest__atest: /usr/lib/libtorch-test/atest 1163s autopkgtest [08:29:20]: test 11_of_104__cpptest__atest: [----------------------- 1163s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/11_of_104__cpptest__atest-stderr --stdout=/tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/atest"], kind test, sout raw, serr raw, env [] 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-artifacts 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stderr 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stdout 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/atest 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.RVyI6V1SJ1/out to stdout and file: /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stdout 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.RVyI6V1SJ1/err to standard error and file: /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stdout 1163s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3333 to /tmp/autopkgtest_script_pid 1164s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1164s [==========] Running 16 tests from 1 test suite. 1164s [----------] Global test environment set-up. 1164s [----------] 16 tests from atest 1164s [ RUN ] atest.operators 1164s [ OK ] atest.operators (0 ms) 1164s [ RUN ] atest.logical_and_operators 1164s [ OK ] atest.logical_and_operators (0 ms) 1164s [ RUN ] atest.logical_or_operators 1164s [ OK ] atest.logical_or_operators (0 ms) 1164s [ RUN ] atest.logical_xor_operators 1164s [ OK ] atest.logical_xor_operators (0 ms) 1164s [ RUN ] atest.lt_operators 1164s [ OK ] atest.lt_operators (0 ms) 1164s [ RUN ] atest.le_operators 1164s [ OK ] atest.le_operators (0 ms) 1164s [ RUN ] atest.gt_operators 1164s [ OK ] atest.gt_operators (0 ms) 1164s [ RUN ] atest.ge_operators 1164s [ OK ] atest.ge_operators (0 ms) 1164s [ RUN ] atest.eq_operators 1164s [ OK ] atest.eq_operators (0 ms) 1164s [ RUN ] atest.ne_operators 1164s [ OK ] atest.ne_operators (0 ms) 1164s [ RUN ] atest.add_operators 1164s [ OK ] atest.add_operators (0 ms) 1164s [ RUN ] atest.max_operators 1164s [ OK ] atest.max_operators (0 ms) 1164s [ RUN ] atest.min_operators 1164s [ OK ] atest.min_operators (0 ms) 1164s [ RUN ] atest.sigmoid_backward_operator 1164s [ OK ] atest.sigmoid_backward_operator (0 ms) 1164s [ RUN ] atest.fmod_tensor_operators 1164s [ OK ] atest.fmod_tensor_operators (0 ms) 1164s [ RUN ] atest.atest 1164s [ OK ] atest.atest (0 ms) 1164s [----------] 16 tests from atest (1 ms total) 1164s 1164s [----------] Global test environment tear-down 1164s [==========] 16 tests from 1 test suite ran. (1 ms total) 1164s [ PASSED ] 16 tests. 1164s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1164s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1164s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1164s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1164s autopkgtest: DBG: testbed command exited with code 0 1164s autopkgtest [08:29:21]: test 11_of_104__cpptest__atest: -----------------------] 1164s autopkgtest: DBG: testbed executing test finished with exit status 0 1164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stdout /tmp/autopkgtest-work.z8qos2ju/out/11_of_104__cpptest__atest-stdout 1164s autopkgtest: DBG: got reply from testbed: ok 1164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-stderr /tmp/autopkgtest-work.z8qos2ju/out/11_of_104__cpptest__atest-stderr 1164s autopkgtest: DBG: got reply from testbed: ok 1164s 11_of_104__cpptest__atest PASS 1164s autopkgtest [08:29:21]: test 11_of_104__cpptest__atest: - - - - - - - - - - results - - - - - - - - - - 1164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1165s autopkgtest: DBG: got reply from testbed: ok 1165s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/11_of_104__cpptest__atest-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1165s autopkgtest: DBG: testbed command exited with code 0 1165s autopkgtest [08:29:22]: test 12_of_104__cpptest__backend_fallback_test: preparing testbed 1165s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1165s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1165s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1165s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1165s autopkgtest: DBG: can use apt-get on testbed: True 1165s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1165s Reading package lists... 1165s Building dependency tree... 1165s Reading state information... 1165s Starting pkgProblemResolver with broken count: 0 1165s Starting 2 pkgProblemResolver with broken count: 0 1165s Done 1165s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1165s autopkgtest: DBG: testbed command exited with code 0 1165s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1166s autopkgtest: DBG: testbed command exited with code 0 1166s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1166s autopkgtest: DBG: testbed command exited with code 0 1166s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-packages.all"], kind short, sout raw, serr pipe, env [] 1166s autopkgtest: DBG: testbed command exited with code 0 1166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/12_of_104__cpptest__backend_fallback_test-packages.all 1166s autopkgtest: DBG: got reply from testbed: ok 1166s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1166s autopkgtest: DBG: testbed command exited with code 0 1166s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1166s autopkgtest [08:29:23]: test 12_of_104__cpptest__backend_fallback_test: /usr/lib/libtorch-test/backend_fallback_test 1166s autopkgtest [08:29:23]: test 12_of_104__cpptest__backend_fallback_test: [----------------------- 1166s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/12_of_104__cpptest__backend_fallback_test-stderr --stdout=/tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/backend_fallback_test"], kind test, sout raw, serr raw, env [] 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-artifacts 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stderr 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stdout 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/backend_fallback_test 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Vl5wqL7mB6/out to stdout and file: /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stdout 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Vl5wqL7mB6/err to standard error and file: /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stdout 1166s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3486 to /tmp/autopkgtest_script_pid 1167s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1167s [==========] Running 3 tests from 1 test suite. 1167s [----------] Global test environment set-up. 1167s [----------] 3 tests from BackendFallbackTest 1167s [ RUN ] BackendFallbackTest.TestBackendFallbackWithMode 1167s [ OK ] BackendFallbackTest.TestBackendFallbackWithMode (1 ms) 1167s [ RUN ] BackendFallbackTest.TestBackendFallbackWithWrapper 1167s [ OK ] BackendFallbackTest.TestBackendFallbackWithWrapper (1 ms) 1167s [ RUN ] BackendFallbackTest.TestFallthroughBackendFallback 1167s [ OK ] BackendFallbackTest.TestFallthroughBackendFallback (1 ms) 1167s [----------] 3 tests from BackendFallbackTest (4 ms total) 1167s 1167s [----------] Global test environment tear-down 1167s [==========] 3 tests from 1 test suite ran. (4 ms total) 1167s [ PASSED ] 3 tests. 1167s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1167s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1167s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1167s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1167s autopkgtest: DBG: testbed command exited with code 0 1167s autopkgtest [08:29:24]: test 12_of_104__cpptest__backend_fallback_test: -----------------------] 1167s autopkgtest: DBG: testbed executing test finished with exit status 0 1167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/12_of_104__cpptest__backend_fallback_test-stdout 1167s autopkgtest: DBG: got reply from testbed: ok 1167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/12_of_104__cpptest__backend_fallback_test-stderr 1167s autopkgtest: DBG: got reply from testbed: ok 1167s 12_of_104__cpptest__backend_fallback_test PASS 1167s autopkgtest [08:29:24]: test 12_of_104__cpptest__backend_fallback_test: - - - - - - - - - - results - - - - - - - - - - 1167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1168s autopkgtest: DBG: got reply from testbed: ok 1168s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/12_of_104__cpptest__backend_fallback_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1168s autopkgtest: DBG: testbed command exited with code 0 1168s autopkgtest [08:29:25]: test 13_of_104__cpptest__basic: preparing testbed 1168s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1168s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1168s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1168s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1168s autopkgtest: DBG: can use apt-get on testbed: True 1168s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1168s Reading package lists... 1168s Building dependency tree... 1168s Reading state information... 1168s Starting pkgProblemResolver with broken count: 0 1168s Starting 2 pkgProblemResolver with broken count: 0 1168s Done 1168s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1168s autopkgtest: DBG: testbed command exited with code 0 1168s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1169s autopkgtest: DBG: testbed command exited with code 0 1169s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1169s autopkgtest: DBG: testbed command exited with code 0 1169s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-packages.all"], kind short, sout raw, serr pipe, env [] 1169s autopkgtest: DBG: testbed command exited with code 0 1169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-packages.all /tmp/autopkgtest-work.z8qos2ju/out/13_of_104__cpptest__basic-packages.all 1169s autopkgtest: DBG: got reply from testbed: ok 1169s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1169s autopkgtest: DBG: testbed command exited with code 0 1169s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1169s autopkgtest [08:29:26]: test 13_of_104__cpptest__basic: /usr/lib/libtorch-test/basic 1169s autopkgtest [08:29:26]: test 13_of_104__cpptest__basic: [----------------------- 1169s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/13_of_104__cpptest__basic-stderr --stdout=/tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/basic"], kind test, sout raw, serr raw, env [] 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-artifacts 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stderr 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stdout 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/basic 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.GMNwiuiTQn/out to stdout and file: /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stdout 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.GMNwiuiTQn/err to standard error and file: /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stdout 1169s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3640 to /tmp/autopkgtest_script_pid 1170s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1170s [==========] Running 5 tests from 1 test suite. 1170s [----------] Global test environment set-up. 1170s [----------] 5 tests from BasicTest 1170s [ RUN ] BasicTest.BasicTestCPU 1170s 3 ms 1170s 0 ms 1170s 0 ms 1170s [ OK ] BasicTest.BasicTestCPU (6 ms) 1170s [ RUN ] BasicTest.BasicTestHalfCPU 1170s 1 ms 1170s 0 ms 1170s 1 ms 1170s [ OK ] BasicTest.BasicTestHalfCPU (4 ms) 1170s [ RUN ] BasicTest.BasicTestCUDA 1170s [ OK ] BasicTest.BasicTestCUDA (0 ms) 1170s [ RUN ] BasicTest.FactoryMethodsTest 1170s [ OK ] BasicTest.FactoryMethodsTest (0 ms) 1170s [ RUN ] BasicTest.BasicStdTestCPU 1170s Simple example: called once 1170s throw: call_once will retry 1170s throw: call_once will retry 1170s Didn't throw, call_once will not attempt again 1170s [ OK ] BasicTest.BasicStdTestCPU (0 ms) 1170s [----------] 5 tests from BasicTest (10 ms total) 1170s 1170s [----------] Global test environment tear-down 1170s [==========] 5 tests from 1 test suite ran. (10 ms total) 1170s [ PASSED ] 5 tests. 1170s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1170s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1170s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1170s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1170s autopkgtest: DBG: testbed command exited with code 0 1170s autopkgtest [08:29:27]: test 13_of_104__cpptest__basic: -----------------------] 1170s autopkgtest: DBG: testbed executing test finished with exit status 0 1170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stdout /tmp/autopkgtest-work.z8qos2ju/out/13_of_104__cpptest__basic-stdout 1170s autopkgtest: DBG: got reply from testbed: ok 1170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-stderr /tmp/autopkgtest-work.z8qos2ju/out/13_of_104__cpptest__basic-stderr 1170s autopkgtest: DBG: got reply from testbed: ok 1170s autopkgtest [08:29:27]: test 13_of_104__cpptest__basic: - - - - - - - - - - results - - - - - - - - - - 1170s 13_of_104__cpptest__basic PASS 1170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1170s autopkgtest: DBG: got reply from testbed: ok 1170s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/13_of_104__cpptest__basic-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest [08:29:28]: test 14_of_104__cpptest__broadcast_test: preparing testbed 1171s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1171s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1171s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1171s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1171s autopkgtest: DBG: can use apt-get on testbed: True 1171s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1171s Reading package lists... 1171s Building dependency tree... 1171s Reading state information... 1171s Starting pkgProblemResolver with broken count: 0 1171s Starting 2 pkgProblemResolver with broken count: 0 1171s Done 1171s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1171s autopkgtest: DBG: testbed command exited with code 0 1171s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1172s autopkgtest: DBG: testbed command exited with code 0 1172s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-packages.all"], kind short, sout raw, serr pipe, env [] 1172s autopkgtest: DBG: testbed command exited with code 0 1172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/14_of_104__cpptest__broadcast_test-packages.all 1172s autopkgtest: DBG: got reply from testbed: ok 1172s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1172s autopkgtest: DBG: testbed command exited with code 0 1172s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1172s autopkgtest [08:29:29]: test 14_of_104__cpptest__broadcast_test: /usr/lib/libtorch-test/broadcast_test 1172s autopkgtest [08:29:29]: test 14_of_104__cpptest__broadcast_test: [----------------------- 1172s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/14_of_104__cpptest__broadcast_test-stderr --stdout=/tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/broadcast_test"], kind test, sout raw, serr raw, env [] 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-artifacts 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stderr 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stdout 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/broadcast_test 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.bgo1kqvtQ5/out to stdout and file: /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stdout 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.bgo1kqvtQ5/err to standard error and file: /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stdout 1172s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3802 to /tmp/autopkgtest_script_pid 1172s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1172s [==========] Running 1 test from 1 test suite. 1172s [----------] Global test environment set-up. 1172s [----------] 1 test from BroadcastTest 1172s [ RUN ] BroadcastTest.Broadcast 1172s [ OK ] BroadcastTest.Broadcast (0 ms) 1172s [----------] 1 test from BroadcastTest (1 ms total) 1172s 1172s [----------] Global test environment tear-down 1172s [==========] 1 test from 1 test suite ran. (1 ms total) 1172s [ PASSED ] 1 test. 1173s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1173s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1173s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1173s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1173s autopkgtest: DBG: testbed command exited with code 0 1173s autopkgtest [08:29:30]: test 14_of_104__cpptest__broadcast_test: -----------------------] 1173s autopkgtest: DBG: testbed executing test finished with exit status 0 1173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/14_of_104__cpptest__broadcast_test-stdout 1173s autopkgtest: DBG: got reply from testbed: ok 1173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/14_of_104__cpptest__broadcast_test-stderr 1173s autopkgtest: DBG: got reply from testbed: ok 1173s autopkgtest [08:29:30]: test 14_of_104__cpptest__broadcast_test: - - - - - - - - - - results - - - - - - - - - - 1173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1173s 14_of_104__cpptest__broadcast_test PASS 1173s autopkgtest: DBG: got reply from testbed: ok 1173s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/14_of_104__cpptest__broadcast_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest [08:29:31]: test 15_of_104__cpptest__c10_Bitset_test: preparing testbed 1174s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1174s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1174s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1174s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1174s autopkgtest: DBG: can use apt-get on testbed: True 1174s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1174s Reading package lists... 1174s Building dependency tree... 1174s Reading state information... 1174s Starting pkgProblemResolver with broken count: 0 1174s Starting 2 pkgProblemResolver with broken count: 0 1174s Done 1174s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1174s autopkgtest: DBG: testbed command exited with code 0 1174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-packages.all"], kind short, sout raw, serr pipe, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/15_of_104__cpptest__c10_Bitset_test-packages.all 1175s autopkgtest: DBG: got reply from testbed: ok 1175s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1175s autopkgtest: DBG: testbed command exited with code 0 1175s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1175s autopkgtest [08:29:32]: test 15_of_104__cpptest__c10_Bitset_test: /usr/lib/libtorch-test/c10_Bitset_test 1175s autopkgtest [08:29:32]: test 15_of_104__cpptest__c10_Bitset_test: [----------------------- 1175s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/15_of_104__cpptest__c10_Bitset_test-stderr --stdout=/tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_Bitset_test"], kind test, sout raw, serr raw, env [] 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-artifacts 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stderr 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stdout 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_Bitset_test 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ONxrbAPju6/out to stdout and file: /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stdout 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ONxrbAPju6/err to standard error and file: /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stdout 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 3955 to /tmp/autopkgtest_script_pid 1175s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1175s [==========] Running 12 tests from 1 test suite. 1175s [----------] Global test environment set-up. 1175s [----------] 12 tests from BitsetTest 1175s [ RUN ] BitsetTest.givenEmptyBitset_whenGettingBit_thenIsZero 1175s [ OK ] BitsetTest.givenEmptyBitset_whenGettingBit_thenIsZero (0 ms) 1175s [ RUN ] BitsetTest.givenEmptyBitset_whenUnsettingBit_thenIsZero 1175s [ OK ] BitsetTest.givenEmptyBitset_whenUnsettingBit_thenIsZero (0 ms) 1175s [ RUN ] BitsetTest.givenEmptyBitset_whenSettingAndUnsettingBit_thenIsZero 1175s [ OK ] BitsetTest.givenEmptyBitset_whenSettingAndUnsettingBit_thenIsZero (0 ms) 1175s [ RUN ] BitsetTest.givenEmptyBitset_whenSettingBit_thenIsSet 1175s [ OK ] BitsetTest.givenEmptyBitset_whenSettingBit_thenIsSet (0 ms) 1175s [ RUN ] BitsetTest.givenEmptyBitset_whenSettingBit_thenOthersStayUnset 1175s [ OK ] BitsetTest.givenEmptyBitset_whenSettingBit_thenOthersStayUnset (0 ms) 1175s [ RUN ] BitsetTest.givenNonemptyBitset_whenSettingBit_thenIsSet 1175s [ OK ] BitsetTest.givenNonemptyBitset_whenSettingBit_thenIsSet (0 ms) 1175s [ RUN ] BitsetTest.givenNonemptyBitset_whenSettingBit_thenOthersStayAtOldValue 1175s [ OK ] BitsetTest.givenNonemptyBitset_whenSettingBit_thenOthersStayAtOldValue (0 ms) 1175s [ RUN ] BitsetTest.givenNonemptyBitset_whenUnsettingBit_thenIsUnset 1175s [ OK ] BitsetTest.givenNonemptyBitset_whenUnsettingBit_thenIsUnset (0 ms) 1175s [ RUN ] BitsetTest.givenNonemptyBitset_whenUnsettingBit_thenOthersStayAtOldValue 1175s [ OK ] BitsetTest.givenNonemptyBitset_whenUnsettingBit_thenOthersStayAtOldValue (0 ms) 1175s [ RUN ] BitsetTest.givenEmptyBitset_whenCallingForEachBit_thenDoesntCall 1175s [ OK ] BitsetTest.givenEmptyBitset_whenCallingForEachBit_thenDoesntCall (0 ms) 1175s [ RUN ] BitsetTest.givenBitsetWithOneBitSet_whenCallingForEachBit_thenCallsForEachBit 1175s [ OK ] BitsetTest.givenBitsetWithOneBitSet_whenCallingForEachBit_thenCallsForEachBit (0 ms) 1175s [ RUN ] BitsetTest.givenBitsetWithMultipleBitsSet_whenCallingForEachBit_thenCallsForEachBit 1175s [ OK ] BitsetTest.givenBitsetWithMultipleBitsSet_whenCallingForEachBit_thenCallsForEachBit (0 ms) 1175s [----------] 12 tests from BitsetTest (0 ms total) 1175s 1175s [----------] Global test environment tear-down 1175s [==========] 12 tests from 1 test suite ran. (0 ms total) 1175s [ PASSED ] 12 tests. 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1175s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1175s autopkgtest: DBG: testbed command exited with code 0 1176s autopkgtest [08:29:33]: test 15_of_104__cpptest__c10_Bitset_test: -----------------------] 1176s autopkgtest: DBG: testbed executing test finished with exit status 0 1176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/15_of_104__cpptest__c10_Bitset_test-stdout 1176s autopkgtest: DBG: got reply from testbed: ok 1176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/15_of_104__cpptest__c10_Bitset_test-stderr 1176s autopkgtest: DBG: got reply from testbed: ok 1176s autopkgtest [08:29:33]: test 15_of_104__cpptest__c10_Bitset_test: - - - - - - - - - - results - - - - - - - - - - 1176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1176s 15_of_104__cpptest__c10_Bitset_test PASS 1176s autopkgtest: DBG: got reply from testbed: ok 1176s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/15_of_104__cpptest__c10_Bitset_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1176s autopkgtest: DBG: testbed command exited with code 0 1176s autopkgtest [08:29:33]: test 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test: preparing testbed 1176s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1176s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1176s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1176s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1176s autopkgtest: DBG: can use apt-get on testbed: True 1176s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1176s Reading package lists... 1177s Building dependency tree... 1177s Reading state information... 1177s Starting pkgProblemResolver with broken count: 0 1177s Starting 2 pkgProblemResolver with broken count: 0 1177s Done 1177s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1177s autopkgtest: DBG: testbed command exited with code 0 1177s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1177s autopkgtest: DBG: testbed command exited with code 0 1177s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1177s autopkgtest: DBG: testbed command exited with code 0 1177s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-packages.all"], kind short, sout raw, serr pipe, env [] 1177s autopkgtest: DBG: testbed command exited with code 0 1177s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-packages.all 1178s autopkgtest: DBG: got reply from testbed: ok 1178s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1178s autopkgtest: DBG: testbed command exited with code 0 1178s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1178s autopkgtest [08:29:35]: test 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test: /usr/lib/libtorch-test/c10_CompileTimeFunctionPointer_test 1178s autopkgtest [08:29:35]: test 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test: [----------------------- 1178s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stderr --stdout=/tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_CompileTimeFunctionPointer_test"], kind test, sout raw, serr raw, env [] 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-artifacts 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stderr 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stdout 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_CompileTimeFunctionPointer_test 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.zYsQfE0tcm/out to stdout and file: /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stdout 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.zYsQfE0tcm/err to standard error and file: /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stdout 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 4108 to /tmp/autopkgtest_script_pid 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1178s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1178s [==========] Running 2 tests from 1 test suite. 1178s [----------] Global test environment set-up. 1178s [----------] 2 tests from CompileTimeFunctionPointerTest 1178s [ RUN ] CompileTimeFunctionPointerTest.runFunctionThroughType 1178s [ OK ] CompileTimeFunctionPointerTest.runFunctionThroughType (0 ms) 1178s [ RUN ] CompileTimeFunctionPointerTest.runFunctionThroughValue 1178s [ OK ] CompileTimeFunctionPointerTest.runFunctionThroughValue (0 ms) 1178s [----------] 2 tests from CompileTimeFunctionPointerTest (0 ms total) 1178s 1178s [----------] Global test environment tear-down 1178s [==========] 2 tests from 1 test suite ran. (0 ms total) 1178s [ PASSED ] 2 tests. 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1178s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1178s autopkgtest: DBG: testbed command exited with code 0 1178s autopkgtest [08:29:35]: test 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test: -----------------------] 1178s autopkgtest: DBG: testbed executing test finished with exit status 0 1178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stdout 1178s autopkgtest: DBG: got reply from testbed: ok 1178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-stderr 1178s autopkgtest: DBG: got reply from testbed: ok 1179s autopkgtest [08:29:36]: test 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test: - - - - - - - - - - results - - - - - - - - - - 1179s 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test PASS 1179s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1179s autopkgtest: DBG: got reply from testbed: ok 1179s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/16_of_104__cpptest__c10_CompileTimeFunctionPointer_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1179s autopkgtest: DBG: testbed command exited with code 0 1179s autopkgtest [08:29:36]: test 17_of_104__cpptest__c10_ConstexprCrc_test: preparing testbed 1179s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1179s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1179s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1179s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1179s autopkgtest: DBG: can use apt-get on testbed: True 1179s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1179s Reading package lists... 1179s Building dependency tree... 1179s Reading state information... 1179s Starting pkgProblemResolver with broken count: 0 1179s Starting 2 pkgProblemResolver with broken count: 0 1179s Done 1180s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1180s autopkgtest: DBG: testbed command exited with code 0 1180s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1180s autopkgtest: DBG: testbed command exited with code 0 1180s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1180s autopkgtest: DBG: testbed command exited with code 0 1180s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-packages.all"], kind short, sout raw, serr pipe, env [] 1180s autopkgtest: DBG: testbed command exited with code 0 1180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/17_of_104__cpptest__c10_ConstexprCrc_test-packages.all 1180s autopkgtest: DBG: got reply from testbed: ok 1180s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1180s autopkgtest: DBG: testbed command exited with code 0 1180s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1180s autopkgtest [08:29:37]: test 17_of_104__cpptest__c10_ConstexprCrc_test: /usr/lib/libtorch-test/c10_ConstexprCrc_test 1180s autopkgtest [08:29:37]: test 17_of_104__cpptest__c10_ConstexprCrc_test: [----------------------- 1180s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stderr --stdout=/tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_ConstexprCrc_test"], kind test, sout raw, serr raw, env [] 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-artifacts 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stderr 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stdout 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_ConstexprCrc_test 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.tyokuMWdUa/out to stdout and file: /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stdout 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.tyokuMWdUa/err to standard error and file: /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stdout 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 4261 to /tmp/autopkgtest_script_pid 1181s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1181s [==========] Running 0 tests from 0 test suites. 1181s [==========] 0 tests from 0 test suites ran. (0 ms total) 1181s [ PASSED ] 0 tests. 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1181s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1181s autopkgtest: DBG: testbed command exited with code 0 1181s autopkgtest [08:29:38]: test 17_of_104__cpptest__c10_ConstexprCrc_test: -----------------------] 1181s autopkgtest: DBG: testbed executing test finished with exit status 0 1181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/17_of_104__cpptest__c10_ConstexprCrc_test-stdout 1181s autopkgtest: DBG: got reply from testbed: ok 1181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/17_of_104__cpptest__c10_ConstexprCrc_test-stderr 1181s autopkgtest: DBG: got reply from testbed: ok 1181s autopkgtest [08:29:38]: test 17_of_104__cpptest__c10_ConstexprCrc_test: - - - - - - - - - - results - - - - - - - - - - 1181s 17_of_104__cpptest__c10_ConstexprCrc_test PASS 1181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1181s autopkgtest: DBG: got reply from testbed: ok 1181s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/17_of_104__cpptest__c10_ConstexprCrc_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1182s autopkgtest: DBG: testbed command exited with code 0 1182s autopkgtest [08:29:39]: test 18_of_104__cpptest__c10_DeadlockDetection_test: preparing testbed 1182s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1182s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1182s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1182s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1182s autopkgtest: DBG: can use apt-get on testbed: True 1182s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1182s Reading package lists... 1182s Building dependency tree... 1182s Reading state information... 1182s Starting pkgProblemResolver with broken count: 0 1182s Starting 2 pkgProblemResolver with broken count: 0 1182s Done 1182s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1182s autopkgtest: DBG: testbed command exited with code 0 1182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1182s autopkgtest: DBG: testbed command exited with code 0 1182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1183s autopkgtest: DBG: testbed command exited with code 0 1183s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-packages.all"], kind short, sout raw, serr pipe, env [] 1183s autopkgtest: DBG: testbed command exited with code 0 1183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/18_of_104__cpptest__c10_DeadlockDetection_test-packages.all 1183s autopkgtest: DBG: got reply from testbed: ok 1183s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1183s autopkgtest: DBG: testbed command exited with code 0 1183s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1183s autopkgtest [08:29:40]: test 18_of_104__cpptest__c10_DeadlockDetection_test: /usr/lib/libtorch-test/c10_DeadlockDetection_test 1183s autopkgtest [08:29:40]: test 18_of_104__cpptest__c10_DeadlockDetection_test: [----------------------- 1183s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stderr --stdout=/tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_DeadlockDetection_test"], kind test, sout raw, serr raw, env [] 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-artifacts 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stderr 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stdout 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_DeadlockDetection_test 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.MjeggHyPXc/out to stdout and file: /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stdout 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.MjeggHyPXc/err to standard error and file: /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stdout 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 4414 to /tmp/autopkgtest_script_pid 1183s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1183s [==========] Running 2 tests from 1 test suite. 1183s [----------] Global test environment set-up. 1183s [----------] 2 tests from DeadlockDetection 1183s [ RUN ] DeadlockDetection.basic 1183s [ OK ] DeadlockDetection.basic (0 ms) 1183s [ RUN ] DeadlockDetection.disable 1183s [ OK ] DeadlockDetection.disable (0 ms) 1183s [----------] 2 tests from DeadlockDetection (0 ms total) 1183s 1183s [----------] Global test environment tear-down 1183s [==========] 2 tests from 1 test suite ran. (0 ms total) 1183s [ PASSED ] 2 tests. 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1183s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1183s autopkgtest: DBG: testbed command exited with code 0 1184s autopkgtest [08:29:41]: test 18_of_104__cpptest__c10_DeadlockDetection_test: -----------------------] 1184s autopkgtest: DBG: testbed executing test finished with exit status 0 1184s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/18_of_104__cpptest__c10_DeadlockDetection_test-stdout 1184s autopkgtest: DBG: got reply from testbed: ok 1184s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/18_of_104__cpptest__c10_DeadlockDetection_test-stderr 1184s autopkgtest: DBG: got reply from testbed: ok 1184s autopkgtest [08:29:41]: test 18_of_104__cpptest__c10_DeadlockDetection_test: - - - - - - - - - - results - - - - - - - - - - 1184s 18_of_104__cpptest__c10_DeadlockDetection_test PASS 1184s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1184s autopkgtest: DBG: got reply from testbed: ok 1184s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/18_of_104__cpptest__c10_DeadlockDetection_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1184s autopkgtest: DBG: testbed command exited with code 0 1184s autopkgtest [08:29:41]: test 19_of_104__cpptest__c10_DeviceGuard_test: preparing testbed 1184s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1184s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1184s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1184s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1184s autopkgtest: DBG: can use apt-get on testbed: True 1184s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1185s Reading package lists... 1185s Building dependency tree... 1185s Reading state information... 1185s Starting pkgProblemResolver with broken count: 0 1185s Starting 2 pkgProblemResolver with broken count: 0 1185s Done 1185s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1185s autopkgtest: DBG: testbed command exited with code 0 1185s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1185s autopkgtest: DBG: testbed command exited with code 0 1185s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1185s autopkgtest: DBG: testbed command exited with code 0 1185s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-packages.all"], kind short, sout raw, serr pipe, env [] 1185s autopkgtest: DBG: testbed command exited with code 0 1185s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/19_of_104__cpptest__c10_DeviceGuard_test-packages.all 1186s autopkgtest: DBG: got reply from testbed: ok 1186s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1186s autopkgtest: DBG: testbed command exited with code 0 1186s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1186s autopkgtest [08:29:43]: test 19_of_104__cpptest__c10_DeviceGuard_test: /usr/lib/libtorch-test/c10_DeviceGuard_test 1186s autopkgtest [08:29:43]: test 19_of_104__cpptest__c10_DeviceGuard_test: [----------------------- 1186s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stderr --stdout=/tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_DeviceGuard_test"], kind test, sout raw, serr raw, env [] 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-artifacts 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stderr 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stdout 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_DeviceGuard_test 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.97PoNjF9dn/out to stdout and file: /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stdout 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.97PoNjF9dn/err to standard error and file: /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stdout 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 4567 to /tmp/autopkgtest_script_pid 1186s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1186s [==========] Running 2 tests from 2 test suites. 1186s [----------] Global test environment set-up. 1186s [----------] 1 test from DeviceGuard 1186s [ RUN ] DeviceGuard.ResetDeviceDifferentDeviceType 1186s [ OK ] DeviceGuard.ResetDeviceDifferentDeviceType (0 ms) 1186s [----------] 1 test from DeviceGuard (0 ms total) 1186s 1186s [----------] 1 test from OptionalDeviceGuard 1186s [ RUN ] OptionalDeviceGuard.ResetDeviceDifferentDeviceType 1186s [ OK ] OptionalDeviceGuard.ResetDeviceDifferentDeviceType (0 ms) 1186s [----------] 1 test from OptionalDeviceGuard (0 ms total) 1186s 1186s [----------] Global test environment tear-down 1186s [==========] 2 tests from 2 test suites ran. (0 ms total) 1186s [ PASSED ] 2 tests. 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1186s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1186s autopkgtest: DBG: testbed command exited with code 0 1186s autopkgtest [08:29:43]: test 19_of_104__cpptest__c10_DeviceGuard_test: -----------------------] 1186s autopkgtest: DBG: testbed executing test finished with exit status 0 1186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/19_of_104__cpptest__c10_DeviceGuard_test-stdout 1186s autopkgtest: DBG: got reply from testbed: ok 1186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/19_of_104__cpptest__c10_DeviceGuard_test-stderr 1187s autopkgtest: DBG: got reply from testbed: ok 1187s autopkgtest [08:29:44]: test 19_of_104__cpptest__c10_DeviceGuard_test: - - - - - - - - - - results - - - - - - - - - - 1187s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1187s 19_of_104__cpptest__c10_DeviceGuard_test PASS 1187s autopkgtest: DBG: got reply from testbed: ok 1187s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/19_of_104__cpptest__c10_DeviceGuard_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1187s autopkgtest: DBG: testbed command exited with code 0 1187s autopkgtest [08:29:44]: test 20_of_104__cpptest__c10_Device_test: preparing testbed 1187s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1187s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1187s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1187s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1187s autopkgtest: DBG: can use apt-get on testbed: True 1187s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1187s Reading package lists... 1187s Building dependency tree... 1187s Reading state information... 1187s Starting pkgProblemResolver with broken count: 0 1187s Starting 2 pkgProblemResolver with broken count: 0 1187s Done 1188s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1188s autopkgtest: DBG: testbed command exited with code 0 1188s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1188s autopkgtest: DBG: testbed command exited with code 0 1188s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1188s autopkgtest: DBG: testbed command exited with code 0 1188s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-packages.all"], kind short, sout raw, serr pipe, env [] 1188s autopkgtest: DBG: testbed command exited with code 0 1188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/20_of_104__cpptest__c10_Device_test-packages.all 1188s autopkgtest: DBG: got reply from testbed: ok 1188s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1188s autopkgtest: DBG: testbed command exited with code 0 1188s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1188s autopkgtest [08:29:45]: test 20_of_104__cpptest__c10_Device_test: /usr/lib/libtorch-test/c10_Device_test 1188s autopkgtest [08:29:45]: test 20_of_104__cpptest__c10_Device_test: [----------------------- 1188s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/20_of_104__cpptest__c10_Device_test-stderr --stdout=/tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_Device_test"], kind test, sout raw, serr raw, env [] 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-artifacts 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stderr 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stdout 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_Device_test 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.EpmoQzwYNp/out to stdout and file: /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stdout 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.EpmoQzwYNp/err to standard error and file: /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stdout 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 4720 to /tmp/autopkgtest_script_pid 1189s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1189s [==========] Running 3 tests from 2 test suites. 1189s [----------] Global test environment set-up. 1189s [----------] 1 test from DeviceTest 1189s [ RUN ] DeviceTest.BasicConstruction 1189s [ OK ] DeviceTest.BasicConstruction (0 ms) 1189s [----------] 1 test from DeviceTest (0 ms total) 1189s 1189s [----------] 2 tests from DeviceTypeTest 1189s [ RUN ] DeviceTypeTest.PrivateUseOneDeviceType 1189s [ OK ] DeviceTypeTest.PrivateUseOneDeviceType (0 ms) 1189s [ RUN ] DeviceTypeTest.PrivateUseOneRegister 1189s [ OK ] DeviceTypeTest.PrivateUseOneRegister (0 ms) 1189s [----------] 2 tests from DeviceTypeTest (0 ms total) 1189s 1189s [----------] Global test environment tear-down 1189s [==========] 3 tests from 2 test suites ran. (0 ms total) 1189s [ PASSED ] 3 tests. 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1189s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1189s autopkgtest: DBG: testbed command exited with code 0 1189s autopkgtest [08:29:46]: test 20_of_104__cpptest__c10_Device_test: -----------------------] 1189s autopkgtest: DBG: testbed executing test finished with exit status 0 1189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/20_of_104__cpptest__c10_Device_test-stdout 1189s autopkgtest: DBG: got reply from testbed: ok 1189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/20_of_104__cpptest__c10_Device_test-stderr 1189s autopkgtest: DBG: got reply from testbed: ok 1189s 20_of_104__cpptest__c10_Device_test PASS 1189s autopkgtest [08:29:46]: test 20_of_104__cpptest__c10_Device_test: - - - - - - - - - - results - - - - - - - - - - 1189s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1189s autopkgtest: DBG: got reply from testbed: ok 1189s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/20_of_104__cpptest__c10_Device_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1190s autopkgtest: DBG: testbed command exited with code 0 1190s autopkgtest [08:29:47]: test 21_of_104__cpptest__c10_DispatchKeySet_test: preparing testbed 1190s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1190s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1190s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1190s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1190s autopkgtest: DBG: can use apt-get on testbed: True 1190s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1190s Reading package lists... 1190s Building dependency tree... 1190s Reading state information... 1190s Starting pkgProblemResolver with broken count: 0 1190s Starting 2 pkgProblemResolver with broken count: 0 1190s Done 1190s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1190s autopkgtest: DBG: testbed command exited with code 0 1190s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1190s autopkgtest: DBG: testbed command exited with code 0 1190s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1191s autopkgtest: DBG: testbed command exited with code 0 1191s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-packages.all"], kind short, sout raw, serr pipe, env [] 1191s autopkgtest: DBG: testbed command exited with code 0 1191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/21_of_104__cpptest__c10_DispatchKeySet_test-packages.all 1191s autopkgtest: DBG: got reply from testbed: ok 1191s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1191s autopkgtest: DBG: testbed command exited with code 0 1191s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1191s autopkgtest [08:29:48]: test 21_of_104__cpptest__c10_DispatchKeySet_test: /usr/lib/libtorch-test/c10_DispatchKeySet_test 1191s autopkgtest [08:29:48]: test 21_of_104__cpptest__c10_DispatchKeySet_test: [----------------------- 1191s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stderr --stdout=/tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_DispatchKeySet_test"], kind test, sout raw, serr raw, env [] 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-artifacts 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stderr 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stdout 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_DispatchKeySet_test 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.XZTceJVbBw/out to stdout and file: /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stdout 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.XZTceJVbBw/err to standard error and file: /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stdout 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 4873 to /tmp/autopkgtest_script_pid 1191s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1191s [==========] Running 16 tests from 1 test suite. 1191s [----------] Global test environment set-up. 1191s [----------] 16 tests from DispatchKeySet 1191s [ RUN ] DispatchKeySet.ShowSemantics 1191s [ OK ] DispatchKeySet.ShowSemantics (0 ms) 1191s [ RUN ] DispatchKeySet.Empty 1191s [ OK ] DispatchKeySet.Empty (0 ms) 1191s [ RUN ] DispatchKeySet.SingletonBackendComponent 1191s [ OK ] DispatchKeySet.SingletonBackendComponent (0 ms) 1191s [ RUN ] DispatchKeySet.SingletonFunctionalityKeys 1191s [ OK ] DispatchKeySet.SingletonFunctionalityKeys (0 ms) 1191s [ RUN ] DispatchKeySet.SingletonPerBackendFunctionalityKeys 1191s [ OK ] DispatchKeySet.SingletonPerBackendFunctionalityKeys (0 ms) 1191s [ RUN ] DispatchKeySet.DoubletonPerBackend 1191s [ OK ] DispatchKeySet.DoubletonPerBackend (2 ms) 1191s [ RUN ] DispatchKeySet.Full 1191s [ OK ] DispatchKeySet.Full (0 ms) 1191s [ RUN ] DispatchKeySet.IteratorBasicOps 1191s [ OK ] DispatchKeySet.IteratorBasicOps (0 ms) 1191s [ RUN ] DispatchKeySet.getHighestPriorityBackendTypeId 1191s [ OK ] DispatchKeySet.getHighestPriorityBackendTypeId (0 ms) 1191s [ RUN ] DispatchKeySet.IteratorEmpty 1191s [ OK ] DispatchKeySet.IteratorEmpty (0 ms) 1191s [ RUN ] DispatchKeySet.IteratorCrossProduct 1191s [ OK ] DispatchKeySet.IteratorCrossProduct (0 ms) 1191s [ RUN ] DispatchKeySet.IteratorFull 1191s [ OK ] DispatchKeySet.IteratorFull (0 ms) 1191s [ RUN ] DispatchKeySet.FailAtEndIterator 1191s [ OK ] DispatchKeySet.FailAtEndIterator (0 ms) 1191s [ RUN ] DispatchKeySet.TestBackendComponentToString 1191s [ OK ] DispatchKeySet.TestBackendComponentToString (0 ms) 1191s [ RUN ] DispatchKeySet.TestEndOfRuntimeBackendKeysAccurate 1191s [ OK ] DispatchKeySet.TestEndOfRuntimeBackendKeysAccurate (0 ms) 1191s [ RUN ] DispatchKeySet.TestFunctionalityDispatchKeyToString 1191s [ OK ] DispatchKeySet.TestFunctionalityDispatchKeyToString (0 ms) 1191s [----------] 16 tests from DispatchKeySet (2 ms total) 1191s 1191s [----------] Global test environment tear-down 1191s [==========] 16 tests from 1 test suite ran. (2 ms total) 1191s [ PASSED ] 16 tests. 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1191s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1191s autopkgtest: DBG: testbed command exited with code 0 1191s autopkgtest [08:29:48]: test 21_of_104__cpptest__c10_DispatchKeySet_test: -----------------------] 1191s autopkgtest: DBG: testbed executing test finished with exit status 0 1191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/21_of_104__cpptest__c10_DispatchKeySet_test-stdout 1192s autopkgtest: DBG: got reply from testbed: ok 1192s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/21_of_104__cpptest__c10_DispatchKeySet_test-stderr 1192s autopkgtest: DBG: got reply from testbed: ok 1192s 21_of_104__cpptest__c10_DispatchKeySet_test PASS 1192s autopkgtest [08:29:49]: test 21_of_104__cpptest__c10_DispatchKeySet_test: - - - - - - - - - - results - - - - - - - - - - 1192s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1192s autopkgtest: DBG: got reply from testbed: ok 1192s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/21_of_104__cpptest__c10_DispatchKeySet_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1192s autopkgtest: DBG: testbed command exited with code 0 1192s autopkgtest [08:29:49]: test 22_of_104__cpptest__c10_Half_test: preparing testbed 1192s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1192s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1192s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1192s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1192s autopkgtest: DBG: can use apt-get on testbed: True 1192s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1192s Reading package lists... 1193s Building dependency tree... 1193s Reading state information... 1193s Starting pkgProblemResolver with broken count: 0 1193s Starting 2 pkgProblemResolver with broken count: 0 1193s Done 1193s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1193s autopkgtest: DBG: testbed command exited with code 0 1193s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1193s autopkgtest: DBG: testbed command exited with code 0 1193s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1193s autopkgtest: DBG: testbed command exited with code 0 1193s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-packages.all"], kind short, sout raw, serr pipe, env [] 1193s autopkgtest: DBG: testbed command exited with code 0 1193s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/22_of_104__cpptest__c10_Half_test-packages.all 1193s autopkgtest: DBG: got reply from testbed: ok 1193s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1194s autopkgtest: DBG: testbed command exited with code 0 1194s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1194s autopkgtest [08:29:51]: test 22_of_104__cpptest__c10_Half_test: /usr/lib/libtorch-test/c10_Half_test 1194s autopkgtest [08:29:51]: test 22_of_104__cpptest__c10_Half_test: [----------------------- 1194s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/22_of_104__cpptest__c10_Half_test-stderr --stdout=/tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_Half_test"], kind test, sout raw, serr raw, env [] 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-artifacts 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stderr 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stdout 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_Half_test 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.YeXGBGVhF0/out to stdout and file: /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stdout 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.YeXGBGVhF0/err to standard error and file: /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stdout 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5026 to /tmp/autopkgtest_script_pid 1194s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1194s [==========] Running 3 tests from 2 test suites. 1194s [----------] Global test environment set-up. 1194s [----------] 1 test from HalfConversionTest 1194s [ RUN ] HalfConversionTest.TestPorableConversion 1194s [ OK ] HalfConversionTest.TestPorableConversion (0 ms) 1194s [----------] 1 test from HalfConversionTest (0 ms total) 1194s 1194s [----------] 2 tests from HalfConversion 1194s [ RUN ] HalfConversion.TestNativeConversionToFloat 1194s [ OK ] HalfConversion.TestNativeConversionToFloat (0 ms) 1194s [ RUN ] HalfConversion.TestNativeConversionToHalf 1194s [ OK ] HalfConversion.TestNativeConversionToHalf (0 ms) 1194s [----------] 2 tests from HalfConversion (1 ms total) 1194s 1194s [----------] Global test environment tear-down 1194s [==========] 3 tests from 2 test suites ran. (1 ms total) 1194s [ PASSED ] 3 tests. 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1194s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1194s autopkgtest: DBG: testbed command exited with code 0 1194s autopkgtest [08:29:51]: test 22_of_104__cpptest__c10_Half_test: -----------------------] 1194s autopkgtest: DBG: testbed executing test finished with exit status 0 1194s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/22_of_104__cpptest__c10_Half_test-stdout 1194s autopkgtest: DBG: got reply from testbed: ok 1194s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/22_of_104__cpptest__c10_Half_test-stderr 1194s autopkgtest: DBG: got reply from testbed: ok 1195s autopkgtest [08:29:52]: test 22_of_104__cpptest__c10_Half_test: - - - - - - - - - - results - - - - - - - - - - 1195s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1195s 22_of_104__cpptest__c10_Half_test PASS 1195s autopkgtest: DBG: got reply from testbed: ok 1195s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/22_of_104__cpptest__c10_Half_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1195s autopkgtest: DBG: testbed command exited with code 0 1195s autopkgtest [08:29:52]: test 23_of_104__cpptest__c10_InlineDeviceGuard_test: preparing testbed 1195s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1195s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1195s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1195s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1195s autopkgtest: DBG: can use apt-get on testbed: True 1195s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1195s Reading package lists... 1195s Building dependency tree... 1195s Reading state information... 1195s Starting pkgProblemResolver with broken count: 0 1195s Starting 2 pkgProblemResolver with broken count: 0 1195s Done 1196s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1196s autopkgtest: DBG: testbed command exited with code 0 1196s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1196s autopkgtest: DBG: testbed command exited with code 0 1196s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1196s autopkgtest: DBG: testbed command exited with code 0 1196s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-packages.all"], kind short, sout raw, serr pipe, env [] 1196s autopkgtest: DBG: testbed command exited with code 0 1196s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/23_of_104__cpptest__c10_InlineDeviceGuard_test-packages.all 1196s autopkgtest: DBG: got reply from testbed: ok 1196s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1196s autopkgtest: DBG: testbed command exited with code 0 1196s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1196s autopkgtest [08:29:53]: test 23_of_104__cpptest__c10_InlineDeviceGuard_test: /usr/lib/libtorch-test/c10_InlineDeviceGuard_test 1196s autopkgtest [08:29:53]: test 23_of_104__cpptest__c10_InlineDeviceGuard_test: [----------------------- 1196s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stderr --stdout=/tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_InlineDeviceGuard_test"], kind test, sout raw, serr raw, env [] 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-artifacts 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stderr 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stdout 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_InlineDeviceGuard_test 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Wfhp0YOfO4/out to stdout and file: /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stdout 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Wfhp0YOfO4/err to standard error and file: /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stdout 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5179 to /tmp/autopkgtest_script_pid 1196s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1196s [==========] Running 9 tests from 2 test suites. 1196s [----------] Global test environment set-up. 1196s [----------] 5 tests from InlineDeviceGuard 1196s [ RUN ] InlineDeviceGuard.Constructor 1196s [ OK ] InlineDeviceGuard.Constructor (0 ms) 1196s [ RUN ] InlineDeviceGuard.ConstructorError 1196s [ OK ] InlineDeviceGuard.ConstructorError (0 ms) 1196s [ RUN ] InlineDeviceGuard.SetDevice 1196s [ OK ] InlineDeviceGuard.SetDevice (0 ms) 1196s [ RUN ] InlineDeviceGuard.ResetDevice 1196s [ OK ] InlineDeviceGuard.ResetDevice (0 ms) 1196s [ RUN ] InlineDeviceGuard.SetIndex 1196s [ OK ] InlineDeviceGuard.SetIndex (0 ms) 1196s [----------] 5 tests from InlineDeviceGuard (0 ms total) 1196s 1196s [----------] 4 tests from InlineOptionalDeviceGuard 1196s [ RUN ] InlineOptionalDeviceGuard.Constructor 1196s [ OK ] InlineOptionalDeviceGuard.Constructor (0 ms) 1196s [ RUN ] InlineOptionalDeviceGuard.NullaryConstructor 1196s [ OK ] InlineOptionalDeviceGuard.NullaryConstructor (0 ms) 1196s [ RUN ] InlineOptionalDeviceGuard.SetDevice 1196s [ OK ] InlineOptionalDeviceGuard.SetDevice (0 ms) 1196s [ RUN ] InlineOptionalDeviceGuard.SetIndex 1196s [ OK ] InlineOptionalDeviceGuard.SetIndex (0 ms) 1196s [----------] 4 tests from InlineOptionalDeviceGuard (0 ms total) 1196s 1196s [----------] Global test environment tear-down 1196s [==========] 9 tests from 2 test suites ran. (0 ms total) 1196s [ PASSED ] 9 tests. 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1196s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1196s autopkgtest: DBG: testbed command exited with code 0 1197s autopkgtest [08:29:54]: test 23_of_104__cpptest__c10_InlineDeviceGuard_test: -----------------------] 1197s autopkgtest: DBG: testbed executing test finished with exit status 0 1197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/23_of_104__cpptest__c10_InlineDeviceGuard_test-stdout 1197s autopkgtest: DBG: got reply from testbed: ok 1197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/23_of_104__cpptest__c10_InlineDeviceGuard_test-stderr 1197s autopkgtest: DBG: got reply from testbed: ok 1197s 23_of_104__cpptest__c10_InlineDeviceGuard_test PASS 1197s autopkgtest [08:29:54]: test 23_of_104__cpptest__c10_InlineDeviceGuard_test: - - - - - - - - - - results - - - - - - - - - - 1197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1197s autopkgtest: DBG: got reply from testbed: ok 1197s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/23_of_104__cpptest__c10_InlineDeviceGuard_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1198s autopkgtest: DBG: testbed command exited with code 0 1198s autopkgtest [08:29:55]: test 24_of_104__cpptest__c10_InlineStreamGuard_test: preparing testbed 1198s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1198s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1198s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1198s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1198s autopkgtest: DBG: can use apt-get on testbed: True 1198s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1198s Reading package lists... 1198s Building dependency tree... 1198s Reading state information... 1198s Starting pkgProblemResolver with broken count: 0 1198s Starting 2 pkgProblemResolver with broken count: 0 1198s Done 1198s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1198s autopkgtest: DBG: testbed command exited with code 0 1198s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1198s autopkgtest: DBG: testbed command exited with code 0 1198s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1198s autopkgtest: DBG: testbed command exited with code 0 1198s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-packages.all"], kind short, sout raw, serr pipe, env [] 1199s autopkgtest: DBG: testbed command exited with code 0 1199s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/24_of_104__cpptest__c10_InlineStreamGuard_test-packages.all 1199s autopkgtest: DBG: got reply from testbed: ok 1199s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1199s autopkgtest: DBG: testbed command exited with code 0 1199s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1199s autopkgtest [08:29:56]: test 24_of_104__cpptest__c10_InlineStreamGuard_test: /usr/lib/libtorch-test/c10_InlineStreamGuard_test 1199s autopkgtest [08:29:56]: test 24_of_104__cpptest__c10_InlineStreamGuard_test: [----------------------- 1199s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stderr --stdout=/tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_InlineStreamGuard_test"], kind test, sout raw, serr raw, env [] 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-artifacts 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stderr 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stdout 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_InlineStreamGuard_test 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uf7gkJEQXo/out to stdout and file: /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stdout 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uf7gkJEQXo/err to standard error and file: /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stdout 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5332 to /tmp/autopkgtest_script_pid 1199s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1199s [==========] Running 8 tests from 3 test suites. 1199s [----------] Global test environment set-up. 1199s [----------] 4 tests from InlineStreamGuard 1199s [ RUN ] InlineStreamGuard.Constructor 1199s [ OK ] InlineStreamGuard.Constructor (0 ms) 1199s [ RUN ] InlineStreamGuard.ResetStreamSameSameDevice 1199s [ OK ] InlineStreamGuard.ResetStreamSameSameDevice (0 ms) 1199s [ RUN ] InlineStreamGuard.ResetStreamDifferentSameDevice 1199s [ OK ] InlineStreamGuard.ResetStreamDifferentSameDevice (0 ms) 1199s [ RUN ] InlineStreamGuard.ResetStreamDifferentDevice 1199s [ OK ] InlineStreamGuard.ResetStreamDifferentDevice (0 ms) 1199s [----------] 4 tests from InlineStreamGuard (0 ms total) 1199s 1199s [----------] 3 tests from InlineOptionalStreamGuard 1199s [ RUN ] InlineOptionalStreamGuard.Constructor 1199s [ OK ] InlineOptionalStreamGuard.Constructor (0 ms) 1199s [ RUN ] InlineOptionalStreamGuard.ResetStreamSameDevice 1199s [ OK ] InlineOptionalStreamGuard.ResetStreamSameDevice (0 ms) 1199s [ RUN ] InlineOptionalStreamGuard.ResetStreamDifferentDevice 1199s [ OK ] InlineOptionalStreamGuard.ResetStreamDifferentDevice (0 ms) 1199s [----------] 3 tests from InlineOptionalStreamGuard (0 ms total) 1199s 1199s [----------] 1 test from InlineMultiStreamGuard 1199s [ RUN ] InlineMultiStreamGuard.Constructor 1199s [ OK ] InlineMultiStreamGuard.Constructor (0 ms) 1199s [----------] 1 test from InlineMultiStreamGuard (0 ms total) 1199s 1199s [----------] Global test environment tear-down 1199s [==========] 8 tests from 3 test suites ran. (0 ms total) 1199s [ PASSED ] 8 tests. 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1199s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1199s autopkgtest: DBG: testbed command exited with code 0 1199s autopkgtest [08:29:56]: test 24_of_104__cpptest__c10_InlineStreamGuard_test: -----------------------] 1199s autopkgtest: DBG: testbed executing test finished with exit status 0 1199s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/24_of_104__cpptest__c10_InlineStreamGuard_test-stdout 1200s autopkgtest: DBG: got reply from testbed: ok 1200s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/24_of_104__cpptest__c10_InlineStreamGuard_test-stderr 1200s autopkgtest: DBG: got reply from testbed: ok 1200s 24_of_104__cpptest__c10_InlineStreamGuard_test PASS 1200s autopkgtest [08:29:57]: test 24_of_104__cpptest__c10_InlineStreamGuard_test: - - - - - - - - - - results - - - - - - - - - - 1200s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1200s autopkgtest: DBG: got reply from testbed: ok 1200s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/24_of_104__cpptest__c10_InlineStreamGuard_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1200s autopkgtest: DBG: testbed command exited with code 0 1200s autopkgtest [08:29:57]: test 25_of_104__cpptest__c10_LeftRight_test: preparing testbed 1200s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1200s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1200s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1200s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1200s autopkgtest: DBG: can use apt-get on testbed: True 1200s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1200s Reading package lists... 1200s Building dependency tree... 1200s Reading state information... 1201s Starting pkgProblemResolver with broken count: 0 1201s Starting 2 pkgProblemResolver with broken count: 0 1201s Done 1201s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1201s autopkgtest: DBG: testbed command exited with code 0 1201s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1201s autopkgtest: DBG: testbed command exited with code 0 1201s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1201s autopkgtest: DBG: testbed command exited with code 0 1201s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-packages.all"], kind short, sout raw, serr pipe, env [] 1201s autopkgtest: DBG: testbed command exited with code 0 1201s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/25_of_104__cpptest__c10_LeftRight_test-packages.all 1201s autopkgtest: DBG: got reply from testbed: ok 1201s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1202s autopkgtest: DBG: testbed command exited with code 0 1202s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1202s autopkgtest [08:29:59]: test 25_of_104__cpptest__c10_LeftRight_test: /usr/lib/libtorch-test/c10_LeftRight_test 1202s autopkgtest [08:29:59]: test 25_of_104__cpptest__c10_LeftRight_test: [----------------------- 1202s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stderr --stdout=/tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_LeftRight_test"], kind test, sout raw, serr raw, env [] 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-artifacts 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stderr 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stdout 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_LeftRight_test 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.sMU0tRX87j/out to stdout and file: /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stdout 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.sMU0tRX87j/err to standard error and file: /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stdout 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5485 to /tmp/autopkgtest_script_pid 1202s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1202s [==========] Running 12 tests from 1 test suite. 1202s [----------] Global test environment set-up. 1202s [----------] 12 tests from LeftRightTest 1202s [ RUN ] LeftRightTest.givenInt_whenWritingAndReading_thenChangesArePresent 1202s [ OK ] LeftRightTest.givenInt_whenWritingAndReading_thenChangesArePresent (0 ms) 1202s [ RUN ] LeftRightTest.givenVector_whenWritingAndReading_thenChangesArePresent 1202s [ OK ] LeftRightTest.givenVector_whenWritingAndReading_thenChangesArePresent (0 ms) 1202s [ RUN ] LeftRightTest.givenVector_whenWritingReturnsValue_thenValueIsReturned 1202s [ OK ] LeftRightTest.givenVector_whenWritingReturnsValue_thenValueIsReturned (0 ms) 1202s [ RUN ] LeftRightTest.readsCanBeConcurrent 1202s [ OK ] LeftRightTest.readsCanBeConcurrent (10 ms) 1202s [ RUN ] LeftRightTest.writesCanBeConcurrentWithReads_readThenWrite 1202s [ OK ] LeftRightTest.writesCanBeConcurrentWithReads_readThenWrite (0 ms) 1202s [ RUN ] LeftRightTest.writesCanBeConcurrentWithReads_writeThenRead 1202s [ OK ] LeftRightTest.writesCanBeConcurrentWithReads_writeThenRead (0 ms) 1202s [ RUN ] LeftRightTest.writesCannotBeConcurrentWithWrites 1202s [ OK ] LeftRightTest.writesCannotBeConcurrentWithWrites (100 ms) 1202s [ RUN ] LeftRightTest.whenReadThrowsException_thenThrowsThrough 1202s [ OK ] LeftRightTest.whenReadThrowsException_thenThrowsThrough (0 ms) 1202s [ RUN ] LeftRightTest.whenWriteThrowsException_thenThrowsThrough 1202s [ OK ] LeftRightTest.whenWriteThrowsException_thenThrowsThrough (0 ms) 1202s [ RUN ] LeftRightTest.givenInt_whenWriteThrowsExceptionOnFirstCall_thenResetsToOldState 1202s [ OK ] LeftRightTest.givenInt_whenWriteThrowsExceptionOnFirstCall_thenResetsToOldState (0 ms) 1202s [ RUN ] LeftRightTest.givenInt_whenWriteThrowsExceptionOnSecondCall_thenKeepsNewState 1202s [ OK ] LeftRightTest.givenInt_whenWriteThrowsExceptionOnSecondCall_thenKeepsNewState (0 ms) 1202s [ RUN ] LeftRightTest.givenVector_whenWriteThrowsException_thenResetsToOldState 1202s [ OK ] LeftRightTest.givenVector_whenWriteThrowsException_thenResetsToOldState (0 ms) 1202s [----------] 12 tests from LeftRightTest (110 ms total) 1202s 1202s [----------] Global test environment tear-down 1202s [==========] 12 tests from 1 test suite ran. (110 ms total) 1202s [ PASSED ] 12 tests. 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1202s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1202s autopkgtest: DBG: testbed command exited with code 0 1202s autopkgtest [08:29:59]: test 25_of_104__cpptest__c10_LeftRight_test: -----------------------] 1202s autopkgtest: DBG: testbed executing test finished with exit status 0 1202s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/25_of_104__cpptest__c10_LeftRight_test-stdout 1202s autopkgtest: DBG: got reply from testbed: ok 1202s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/25_of_104__cpptest__c10_LeftRight_test-stderr 1202s autopkgtest: DBG: got reply from testbed: ok 1203s 25_of_104__cpptest__c10_LeftRight_test PASS 1203s autopkgtest [08:30:00]: test 25_of_104__cpptest__c10_LeftRight_test: - - - - - - - - - - results - - - - - - - - - - 1203s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1203s autopkgtest: DBG: got reply from testbed: ok 1203s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/25_of_104__cpptest__c10_LeftRight_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1203s autopkgtest: DBG: testbed command exited with code 0 1203s autopkgtest [08:30:00]: test 26_of_104__cpptest__c10_Metaprogramming_test: preparing testbed 1203s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1203s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1203s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1203s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1203s autopkgtest: DBG: can use apt-get on testbed: True 1203s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1203s Reading package lists... 1203s Building dependency tree... 1203s Reading state information... 1203s Starting pkgProblemResolver with broken count: 0 1203s Starting 2 pkgProblemResolver with broken count: 0 1203s Done 1204s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1204s autopkgtest: DBG: testbed command exited with code 0 1204s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1204s autopkgtest: DBG: testbed command exited with code 0 1204s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1204s autopkgtest: DBG: testbed command exited with code 0 1204s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-packages.all"], kind short, sout raw, serr pipe, env [] 1204s autopkgtest: DBG: testbed command exited with code 0 1204s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/26_of_104__cpptest__c10_Metaprogramming_test-packages.all 1204s autopkgtest: DBG: got reply from testbed: ok 1204s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1204s autopkgtest: DBG: testbed command exited with code 0 1204s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1204s autopkgtest [08:30:01]: test 26_of_104__cpptest__c10_Metaprogramming_test: /usr/lib/libtorch-test/c10_Metaprogramming_test 1204s autopkgtest [08:30:01]: test 26_of_104__cpptest__c10_Metaprogramming_test: [----------------------- 1204s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stderr --stdout=/tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_Metaprogramming_test"], kind test, sout raw, serr raw, env [] 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-artifacts 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stderr 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stdout 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_Metaprogramming_test 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.k5XoHV47ak/out to stdout and file: /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stdout 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.k5XoHV47ak/err to standard error and file: /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stdout 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5647 to /tmp/autopkgtest_script_pid 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1205s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1205s [==========] Running 16 tests from 1 test suite. 1205s [----------] Global test environment set-up. 1205s [----------] 16 tests from MetaprogrammingTest 1205s [ RUN ] MetaprogrammingTest.TupleElements_subsetSelection 1205s [ OK ] MetaprogrammingTest.TupleElements_subsetSelection (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleElements_reorderSelection 1205s [ OK ] MetaprogrammingTest.TupleElements_reorderSelection (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleTake_nonemptyPrefix 1205s [ OK ] MetaprogrammingTest.TupleTake_nonemptyPrefix (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleTake_fullPrefix 1205s [ OK ] MetaprogrammingTest.TupleTake_fullPrefix (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleTake_negative 1205s [ OK ] MetaprogrammingTest.TupleTake_negative (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleSlice_middle 1205s [ OK ] MetaprogrammingTest.TupleSlice_middle (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleSlice_full 1205s [ OK ] MetaprogrammingTest.TupleSlice_full (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_simple 1205s [ OK ] MetaprogrammingTest.TupleMap_simple (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_mapperTakesDifferentButConvertibleType 1205s [ OK ] MetaprogrammingTest.TupleMap_mapperTakesDifferentButConvertibleType (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_mapperTakesConstRef 1205s [ OK ] MetaprogrammingTest.TupleMap_mapperTakesConstRef (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_mapsToDifferentTypes 1205s [ OK ] MetaprogrammingTest.TupleMap_mapsToDifferentTypes (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_differentiatesLRValueReferences 1205s [ OK ] MetaprogrammingTest.TupleMap_differentiatesLRValueReferences (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_canWorkWithMovableOnlyType 1205s [ OK ] MetaprogrammingTest.TupleMap_canWorkWithMovableOnlyType (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_doesntUnecessarilyCopyValues 1205s [ OK ] MetaprogrammingTest.TupleMap_doesntUnecessarilyCopyValues (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_doesntUnecessarilyMoveValues 1205s [ OK ] MetaprogrammingTest.TupleMap_doesntUnecessarilyMoveValues (0 ms) 1205s [ RUN ] MetaprogrammingTest.TupleMap_canBeUsedWithAutoLambdas 1205s [ OK ] MetaprogrammingTest.TupleMap_canBeUsedWithAutoLambdas (0 ms) 1205s [----------] 16 tests from MetaprogrammingTest (0 ms total) 1205s 1205s [----------] Global test environment tear-down 1205s [==========] 16 tests from 1 test suite ran. (0 ms total) 1205s [ PASSED ] 16 tests. 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1205s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1205s autopkgtest: DBG: testbed command exited with code 0 1205s autopkgtest [08:30:02]: test 26_of_104__cpptest__c10_Metaprogramming_test: -----------------------] 1205s autopkgtest: DBG: testbed executing test finished with exit status 0 1205s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/26_of_104__cpptest__c10_Metaprogramming_test-stdout 1205s autopkgtest: DBG: got reply from testbed: ok 1205s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/26_of_104__cpptest__c10_Metaprogramming_test-stderr 1205s autopkgtest: DBG: got reply from testbed: ok 1205s 26_of_104__cpptest__c10_Metaprogramming_test PASS 1205s autopkgtest [08:30:02]: test 26_of_104__cpptest__c10_Metaprogramming_test: - - - - - - - - - - results - - - - - - - - - - 1205s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1205s autopkgtest: DBG: got reply from testbed: ok 1205s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/26_of_104__cpptest__c10_Metaprogramming_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest [08:30:03]: test 27_of_104__cpptest__c10_NetworkFlow_test: preparing testbed 1206s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1206s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1206s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1206s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1206s autopkgtest: DBG: can use apt-get on testbed: True 1206s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1206s Reading package lists... 1206s Building dependency tree... 1206s Reading state information... 1206s Starting pkgProblemResolver with broken count: 0 1206s Starting 2 pkgProblemResolver with broken count: 0 1206s Done 1206s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1206s autopkgtest: DBG: testbed command exited with code 0 1206s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-packages.all"], kind short, sout raw, serr pipe, env [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/27_of_104__cpptest__c10_NetworkFlow_test-packages.all 1207s autopkgtest: DBG: got reply from testbed: ok 1207s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1207s autopkgtest: DBG: testbed command exited with code 0 1207s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1207s autopkgtest [08:30:04]: test 27_of_104__cpptest__c10_NetworkFlow_test: /usr/lib/libtorch-test/c10_NetworkFlow_test 1207s autopkgtest [08:30:04]: test 27_of_104__cpptest__c10_NetworkFlow_test: [----------------------- 1207s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stderr --stdout=/tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_NetworkFlow_test"], kind test, sout raw, serr raw, env [] 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-artifacts 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stderr 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stdout 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_NetworkFlow_test 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ry28D9dGci/out to stdout and file: /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stdout 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ry28D9dGci/err to standard error and file: /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stdout 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5803 to /tmp/autopkgtest_script_pid 1207s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1207s [==========] Running 7 tests from 1 test suite. 1207s [----------] Global test environment set-up. 1207s [----------] 7 tests from NetworkFlowTest 1207s [ RUN ] NetworkFlowTest.basic 1207s [ OK ] NetworkFlowTest.basic (0 ms) 1207s [ RUN ] NetworkFlowTest.loop 1207s [ OK ] NetworkFlowTest.loop (0 ms) 1207s [ RUN ] NetworkFlowTest.disconnected_vertices 1207s [ OK ] NetworkFlowTest.disconnected_vertices (0 ms) 1207s [ RUN ] NetworkFlowTest.invalid_endpoints 1207s [ OK ] NetworkFlowTest.invalid_endpoints (0 ms) 1207s [ RUN ] NetworkFlowTest.unbounded 1207s [ OK ] NetworkFlowTest.unbounded (0 ms) 1207s [ RUN ] NetworkFlowTest.overflow 1207s [ OK ] NetworkFlowTest.overflow (0 ms) 1207s [ RUN ] NetworkFlowTest.reverse_edge 1207s [ OK ] NetworkFlowTest.reverse_edge (0 ms) 1207s [----------] 7 tests from NetworkFlowTest (0 ms total) 1207s 1207s [----------] Global test environment tear-down 1207s [==========] 7 tests from 1 test suite ran. (0 ms total) 1207s [ PASSED ] 7 tests. 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1207s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1207s autopkgtest: DBG: testbed command exited with code 0 1208s autopkgtest [08:30:05]: test 27_of_104__cpptest__c10_NetworkFlow_test: -----------------------] 1208s autopkgtest: DBG: testbed executing test finished with exit status 0 1208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/27_of_104__cpptest__c10_NetworkFlow_test-stdout 1208s autopkgtest: DBG: got reply from testbed: ok 1208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/27_of_104__cpptest__c10_NetworkFlow_test-stderr 1208s autopkgtest: DBG: got reply from testbed: ok 1208s autopkgtest [08:30:05]: test 27_of_104__cpptest__c10_NetworkFlow_test: - - - - - - - - - - results - - - - - - - - - - 1208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1208s 27_of_104__cpptest__c10_NetworkFlow_test PASS 1208s autopkgtest: DBG: got reply from testbed: ok 1208s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/27_of_104__cpptest__c10_NetworkFlow_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1208s autopkgtest: DBG: testbed command exited with code 0 1208s autopkgtest [08:30:05]: test 28_of_104__cpptest__c10_Scalar_test: preparing testbed 1208s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1208s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1208s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1208s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1208s autopkgtest: DBG: can use apt-get on testbed: True 1208s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1208s Reading package lists... 1209s Building dependency tree... 1209s Reading state information... 1209s Starting pkgProblemResolver with broken count: 0 1209s Starting 2 pkgProblemResolver with broken count: 0 1209s Done 1209s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1209s autopkgtest: DBG: testbed command exited with code 0 1209s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1209s autopkgtest: DBG: testbed command exited with code 0 1209s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1209s autopkgtest: DBG: testbed command exited with code 0 1209s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-packages.all"], kind short, sout raw, serr pipe, env [] 1209s autopkgtest: DBG: testbed command exited with code 0 1209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/28_of_104__cpptest__c10_Scalar_test-packages.all 1210s autopkgtest: DBG: got reply from testbed: ok 1210s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1210s autopkgtest: DBG: testbed command exited with code 0 1210s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1210s autopkgtest [08:30:07]: test 28_of_104__cpptest__c10_Scalar_test: /usr/lib/libtorch-test/c10_Scalar_test 1210s autopkgtest [08:30:07]: test 28_of_104__cpptest__c10_Scalar_test: [----------------------- 1210s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/28_of_104__cpptest__c10_Scalar_test-stderr --stdout=/tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_Scalar_test"], kind test, sout raw, serr raw, env [] 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-artifacts 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stderr 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stdout 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_Scalar_test 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.FP8Q8ILGcx/out to stdout and file: /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stdout 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.FP8Q8ILGcx/err to standard error and file: /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stdout 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 5956 to /tmp/autopkgtest_script_pid 1210s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1210s [==========] Running 3 tests from 1 test suite. 1210s [----------] Global test environment set-up. 1210s [----------] 3 tests from ScalarTest 1210s [ RUN ] ScalarTest.UnsignedConstructor 1210s [ OK ] ScalarTest.UnsignedConstructor (0 ms) 1210s [ RUN ] ScalarTest.Equality 1210s [ OK ] ScalarTest.Equality (0 ms) 1210s [ RUN ] ScalarTest.LongsAndLongLongs 1210s [ OK ] ScalarTest.LongsAndLongLongs (0 ms) 1210s [----------] 3 tests from ScalarTest (0 ms total) 1210s 1210s [----------] Global test environment tear-down 1210s [==========] 3 tests from 1 test suite ran. (0 ms total) 1210s [ PASSED ] 3 tests. 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1210s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1210s autopkgtest: DBG: testbed command exited with code 0 1210s autopkgtest [08:30:07]: test 28_of_104__cpptest__c10_Scalar_test: -----------------------] 1210s autopkgtest: DBG: testbed executing test finished with exit status 0 1210s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/28_of_104__cpptest__c10_Scalar_test-stdout 1210s autopkgtest: DBG: got reply from testbed: ok 1210s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/28_of_104__cpptest__c10_Scalar_test-stderr 1210s autopkgtest: DBG: got reply from testbed: ok 1211s 28_of_104__cpptest__c10_Scalar_test PASS 1211s autopkgtest [08:30:08]: test 28_of_104__cpptest__c10_Scalar_test: - - - - - - - - - - results - - - - - - - - - - 1211s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1211s autopkgtest: DBG: got reply from testbed: ok 1211s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/28_of_104__cpptest__c10_Scalar_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1211s autopkgtest: DBG: testbed command exited with code 0 1211s autopkgtest [08:30:08]: test 29_of_104__cpptest__c10_SizesAndStrides_test: preparing testbed 1211s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1211s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1211s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1211s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1211s autopkgtest: DBG: can use apt-get on testbed: True 1211s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1211s Reading package lists... 1211s Building dependency tree... 1211s Reading state information... 1211s Starting pkgProblemResolver with broken count: 0 1211s Starting 2 pkgProblemResolver with broken count: 0 1211s Done 1212s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1212s autopkgtest: DBG: testbed command exited with code 0 1212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1212s autopkgtest: DBG: testbed command exited with code 0 1212s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1212s autopkgtest: DBG: testbed command exited with code 0 1212s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-packages.all"], kind short, sout raw, serr pipe, env [] 1212s autopkgtest: DBG: testbed command exited with code 0 1212s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/29_of_104__cpptest__c10_SizesAndStrides_test-packages.all 1212s autopkgtest: DBG: got reply from testbed: ok 1212s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1212s autopkgtest: DBG: testbed command exited with code 0 1212s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1212s autopkgtest [08:30:09]: test 29_of_104__cpptest__c10_SizesAndStrides_test: /usr/lib/libtorch-test/c10_SizesAndStrides_test 1212s autopkgtest [08:30:09]: test 29_of_104__cpptest__c10_SizesAndStrides_test: [----------------------- 1212s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stderr --stdout=/tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_SizesAndStrides_test"], kind test, sout raw, serr raw, env [] 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-artifacts 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stderr 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stdout 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_SizesAndStrides_test 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.xkKKFvx7EH/out to stdout and file: /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stdout 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.xkKKFvx7EH/err to standard error and file: /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stdout 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 6109 to /tmp/autopkgtest_script_pid 1213s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1213s [==========] Running 18 tests from 1 test suite. 1213s [----------] Global test environment set-up. 1213s [----------] 18 tests from SizesAndStridesTest 1213s [ RUN ] SizesAndStridesTest.DefaultConstructor 1213s [ OK ] SizesAndStridesTest.DefaultConstructor (0 ms) 1213s [ RUN ] SizesAndStridesTest.SetSizes 1213s [ OK ] SizesAndStridesTest.SetSizes (0 ms) 1213s [ RUN ] SizesAndStridesTest.Resize 1213s [ OK ] SizesAndStridesTest.Resize (0 ms) 1213s [ RUN ] SizesAndStridesTest.SetAtIndex 1213s [ OK ] SizesAndStridesTest.SetAtIndex (0 ms) 1213s [ RUN ] SizesAndStridesTest.SetAtIterator 1213s [ OK ] SizesAndStridesTest.SetAtIterator (0 ms) 1213s [ RUN ] SizesAndStridesTest.SetViaData 1213s [ OK ] SizesAndStridesTest.SetViaData (0 ms) 1213s [ RUN ] SizesAndStridesTest.MoveConstructor 1213s [ OK ] SizesAndStridesTest.MoveConstructor (0 ms) 1213s [ RUN ] SizesAndStridesTest.CopyConstructor 1213s [ OK ] SizesAndStridesTest.CopyConstructor (0 ms) 1213s [ RUN ] SizesAndStridesTest.CopyAssignmentSmallToSmall 1213s [ OK ] SizesAndStridesTest.CopyAssignmentSmallToSmall (0 ms) 1213s [ RUN ] SizesAndStridesTest.MoveAssignmentSmallToSmall 1213s [ OK ] SizesAndStridesTest.MoveAssignmentSmallToSmall (0 ms) 1213s [ RUN ] SizesAndStridesTest.CopyAssignmentSmallToBig 1213s [ OK ] SizesAndStridesTest.CopyAssignmentSmallToBig (0 ms) 1213s [ RUN ] SizesAndStridesTest.MoveAssignmentSmallToBig 1213s [ OK ] SizesAndStridesTest.MoveAssignmentSmallToBig (0 ms) 1213s [ RUN ] SizesAndStridesTest.CopyAssignmentBigToBig 1213s [ OK ] SizesAndStridesTest.CopyAssignmentBigToBig (0 ms) 1213s [ RUN ] SizesAndStridesTest.MoveAssignmentBigToBig 1213s [ OK ] SizesAndStridesTest.MoveAssignmentBigToBig (0 ms) 1213s [ RUN ] SizesAndStridesTest.CopyAssignmentBigToSmall 1213s [ OK ] SizesAndStridesTest.CopyAssignmentBigToSmall (0 ms) 1213s [ RUN ] SizesAndStridesTest.MoveAssignmentBigToSmall 1213s [ OK ] SizesAndStridesTest.MoveAssignmentBigToSmall (0 ms) 1213s [ RUN ] SizesAndStridesTest.CopyAssignmentSelf 1213s [ OK ] SizesAndStridesTest.CopyAssignmentSelf (0 ms) 1213s [ RUN ] SizesAndStridesTest.MoveAssignmentSelf 1213s [ OK ] SizesAndStridesTest.MoveAssignmentSelf (0 ms) 1213s [----------] 18 tests from SizesAndStridesTest (0 ms total) 1213s 1213s [----------] Global test environment tear-down 1213s [==========] 18 tests from 1 test suite ran. (0 ms total) 1213s [ PASSED ] 18 tests. 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1213s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1213s autopkgtest: DBG: testbed command exited with code 0 1213s autopkgtest [08:30:10]: test 29_of_104__cpptest__c10_SizesAndStrides_test: -----------------------] 1213s autopkgtest: DBG: testbed executing test finished with exit status 0 1213s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/29_of_104__cpptest__c10_SizesAndStrides_test-stdout 1213s autopkgtest: DBG: got reply from testbed: ok 1213s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/29_of_104__cpptest__c10_SizesAndStrides_test-stderr 1213s autopkgtest: DBG: got reply from testbed: ok 1213s 29_of_104__cpptest__c10_SizesAndStrides_test PASS 1213s autopkgtest [08:30:10]: test 29_of_104__cpptest__c10_SizesAndStrides_test: - - - - - - - - - - results - - - - - - - - - - 1213s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1213s autopkgtest: DBG: got reply from testbed: ok 1213s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/29_of_104__cpptest__c10_SizesAndStrides_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1214s autopkgtest: DBG: testbed command exited with code 0 1214s autopkgtest [08:30:11]: test 30_of_104__cpptest__c10_StreamGuard_test: preparing testbed 1214s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1214s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1214s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1214s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1214s autopkgtest: DBG: can use apt-get on testbed: True 1214s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1214s Reading package lists... 1214s Building dependency tree... 1214s Reading state information... 1214s Starting pkgProblemResolver with broken count: 0 1214s Starting 2 pkgProblemResolver with broken count: 0 1214s Done 1214s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1214s autopkgtest: DBG: testbed command exited with code 0 1214s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1214s autopkgtest: DBG: testbed command exited with code 0 1214s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1215s autopkgtest: DBG: testbed command exited with code 0 1215s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-packages.all"], kind short, sout raw, serr pipe, env [] 1215s autopkgtest: DBG: testbed command exited with code 0 1215s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/30_of_104__cpptest__c10_StreamGuard_test-packages.all 1215s autopkgtest: DBG: got reply from testbed: ok 1215s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1215s autopkgtest: DBG: testbed command exited with code 0 1215s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1215s autopkgtest [08:30:12]: test 30_of_104__cpptest__c10_StreamGuard_test: /usr/lib/libtorch-test/c10_StreamGuard_test 1215s autopkgtest [08:30:12]: test 30_of_104__cpptest__c10_StreamGuard_test: [----------------------- 1215s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stderr --stdout=/tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_StreamGuard_test"], kind test, sout raw, serr raw, env [] 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-artifacts 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stderr 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stdout 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_StreamGuard_test 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.VCwLeoWXSZ/out to stdout and file: /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stdout 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.VCwLeoWXSZ/err to standard error and file: /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stdout 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 6262 to /tmp/autopkgtest_script_pid 1215s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1215s [==========] Running 0 tests from 0 test suites. 1215s [==========] 0 tests from 0 test suites ran. (0 ms total) 1215s [ PASSED ] 0 tests. 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1215s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1215s autopkgtest: DBG: testbed command exited with code 0 1215s autopkgtest [08:30:12]: test 30_of_104__cpptest__c10_StreamGuard_test: -----------------------] 1215s autopkgtest: DBG: testbed executing test finished with exit status 0 1215s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/30_of_104__cpptest__c10_StreamGuard_test-stdout 1216s autopkgtest: DBG: got reply from testbed: ok 1216s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/30_of_104__cpptest__c10_StreamGuard_test-stderr 1216s autopkgtest: DBG: got reply from testbed: ok 1216s 30_of_104__cpptest__c10_StreamGuard_test PASS 1216s autopkgtest [08:30:13]: test 30_of_104__cpptest__c10_StreamGuard_test: - - - - - - - - - - results - - - - - - - - - - 1216s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1216s autopkgtest: DBG: got reply from testbed: ok 1216s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/30_of_104__cpptest__c10_StreamGuard_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1216s autopkgtest: DBG: testbed command exited with code 0 1216s autopkgtest [08:30:13]: test 31_of_104__cpptest__c10_SymInt_test: preparing testbed 1216s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1216s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1216s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1216s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1216s autopkgtest: DBG: can use apt-get on testbed: True 1216s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1216s Reading package lists... 1217s Building dependency tree... 1217s Reading state information... 1217s Starting pkgProblemResolver with broken count: 0 1217s Starting 2 pkgProblemResolver with broken count: 0 1217s Done 1217s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1217s autopkgtest: DBG: testbed command exited with code 0 1217s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1217s autopkgtest: DBG: testbed command exited with code 0 1217s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1217s autopkgtest: DBG: testbed command exited with code 0 1217s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-packages.all"], kind short, sout raw, serr pipe, env [] 1217s autopkgtest: DBG: testbed command exited with code 0 1217s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/31_of_104__cpptest__c10_SymInt_test-packages.all 1218s autopkgtest: DBG: got reply from testbed: ok 1218s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1218s autopkgtest: DBG: testbed command exited with code 0 1218s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1218s autopkgtest [08:30:15]: test 31_of_104__cpptest__c10_SymInt_test: /usr/lib/libtorch-test/c10_SymInt_test 1218s autopkgtest [08:30:15]: test 31_of_104__cpptest__c10_SymInt_test: [----------------------- 1218s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/31_of_104__cpptest__c10_SymInt_test-stderr --stdout=/tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_SymInt_test"], kind test, sout raw, serr raw, env [] 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-artifacts 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stderr 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stdout 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_SymInt_test 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.CIVwsoPgHT/out to stdout and file: /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stdout 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.CIVwsoPgHT/err to standard error and file: /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stdout 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 6415 to /tmp/autopkgtest_script_pid 1218s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1218s [==========] Running 3 tests from 1 test suite. 1218s [----------] Global test environment set-up. 1218s [----------] 3 tests from SymIntTest 1218s [ RUN ] SymIntTest.ConcreteInts 1218s [ OK ] SymIntTest.ConcreteInts (0 ms) 1218s [ RUN ] SymIntTest.CheckRange 1218s [ OK ] SymIntTest.CheckRange (0 ms) 1218s [ RUN ] SymIntTest.Overflows 1218s [ OK ] SymIntTest.Overflows (0 ms) 1218s [----------] 3 tests from SymIntTest (0 ms total) 1218s 1218s [----------] Global test environment tear-down 1218s [==========] 3 tests from 1 test suite ran. (0 ms total) 1218s [ PASSED ] 3 tests. 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1218s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1218s autopkgtest: DBG: testbed command exited with code 0 1218s autopkgtest [08:30:15]: test 31_of_104__cpptest__c10_SymInt_test: -----------------------] 1218s autopkgtest: DBG: testbed executing test finished with exit status 0 1218s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/31_of_104__cpptest__c10_SymInt_test-stdout 1218s autopkgtest: DBG: got reply from testbed: ok 1218s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/31_of_104__cpptest__c10_SymInt_test-stderr 1218s autopkgtest: DBG: got reply from testbed: ok 1219s 31_of_104__cpptest__c10_SymInt_test PASS 1219s autopkgtest [08:30:16]: test 31_of_104__cpptest__c10_SymInt_test: - - - - - - - - - - results - - - - - - - - - - 1219s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1219s autopkgtest: DBG: got reply from testbed: ok 1219s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/31_of_104__cpptest__c10_SymInt_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1219s autopkgtest: DBG: testbed command exited with code 0 1219s autopkgtest [08:30:16]: test 32_of_104__cpptest__c10_Synchronized_test: preparing testbed 1219s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1219s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1219s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1219s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1219s autopkgtest: DBG: can use apt-get on testbed: True 1219s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1219s Reading package lists... 1219s Building dependency tree... 1219s Reading state information... 1219s Starting pkgProblemResolver with broken count: 0 1219s Starting 2 pkgProblemResolver with broken count: 0 1219s Done 1220s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1220s autopkgtest: DBG: testbed command exited with code 0 1220s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1220s autopkgtest: DBG: testbed command exited with code 0 1220s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1220s autopkgtest: DBG: testbed command exited with code 0 1220s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-packages.all"], kind short, sout raw, serr pipe, env [] 1220s autopkgtest: DBG: testbed command exited with code 0 1220s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/32_of_104__cpptest__c10_Synchronized_test-packages.all 1220s autopkgtest: DBG: got reply from testbed: ok 1220s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1220s autopkgtest: DBG: testbed command exited with code 0 1220s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1220s autopkgtest [08:30:17]: test 32_of_104__cpptest__c10_Synchronized_test: /usr/lib/libtorch-test/c10_Synchronized_test 1220s autopkgtest [08:30:17]: test 32_of_104__cpptest__c10_Synchronized_test: [----------------------- 1220s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stderr --stdout=/tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_Synchronized_test"], kind test, sout raw, serr raw, env [] 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-artifacts 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stderr 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stdout 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_Synchronized_test 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.xZH8umVVNb/out to stdout and file: /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stdout 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.xZH8umVVNb/err to standard error and file: /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stdout 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 6568 to /tmp/autopkgtest_script_pid 1220s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1220s [==========] Running 2 tests from 1 test suite. 1220s [----------] Global test environment set-up. 1220s [----------] 2 tests from Synchronized 1220s [ RUN ] Synchronized.TestSingleThreadExecution 1220s [ OK ] Synchronized.TestSingleThreadExecution (0 ms) 1220s [ RUN ] Synchronized.TestMultiThreadedExecution 1220s [ OK ] Synchronized.TestMultiThreadedExecution (1 ms) 1220s [----------] 2 tests from Synchronized (1 ms total) 1220s 1220s [----------] Global test environment tear-down 1220s [==========] 2 tests from 1 test suite ran. (1 ms total) 1220s [ PASSED ] 2 tests. 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1220s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1220s autopkgtest: DBG: testbed command exited with code 0 1221s autopkgtest [08:30:18]: test 32_of_104__cpptest__c10_Synchronized_test: -----------------------] 1221s autopkgtest: DBG: testbed executing test finished with exit status 0 1221s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/32_of_104__cpptest__c10_Synchronized_test-stdout 1221s autopkgtest: DBG: got reply from testbed: ok 1221s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/32_of_104__cpptest__c10_Synchronized_test-stderr 1221s autopkgtest: DBG: got reply from testbed: ok 1221s 32_of_104__cpptest__c10_Synchronized_test PASS 1221s autopkgtest [08:30:18]: test 32_of_104__cpptest__c10_Synchronized_test: - - - - - - - - - - results - - - - - - - - - - 1221s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1221s autopkgtest: DBG: got reply from testbed: ok 1221s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/32_of_104__cpptest__c10_Synchronized_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1221s autopkgtest: DBG: testbed command exited with code 0 1221s autopkgtest [08:30:18]: test 33_of_104__cpptest__c10_ThreadLocal_test: preparing testbed 1221s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1221s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1221s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1221s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1221s autopkgtest: DBG: can use apt-get on testbed: True 1221s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1222s Reading package lists... 1222s Building dependency tree... 1222s Reading state information... 1222s Starting pkgProblemResolver with broken count: 0 1222s Starting 2 pkgProblemResolver with broken count: 0 1222s Done 1222s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1222s autopkgtest: DBG: testbed command exited with code 0 1222s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1222s autopkgtest: DBG: testbed command exited with code 0 1222s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1222s autopkgtest: DBG: testbed command exited with code 0 1222s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-packages.all"], kind short, sout raw, serr pipe, env [] 1223s autopkgtest: DBG: testbed command exited with code 0 1223s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/33_of_104__cpptest__c10_ThreadLocal_test-packages.all 1223s autopkgtest: DBG: got reply from testbed: ok 1223s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1223s autopkgtest: DBG: testbed command exited with code 0 1223s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1223s autopkgtest [08:30:20]: test 33_of_104__cpptest__c10_ThreadLocal_test: /usr/lib/libtorch-test/c10_ThreadLocal_test 1223s autopkgtest [08:30:20]: test 33_of_104__cpptest__c10_ThreadLocal_test: [----------------------- 1223s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stderr --stdout=/tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_ThreadLocal_test"], kind test, sout raw, serr raw, env [] 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-artifacts 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stderr 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stdout 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_ThreadLocal_test 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.axaxpLiUlC/out to stdout and file: /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stdout 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.axaxpLiUlC/err to standard error and file: /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stdout 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 6731 to /tmp/autopkgtest_script_pid 1223s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1223s [==========] Running 12 tests from 2 test suites. 1223s [----------] Global test environment set-up. 1223s [----------] 1 test from ThreadLocal 1223s [ RUN ] ThreadLocal.TestNoOpScopeWithOneVar 1223s [ OK ] ThreadLocal.TestNoOpScopeWithOneVar (0 ms) 1223s [----------] 1 test from ThreadLocal (0 ms total) 1223s 1223s [----------] 11 tests from ThreadLocalTest 1223s [ RUN ] ThreadLocalTest.TestNoOpScopeWithTwoVars 1223s [ OK ] ThreadLocalTest.TestNoOpScopeWithTwoVars (0 ms) 1223s [ RUN ] ThreadLocalTest.TestScopeWithOneVar 1223s [ OK ] ThreadLocalTest.TestScopeWithOneVar (0 ms) 1223s [ RUN ] ThreadLocalTest.TestScopeWithTwoVars 1223s [ OK ] ThreadLocalTest.TestScopeWithTwoVars (0 ms) 1223s [ RUN ] ThreadLocalTest.TestInnerScopeWithTwoVars 1223s [ OK ] ThreadLocalTest.TestInnerScopeWithTwoVars (0 ms) 1223s [ RUN ] ThreadLocalTest.TestClassScope 1223s [ OK ] ThreadLocalTest.TestClassScope (0 ms) 1223s [ RUN ] ThreadLocalTest.TestTwoGlobalScopeVars 1223s [ OK ] ThreadLocalTest.TestTwoGlobalScopeVars (0 ms) 1223s [ RUN ] ThreadLocalTest.TestGlobalWithLocalScopeVars 1223s [ OK ] ThreadLocalTest.TestGlobalWithLocalScopeVars (0 ms) 1223s [ RUN ] ThreadLocalTest.TestThreadWithLocalScopeVar 1223s [ OK ] ThreadLocalTest.TestThreadWithLocalScopeVar (0 ms) 1223s [ RUN ] ThreadLocalTest.TestThreadWithGlobalScopeVar 1223s [ OK ] ThreadLocalTest.TestThreadWithGlobalScopeVar (0 ms) 1223s [ RUN ] ThreadLocalTest.TestObjectsAreReleased 1223s [ OK ] ThreadLocalTest.TestObjectsAreReleased (0 ms) 1223s [ RUN ] ThreadLocalTest.TestObjectsAreReleasedByNonstaticThreadLocal 1223s [ OK ] ThreadLocalTest.TestObjectsAreReleasedByNonstaticThreadLocal (0 ms) 1223s [----------] 11 tests from ThreadLocalTest (0 ms total) 1223s 1223s [----------] Global test environment tear-down 1223s [==========] 12 tests from 2 test suites ran. (0 ms total) 1223s [ PASSED ] 12 tests. 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1223s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1223s autopkgtest: DBG: testbed command exited with code 0 1223s autopkgtest [08:30:20]: test 33_of_104__cpptest__c10_ThreadLocal_test: -----------------------] 1223s autopkgtest: DBG: testbed executing test finished with exit status 0 1223s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/33_of_104__cpptest__c10_ThreadLocal_test-stdout 1224s autopkgtest: DBG: got reply from testbed: ok 1224s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/33_of_104__cpptest__c10_ThreadLocal_test-stderr 1224s autopkgtest: DBG: got reply from testbed: ok 1224s 33_of_104__cpptest__c10_ThreadLocal_test PASS 1224s autopkgtest [08:30:21]: test 33_of_104__cpptest__c10_ThreadLocal_test: - - - - - - - - - - results - - - - - - - - - - 1224s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1224s autopkgtest: DBG: got reply from testbed: ok 1224s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/33_of_104__cpptest__c10_ThreadLocal_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1224s autopkgtest: DBG: testbed command exited with code 0 1224s autopkgtest [08:30:21]: test 34_of_104__cpptest__c10_TypeIndex_test: preparing testbed 1224s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1224s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1224s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1224s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1224s autopkgtest: DBG: can use apt-get on testbed: True 1224s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1224s Reading package lists... 1224s Building dependency tree... 1224s Reading state information... 1225s Starting pkgProblemResolver with broken count: 0 1225s Starting 2 pkgProblemResolver with broken count: 0 1225s Done 1225s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1225s autopkgtest: DBG: testbed command exited with code 0 1225s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1225s autopkgtest: DBG: testbed command exited with code 0 1225s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1225s autopkgtest: DBG: testbed command exited with code 0 1225s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-packages.all"], kind short, sout raw, serr pipe, env [] 1225s autopkgtest: DBG: testbed command exited with code 0 1225s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/34_of_104__cpptest__c10_TypeIndex_test-packages.all 1225s autopkgtest: DBG: got reply from testbed: ok 1225s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1226s autopkgtest: DBG: testbed command exited with code 0 1226s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1226s autopkgtest [08:30:23]: test 34_of_104__cpptest__c10_TypeIndex_test: /usr/lib/libtorch-test/c10_TypeIndex_test 1226s autopkgtest [08:30:23]: test 34_of_104__cpptest__c10_TypeIndex_test: [----------------------- 1226s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stderr --stdout=/tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_TypeIndex_test"], kind test, sout raw, serr raw, env [] 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-artifacts 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stderr 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stdout 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_TypeIndex_test 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4vYyOVmJEr/out to stdout and file: /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stdout 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4vYyOVmJEr/err to standard error and file: /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stdout 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 6888 to /tmp/autopkgtest_script_pid 1226s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1226s [==========] Running 7 tests from 1 test suite. 1226s [----------] Global test environment set-up. 1226s [----------] 7 tests from TypeIndex 1226s [ RUN ] TypeIndex.TopLevelName 1226s [ OK ] TypeIndex.TopLevelName (0 ms) 1226s [ RUN ] TypeIndex.NestedName 1226s [ OK ] TypeIndex.NestedName (0 ms) 1226s [ RUN ] TypeIndex.TypeTemplateParameter 1226s [ OK ] TypeIndex.TypeTemplateParameter (0 ms) 1226s [ RUN ] TypeIndex.NonTypeTemplateParameter 1226s [ OK ] TypeIndex.NonTypeTemplateParameter (0 ms) 1226s [ RUN ] TypeIndex.TypeComputationsAreResolved 1226s [ OK ] TypeIndex.TypeComputationsAreResolved (0 ms) 1226s [ RUN ] TypeIndex.FunctionTypeComputationsAreResolved 1226s [ OK ] TypeIndex.FunctionTypeComputationsAreResolved (0 ms) 1226s [ RUN ] TypeIndex.FunctionArgumentsAndReturns 1226s [ OK ] TypeIndex.FunctionArgumentsAndReturns (0 ms) 1226s [----------] 7 tests from TypeIndex (0 ms total) 1226s 1226s [----------] Global test environment tear-down 1226s [==========] 7 tests from 1 test suite ran. (0 ms total) 1226s [ PASSED ] 7 tests. 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1226s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1226s autopkgtest: DBG: testbed command exited with code 0 1226s autopkgtest [08:30:23]: test 34_of_104__cpptest__c10_TypeIndex_test: -----------------------] 1226s autopkgtest: DBG: testbed executing test finished with exit status 0 1226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/34_of_104__cpptest__c10_TypeIndex_test-stdout 1226s autopkgtest: DBG: got reply from testbed: ok 1226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/34_of_104__cpptest__c10_TypeIndex_test-stderr 1226s autopkgtest: DBG: got reply from testbed: ok 1226s autopkgtest [08:30:23]: test 34_of_104__cpptest__c10_TypeIndex_test: - - - - - - - - - - results - - - - - - - - - - 1226s 34_of_104__cpptest__c10_TypeIndex_test PASS 1226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1227s autopkgtest: DBG: got reply from testbed: ok 1227s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/34_of_104__cpptest__c10_TypeIndex_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1227s autopkgtest: DBG: testbed command exited with code 0 1227s autopkgtest [08:30:24]: test 35_of_104__cpptest__c10_TypeList_test: preparing testbed 1227s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1227s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1227s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1227s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1227s autopkgtest: DBG: can use apt-get on testbed: True 1227s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1227s Reading package lists... 1227s Building dependency tree... 1227s Reading state information... 1227s Starting pkgProblemResolver with broken count: 0 1227s Starting 2 pkgProblemResolver with broken count: 0 1227s Done 1227s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1227s autopkgtest: DBG: testbed command exited with code 0 1227s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1228s autopkgtest: DBG: testbed command exited with code 0 1228s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1228s autopkgtest: DBG: testbed command exited with code 0 1228s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-packages.all"], kind short, sout raw, serr pipe, env [] 1228s autopkgtest: DBG: testbed command exited with code 0 1228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/35_of_104__cpptest__c10_TypeList_test-packages.all 1228s autopkgtest: DBG: got reply from testbed: ok 1228s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1228s autopkgtest: DBG: testbed command exited with code 0 1228s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1228s autopkgtest [08:30:25]: test 35_of_104__cpptest__c10_TypeList_test: /usr/lib/libtorch-test/c10_TypeList_test 1228s autopkgtest [08:30:25]: test 35_of_104__cpptest__c10_TypeList_test: [----------------------- 1228s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/35_of_104__cpptest__c10_TypeList_test-stderr --stdout=/tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_TypeList_test"], kind test, sout raw, serr raw, env [] 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-artifacts 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stderr 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stdout 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_TypeList_test 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.fkHAcnhxkK/out to stdout and file: /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stdout 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.fkHAcnhxkK/err to standard error and file: /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stdout 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7041 to /tmp/autopkgtest_script_pid 1228s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1228s [==========] Running 4 tests from 1 test suite. 1228s [----------] Global test environment set-up. 1228s [----------] 4 tests from TypeListTest 1228s [ RUN ] TypeListTest.MapTypesToValues_sametype 1228s [ OK ] TypeListTest.MapTypesToValues_sametype (0 ms) 1228s [ RUN ] TypeListTest.MapTypesToValues_differenttypes 1228s [ OK ] TypeListTest.MapTypesToValues_differenttypes (0 ms) 1228s [ RUN ] TypeListTest.MapTypesToValues_members 1228s [ OK ] TypeListTest.MapTypesToValues_members (0 ms) 1228s [ RUN ] TypeListTest.MapTypesToValues_empty 1228s [ OK ] TypeListTest.MapTypesToValues_empty (0 ms) 1228s [----------] 4 tests from TypeListTest (0 ms total) 1228s 1228s [----------] Global test environment tear-down 1228s [==========] 4 tests from 1 test suite ran. (0 ms total) 1228s [ PASSED ] 4 tests. 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1228s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1228s autopkgtest: DBG: testbed command exited with code 0 1229s autopkgtest [08:30:26]: test 35_of_104__cpptest__c10_TypeList_test: -----------------------] 1229s autopkgtest: DBG: testbed executing test finished with exit status 0 1229s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/35_of_104__cpptest__c10_TypeList_test-stdout 1229s autopkgtest: DBG: got reply from testbed: ok 1229s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/35_of_104__cpptest__c10_TypeList_test-stderr 1229s autopkgtest: DBG: got reply from testbed: ok 1229s autopkgtest [08:30:26]: test 35_of_104__cpptest__c10_TypeList_test: - - - - - - - - - - results - - - - - - - - - - 1229s 35_of_104__cpptest__c10_TypeList_test PASS 1229s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1229s autopkgtest: DBG: got reply from testbed: ok 1229s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/35_of_104__cpptest__c10_TypeList_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1229s autopkgtest: DBG: testbed command exited with code 0 1229s autopkgtest [08:30:26]: test 36_of_104__cpptest__c10_TypeTraits_test: preparing testbed 1229s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1229s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1229s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1229s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1229s autopkgtest: DBG: can use apt-get on testbed: True 1229s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1230s Reading package lists... 1230s Building dependency tree... 1230s Reading state information... 1230s Starting pkgProblemResolver with broken count: 0 1230s Starting 2 pkgProblemResolver with broken count: 0 1230s Done 1230s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1230s autopkgtest: DBG: testbed command exited with code 0 1230s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1230s autopkgtest: DBG: testbed command exited with code 0 1230s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1230s autopkgtest: DBG: testbed command exited with code 0 1230s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-packages.all"], kind short, sout raw, serr pipe, env [] 1231s autopkgtest: DBG: testbed command exited with code 0 1231s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/36_of_104__cpptest__c10_TypeTraits_test-packages.all 1231s autopkgtest: DBG: got reply from testbed: ok 1231s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1231s autopkgtest: DBG: testbed command exited with code 0 1231s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1231s autopkgtest [08:30:28]: test 36_of_104__cpptest__c10_TypeTraits_test: /usr/lib/libtorch-test/c10_TypeTraits_test 1231s autopkgtest [08:30:28]: test 36_of_104__cpptest__c10_TypeTraits_test: [----------------------- 1231s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stderr --stdout=/tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_TypeTraits_test"], kind test, sout raw, serr raw, env [] 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-artifacts 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stderr 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stdout 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_TypeTraits_test 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.89uqPCLvCG/out to stdout and file: /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stdout 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.89uqPCLvCG/err to standard error and file: /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stdout 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7194 to /tmp/autopkgtest_script_pid 1231s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1231s [==========] Running 0 tests from 0 test suites. 1231s [==========] 0 tests from 0 test suites ran. (0 ms total) 1231s [ PASSED ] 0 tests. 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1231s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1231s autopkgtest: DBG: testbed command exited with code 0 1231s autopkgtest [08:30:28]: test 36_of_104__cpptest__c10_TypeTraits_test: -----------------------] 1231s autopkgtest: DBG: testbed executing test finished with exit status 0 1231s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/36_of_104__cpptest__c10_TypeTraits_test-stdout 1232s autopkgtest: DBG: got reply from testbed: ok 1232s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/36_of_104__cpptest__c10_TypeTraits_test-stderr 1232s autopkgtest: DBG: got reply from testbed: ok 1232s 36_of_104__cpptest__c10_TypeTraits_test PASS 1232s autopkgtest [08:30:29]: test 36_of_104__cpptest__c10_TypeTraits_test: - - - - - - - - - - results - - - - - - - - - - 1232s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1232s autopkgtest: DBG: got reply from testbed: ok 1232s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/36_of_104__cpptest__c10_TypeTraits_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1232s autopkgtest: DBG: testbed command exited with code 0 1232s autopkgtest [08:30:29]: test 37_of_104__cpptest__c10_accumulate_test: preparing testbed 1232s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1232s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1232s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1232s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1232s autopkgtest: DBG: can use apt-get on testbed: True 1232s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1232s Reading package lists... 1232s Building dependency tree... 1232s Reading state information... 1233s Starting pkgProblemResolver with broken count: 0 1233s Starting 2 pkgProblemResolver with broken count: 0 1233s Done 1233s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1233s autopkgtest: DBG: testbed command exited with code 0 1233s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1233s autopkgtest: DBG: testbed command exited with code 0 1233s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1233s autopkgtest: DBG: testbed command exited with code 0 1233s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-packages.all"], kind short, sout raw, serr pipe, env [] 1233s autopkgtest: DBG: testbed command exited with code 0 1233s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/37_of_104__cpptest__c10_accumulate_test-packages.all 1233s autopkgtest: DBG: got reply from testbed: ok 1233s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1234s autopkgtest: DBG: testbed command exited with code 0 1234s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1234s autopkgtest [08:30:31]: test 37_of_104__cpptest__c10_accumulate_test: /usr/lib/libtorch-test/c10_accumulate_test 1234s autopkgtest [08:30:31]: test 37_of_104__cpptest__c10_accumulate_test: [----------------------- 1234s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/37_of_104__cpptest__c10_accumulate_test-stderr --stdout=/tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_accumulate_test"], kind test, sout raw, serr raw, env [] 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-artifacts 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stderr 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stdout 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_accumulate_test 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.8aFohmVef5/out to stdout and file: /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stdout 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.8aFohmVef5/err to standard error and file: /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stdout 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7347 to /tmp/autopkgtest_script_pid 1234s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1234s [==========] Running 4 tests from 1 test suite. 1234s [----------] Global test environment set-up. 1234s [----------] 4 tests from accumulateTest 1234s [ RUN ] accumulateTest.vector_test 1234s [ OK ] accumulateTest.vector_test (0 ms) 1234s [ RUN ] accumulateTest.list_test 1234s [ OK ] accumulateTest.list_test (0 ms) 1234s [ RUN ] accumulateTest.base_cases 1234s [ OK ] accumulateTest.base_cases (0 ms) 1234s [ RUN ] accumulateTest.errors 1234s [ OK ] accumulateTest.errors (0 ms) 1234s [----------] 4 tests from accumulateTest (0 ms total) 1234s 1234s [----------] Global test environment tear-down 1234s [==========] 4 tests from 1 test suite ran. (0 ms total) 1234s [ PASSED ] 4 tests. 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1234s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1234s autopkgtest: DBG: testbed command exited with code 0 1234s autopkgtest [08:30:31]: test 37_of_104__cpptest__c10_accumulate_test: -----------------------] 1234s autopkgtest: DBG: testbed executing test finished with exit status 0 1234s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/37_of_104__cpptest__c10_accumulate_test-stdout 1234s autopkgtest: DBG: got reply from testbed: ok 1234s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/37_of_104__cpptest__c10_accumulate_test-stderr 1234s autopkgtest: DBG: got reply from testbed: ok 1235s 37_of_104__cpptest__c10_accumulate_test PASS 1235s autopkgtest [08:30:32]: test 37_of_104__cpptest__c10_accumulate_test: - - - - - - - - - - results - - - - - - - - - - 1235s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1235s autopkgtest: DBG: got reply from testbed: ok 1235s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/37_of_104__cpptest__c10_accumulate_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1235s autopkgtest: DBG: testbed command exited with code 0 1235s autopkgtest [08:30:32]: test 38_of_104__cpptest__c10_bfloat16_test: preparing testbed 1235s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1235s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1235s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1235s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1235s autopkgtest: DBG: can use apt-get on testbed: True 1235s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1235s Reading package lists... 1235s Building dependency tree... 1235s Reading state information... 1235s Starting pkgProblemResolver with broken count: 0 1235s Starting 2 pkgProblemResolver with broken count: 0 1235s Done 1236s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1236s autopkgtest: DBG: testbed command exited with code 0 1236s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1236s autopkgtest: DBG: testbed command exited with code 0 1236s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1236s autopkgtest: DBG: testbed command exited with code 0 1236s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-packages.all"], kind short, sout raw, serr pipe, env [] 1236s autopkgtest: DBG: testbed command exited with code 0 1236s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/38_of_104__cpptest__c10_bfloat16_test-packages.all 1236s autopkgtest: DBG: got reply from testbed: ok 1236s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1236s autopkgtest: DBG: testbed command exited with code 0 1236s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1236s autopkgtest [08:30:33]: test 38_of_104__cpptest__c10_bfloat16_test: /usr/lib/libtorch-test/c10_bfloat16_test 1236s autopkgtest [08:30:33]: test 38_of_104__cpptest__c10_bfloat16_test: [----------------------- 1236s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stderr --stdout=/tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_bfloat16_test"], kind test, sout raw, serr raw, env [] 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-artifacts 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stderr 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stdout 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_bfloat16_test 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.66OFCt07pt/out to stdout and file: /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stdout 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.66OFCt07pt/err to standard error and file: /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stdout 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7500 to /tmp/autopkgtest_script_pid 1236s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1236s [==========] Running 13 tests from 3 test suites. 1236s [----------] Global test environment set-up. 1236s [----------] 5 tests from BFloat16Conversion 1236s [ RUN ] BFloat16Conversion.FloatToBFloat16AndBack 1236s [ OK ] BFloat16Conversion.FloatToBFloat16AndBack (0 ms) 1236s [ RUN ] BFloat16Conversion.FloatToBFloat16RNEAndBack 1236s [ OK ] BFloat16Conversion.FloatToBFloat16RNEAndBack (0 ms) 1236s [ RUN ] BFloat16Conversion.NaN 1236s [ OK ] BFloat16Conversion.NaN (0 ms) 1236s [ RUN ] BFloat16Conversion.Inf 1236s [ OK ] BFloat16Conversion.Inf (0 ms) 1236s [ RUN ] BFloat16Conversion.SmallestDenormal 1236s [ OK ] BFloat16Conversion.SmallestDenormal (0 ms) 1236s [----------] 5 tests from BFloat16Conversion (0 ms total) 1236s 1236s [----------] 3 tests from BFloat16Math 1236s [ RUN ] BFloat16Math.Addition 1236s [ OK ] BFloat16Math.Addition (0 ms) 1236s [ RUN ] BFloat16Math.Subtraction 1236s [ OK ] BFloat16Math.Subtraction (0 ms) 1236s [ RUN ] BFloat16Math.NextAfterZero 1236s [ OK ] BFloat16Math.NextAfterZero (0 ms) 1236s [----------] 3 tests from BFloat16Math (0 ms total) 1236s 1236s [----------] 5 tests from BFloat16TestInstantiation/BFloat16Test 1236s [ RUN ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/0 1236s [ OK ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/0 (0 ms) 1236s [ RUN ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/1 1236s [ OK ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/1 (0 ms) 1236s [ RUN ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/2 1236s [ OK ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/2 (0 ms) 1236s [ RUN ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/3 1236s [ OK ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/3 (0 ms) 1236s [ RUN ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/4 1236s [ OK ] BFloat16TestInstantiation/BFloat16Test.BFloat16RNETest/4 (0 ms) 1236s [----------] 5 tests from BFloat16TestInstantiation/BFloat16Test (0 ms total) 1236s 1236s [----------] Global test environment tear-down 1236s [==========] 13 tests from 3 test suites ran. (0 ms total) 1236s [ PASSED ] 13 tests. 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1236s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1237s autopkgtest: DBG: testbed command exited with code 0 1237s autopkgtest [08:30:34]: test 38_of_104__cpptest__c10_bfloat16_test: -----------------------] 1237s autopkgtest: DBG: testbed executing test finished with exit status 0 1237s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/38_of_104__cpptest__c10_bfloat16_test-stdout 1237s autopkgtest: DBG: got reply from testbed: ok 1237s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/38_of_104__cpptest__c10_bfloat16_test-stderr 1237s autopkgtest: DBG: got reply from testbed: ok 1237s 38_of_104__cpptest__c10_bfloat16_test PASS 1237s autopkgtest [08:30:34]: test 38_of_104__cpptest__c10_bfloat16_test: - - - - - - - - - - results - - - - - - - - - - 1237s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1237s autopkgtest: DBG: got reply from testbed: ok 1237s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/38_of_104__cpptest__c10_bfloat16_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest [08:30:35]: test 39_of_104__cpptest__c10_bit_cast_test: preparing testbed 1238s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1238s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1238s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1238s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1238s autopkgtest: DBG: can use apt-get on testbed: True 1238s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1238s Reading package lists... 1238s Building dependency tree... 1238s Reading state information... 1238s Starting pkgProblemResolver with broken count: 0 1238s Starting 2 pkgProblemResolver with broken count: 0 1238s Done 1238s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1238s autopkgtest: DBG: testbed command exited with code 0 1238s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1239s autopkgtest: DBG: testbed command exited with code 0 1239s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-packages.all"], kind short, sout raw, serr pipe, env [] 1239s autopkgtest: DBG: testbed command exited with code 0 1239s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/39_of_104__cpptest__c10_bit_cast_test-packages.all 1239s autopkgtest: DBG: got reply from testbed: ok 1239s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1239s autopkgtest: DBG: testbed command exited with code 0 1239s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1239s autopkgtest [08:30:36]: test 39_of_104__cpptest__c10_bit_cast_test: /usr/lib/libtorch-test/c10_bit_cast_test 1239s autopkgtest [08:30:36]: test 39_of_104__cpptest__c10_bit_cast_test: [----------------------- 1239s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stderr --stdout=/tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_bit_cast_test"], kind test, sout raw, serr raw, env [] 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-artifacts 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stderr 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stdout 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_bit_cast_test 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.CIdziX2Q48/out to stdout and file: /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stdout 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.CIdziX2Q48/err to standard error and file: /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stdout 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7653 to /tmp/autopkgtest_script_pid 1239s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1239s [==========] Running 1 test from 1 test suite. 1239s [----------] Global test environment set-up. 1239s [----------] 1 test from bitCastTest 1239s [ RUN ] bitCastTest.basic 1239s [ OK ] bitCastTest.basic (0 ms) 1239s [----------] 1 test from bitCastTest (0 ms total) 1239s 1239s [----------] Global test environment tear-down 1239s [==========] 1 test from 1 test suite ran. (0 ms total) 1239s [ PASSED ] 1 test. 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1239s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1239s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest [08:30:37]: test 39_of_104__cpptest__c10_bit_cast_test: -----------------------] 1240s autopkgtest: DBG: testbed executing test finished with exit status 0 1240s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/39_of_104__cpptest__c10_bit_cast_test-stdout 1240s autopkgtest: DBG: got reply from testbed: ok 1240s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/39_of_104__cpptest__c10_bit_cast_test-stderr 1240s autopkgtest: DBG: got reply from testbed: ok 1240s autopkgtest [08:30:37]: test 39_of_104__cpptest__c10_bit_cast_test: - - - - - - - - - - results - - - - - - - - - - 1240s 39_of_104__cpptest__c10_bit_cast_test PASS 1240s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1240s autopkgtest: DBG: got reply from testbed: ok 1240s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/39_of_104__cpptest__c10_bit_cast_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1240s autopkgtest: DBG: testbed command exited with code 0 1240s autopkgtest [08:30:37]: test 40_of_104__cpptest__c10_complex_math_test: preparing testbed 1240s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1240s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1240s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1240s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1240s autopkgtest: DBG: can use apt-get on testbed: True 1240s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1241s Reading package lists... 1241s Building dependency tree... 1241s Reading state information... 1241s Starting pkgProblemResolver with broken count: 0 1241s Starting 2 pkgProblemResolver with broken count: 0 1241s Done 1241s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1241s autopkgtest: DBG: testbed command exited with code 0 1241s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1241s autopkgtest: DBG: testbed command exited with code 0 1241s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1241s autopkgtest: DBG: testbed command exited with code 0 1241s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-packages.all"], kind short, sout raw, serr pipe, env [] 1241s autopkgtest: DBG: testbed command exited with code 0 1241s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/40_of_104__cpptest__c10_complex_math_test-packages.all 1242s autopkgtest: DBG: got reply from testbed: ok 1242s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1242s autopkgtest: DBG: testbed command exited with code 0 1242s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1242s autopkgtest [08:30:39]: test 40_of_104__cpptest__c10_complex_math_test: /usr/lib/libtorch-test/c10_complex_math_test 1242s autopkgtest [08:30:39]: test 40_of_104__cpptest__c10_complex_math_test: [----------------------- 1242s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/40_of_104__cpptest__c10_complex_math_test-stderr --stdout=/tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_complex_math_test"], kind test, sout raw, serr raw, env [] 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-artifacts 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stderr 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stdout 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_complex_math_test 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.f51NbMymWb/out to stdout and file: /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stdout 1242s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1242s [==========] Running 17 tests from 13 test suites. 1242s [----------] Global test environment set-up. 1242s [----------] 2 tests from TestExponential 1242s [ RUN ] TestExponential.IPi 1242s [ OK ] TestExponential.IPi (0 ms) 1242s [ RUN ] TestExponential.EulerFormula 1242s [ OK ] TestExponential.EulerFormula (0 ms) 1242s [----------] 2 tests from TestExponential (0 ms total) 1242s 1242s [----------] 2 tests from TestExpm1 1242s [ RUN ] TestExpm1.Normal 1242s [ OK ] TestExpm1.Normal (0 ms) 1242s [ RUN ] TestExpm1.Small 1242s [ OK ] TestExpm1.Small (0 ms) 1242s [----------] 2 tests from TestExpm1 (0 ms total) 1242s 1242s [----------] 1 test from TestLog 1242s [ RUN ] TestLog.Definition 1242s [ OK ] TestLog.Definition (0 ms) 1242s [----------] 1 test from TestLog (0 ms total) 1242s 1242s [----------] 1 test from TestLog10 1242s [ RUN ] TestLog10.Rev 1242s [ OK ] TestLog10.Rev (0 ms) 1242s [----------] 1 test from TestLog10 (0 ms total) 1242s 1242s [----------] 1 test from TestLog2 1242s [ RUN ] TestLog2.Rev 1242s [ OK ] TestLog2.Rev (0 ms) 1242s [----------] 1 test from TestLog2 (0 ms total) 1242s 1242s [----------] 3 tests from TestLog1p 1242s [ RUN ] TestLog1p.Normal 1242s [ OK ] TestLog1p.Normal (0 ms) 1242s [ RUN ] TestLog1p.Small 1242s [ OK ] TestLog1p.Small (0 ms) 1242s [ RUN ] TestLog1p.Extreme 1242s [ OK ] TestLog1p.Extreme (0 ms) 1242s [----------] 3 tests from TestLog1p (0 ms total) 1242s 1242s [----------] 1 test from TestPowSqrt 1242s [ RUN ] TestPowSqrt.Equal 1242s [ OK ] TestPowSqrt.Equal (0 ms) 1242s [----------] 1 test from TestPowSqrt (0 ms total) 1242s 1242s [----------] 1 test from TestPow 1242s [ RUN ] TestPow.Square 1242s [ OK ] TestPow.Square (0 ms) 1242s [----------] 1 test from TestPow (0 ms total) 1242s 1242s [----------] 1 test from TestSinCosSinhCosh 1242s [ RUN ] TestSinCosSinhCosh.Identity 1242s [ OK ] TestSinCosSinhCosh.Identity (0 ms) 1242s [----------] 1 test from TestSinCosSinhCosh (0 ms total) 1242s 1242s [----------] 1 test from TestTan 1242s [ RUN ] TestTan.Identity 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.f51NbMymWb/err to standard error and file: /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stdout 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7806 to /tmp/autopkgtest_script_pid 1242s [ OK ] TestTan.Identity (0 ms) 1242s [----------] 1 test from TestTan (0 ms total) 1242s 1242s [----------] 1 test from TestTanh 1242s [ RUN ] TestTanh.Identity 1242s [ OK ] TestTanh.Identity (0 ms) 1242s [----------] 1 test from TestTanh (0 ms total) 1242s 1242s [----------] 1 test from TestRevTrigonometric 1242s [ RUN ] TestRevTrigonometric.Rev 1242s [ OK ] TestRevTrigonometric.Rev (0 ms) 1242s [----------] 1 test from TestRevTrigonometric (0 ms total) 1242s 1242s [----------] 1 test from TestRevHyperbolic 1242s [ RUN ] TestRevHyperbolic.Rev 1242s [ OK ] TestRevHyperbolic.Rev (0 ms) 1242s [----------] 1 test from TestRevHyperbolic (0 ms total) 1242s 1242s [----------] Global test environment tear-down 1242s [==========] 17 tests from 13 test suites ran. (0 ms total) 1242s [ PASSED ] 17 tests. 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1242s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1242s autopkgtest: DBG: testbed command exited with code 0 1242s autopkgtest [08:30:39]: test 40_of_104__cpptest__c10_complex_math_test: -----------------------] 1242s autopkgtest: DBG: testbed executing test finished with exit status 0 1242s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/40_of_104__cpptest__c10_complex_math_test-stdout 1242s autopkgtest: DBG: got reply from testbed: ok 1242s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/40_of_104__cpptest__c10_complex_math_test-stderr 1243s autopkgtest: DBG: got reply from testbed: ok 1243s 40_of_104__cpptest__c10_complex_math_test PASS 1243s autopkgtest [08:30:40]: test 40_of_104__cpptest__c10_complex_math_test: - - - - - - - - - - results - - - - - - - - - - 1243s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1243s autopkgtest: DBG: got reply from testbed: ok 1243s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/40_of_104__cpptest__c10_complex_math_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1243s autopkgtest: DBG: testbed command exited with code 0 1243s autopkgtest [08:30:40]: test 41_of_104__cpptest__c10_complex_test: preparing testbed 1243s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1243s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1243s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1243s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1243s autopkgtest: DBG: can use apt-get on testbed: True 1243s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1243s Reading package lists... 1243s Building dependency tree... 1243s Reading state information... 1244s Starting pkgProblemResolver with broken count: 0 1244s Starting 2 pkgProblemResolver with broken count: 0 1244s Done 1244s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1244s autopkgtest: DBG: testbed command exited with code 0 1244s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1244s autopkgtest: DBG: testbed command exited with code 0 1244s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1244s autopkgtest: DBG: testbed command exited with code 0 1244s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-packages.all"], kind short, sout raw, serr pipe, env [] 1244s autopkgtest: DBG: testbed command exited with code 0 1244s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/41_of_104__cpptest__c10_complex_test-packages.all 1244s autopkgtest: DBG: got reply from testbed: ok 1244s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1245s autopkgtest: DBG: testbed command exited with code 0 1245s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1245s autopkgtest [08:30:42]: test 41_of_104__cpptest__c10_complex_test: /usr/lib/libtorch-test/c10_complex_test 1245s autopkgtest [08:30:42]: test 41_of_104__cpptest__c10_complex_test: [----------------------- 1245s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/41_of_104__cpptest__c10_complex_test-stderr --stdout=/tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_complex_test"], kind test, sout raw, serr raw, env [] 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-artifacts 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stderr 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stdout 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_complex_test 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pSwRYNOzID/out to stdout and file: /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stdout 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pSwRYNOzID/err to standard error and file: /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stdout 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 7959 to /tmp/autopkgtest_script_pid 1245s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1245s [==========] Running 5 tests from 5 test suites. 1245s [----------] Global test environment set-up. 1245s [----------] 1 test from TestMemory 1245s [ RUN ] TestMemory.ReinterpretCast 1245s [ OK ] TestMemory.ReinterpretCast (0 ms) 1245s [----------] 1 test from TestMemory (0 ms total) 1245s 1245s [----------] 1 test from TestConstructors 1245s [ RUN ] TestConstructors.UnorderedMap 1245s [ OK ] TestConstructors.UnorderedMap (0 ms) 1245s [----------] 1 test from TestConstructors (0 ms total) 1245s 1245s [----------] 1 test from TestArithmeticIntScalar 1245s [ RUN ] TestArithmeticIntScalar.All 1245s [ OK ] TestArithmeticIntScalar.All (0 ms) 1245s [----------] 1 test from TestArithmeticIntScalar (0 ms total) 1245s 1245s [----------] 1 test from TestIO 1245s [ RUN ] TestIO.All 1245s [ OK ] TestIO.All (0 ms) 1245s [----------] 1 test from TestIO (0 ms total) 1245s 1245s [----------] 1 test from TestStd 1245s [ RUN ] TestStd.BasicFunctions 1245s [ OK ] TestStd.BasicFunctions (0 ms) 1245s [----------] 1 test from TestStd (0 ms total) 1245s 1245s [----------] Global test environment tear-down 1245s [==========] 5 tests from 5 test suites ran. (0 ms total) 1245s [ PASSED ] 5 tests. 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1245s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1245s autopkgtest: DBG: testbed command exited with code 0 1245s autopkgtest [08:30:42]: test 41_of_104__cpptest__c10_complex_test: -----------------------] 1245s autopkgtest: DBG: testbed executing test finished with exit status 0 1245s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/41_of_104__cpptest__c10_complex_test-stdout 1245s autopkgtest: DBG: got reply from testbed: ok 1245s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/41_of_104__cpptest__c10_complex_test-stderr 1245s autopkgtest: DBG: got reply from testbed: ok 1245s 41_of_104__cpptest__c10_complex_test PASS 1245s autopkgtest [08:30:42]: test 41_of_104__cpptest__c10_complex_test: - - - - - - - - - - results - - - - - - - - - - 1245s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1246s autopkgtest: DBG: got reply from testbed: ok 1246s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/41_of_104__cpptest__c10_complex_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1246s autopkgtest: DBG: testbed command exited with code 0 1246s autopkgtest [08:30:43]: test 42_of_104__cpptest__c10_cow_test: preparing testbed 1246s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1246s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1246s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1246s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1246s autopkgtest: DBG: can use apt-get on testbed: True 1246s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1246s Reading package lists... 1246s Building dependency tree... 1246s Reading state information... 1246s Starting pkgProblemResolver with broken count: 0 1246s Starting 2 pkgProblemResolver with broken count: 0 1246s Done 1246s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1246s autopkgtest: DBG: testbed command exited with code 0 1246s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1247s autopkgtest: DBG: testbed command exited with code 0 1247s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1247s autopkgtest: DBG: testbed command exited with code 0 1247s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-packages.all"], kind short, sout raw, serr pipe, env [] 1247s autopkgtest: DBG: testbed command exited with code 0 1247s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/42_of_104__cpptest__c10_cow_test-packages.all 1247s autopkgtest: DBG: got reply from testbed: ok 1247s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1247s autopkgtest: DBG: testbed command exited with code 0 1247s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1247s autopkgtest [08:30:44]: test 42_of_104__cpptest__c10_cow_test: /usr/lib/libtorch-test/c10_cow_test 1247s autopkgtest [08:30:44]: test 42_of_104__cpptest__c10_cow_test: [----------------------- 1247s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/42_of_104__cpptest__c10_cow_test-stderr --stdout=/tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_cow_test"], kind test, sout raw, serr raw, env [] 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-artifacts 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stderr 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stdout 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_cow_test 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.TwBwT6EIxJ/out to stdout and file: /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stdout 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.TwBwT6EIxJ/err to standard error and file: /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stdout 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 8112 to /tmp/autopkgtest_script_pid 1247s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1247s [==========] Running 8 tests from 3 test suites. 1247s [----------] Global test environment set-up. 1247s [----------] 2 tests from ContextTest 1247s [ RUN ] ContextTest.Basic 1247s [ OK ] ContextTest.Basic (0 ms) 1247s [ RUN ] ContextTest.cow_deleter 1247s [ OK ] ContextTest.cow_deleter (0 ms) 1247s [----------] 2 tests from ContextTest (0 ms total) 1247s 1247s [----------] 3 tests from lazy_clone_storage_test 1247s [ RUN ] lazy_clone_storage_test.no_context 1247s [ OK ] lazy_clone_storage_test.no_context (0 ms) 1247s [ RUN ] lazy_clone_storage_test.different_context 1247s [ OK ] lazy_clone_storage_test.different_context (0 ms) 1247s [ RUN ] lazy_clone_storage_test.already_copy_on_write 1247s [ OK ] lazy_clone_storage_test.already_copy_on_write (0 ms) 1247s [----------] 3 tests from lazy_clone_storage_test (0 ms total) 1247s 1247s [----------] 3 tests from materialize_test 1247s [ RUN ] materialize_test.not_copy_on_write_context 1247s [ OK ] materialize_test.not_copy_on_write_context (0 ms) 1247s [ RUN ] materialize_test.copy_on_write_single_reference 1247s [ OK ] materialize_test.copy_on_write_single_reference (0 ms) 1247s [ RUN ] materialize_test.copy_on_write 1247s [ OK ] materialize_test.copy_on_write (0 ms) 1247s [----------] 3 tests from materialize_test (0 ms total) 1247s 1247s [----------] Global test environment tear-down 1247s [==========] 8 tests from 3 test suites ran. (0 ms total) 1247s [ PASSED ] 8 tests. 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1247s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1247s autopkgtest: DBG: testbed command exited with code 0 1248s autopkgtest [08:30:45]: test 42_of_104__cpptest__c10_cow_test: -----------------------] 1248s autopkgtest: DBG: testbed executing test finished with exit status 0 1248s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/42_of_104__cpptest__c10_cow_test-stdout 1248s autopkgtest: DBG: got reply from testbed: ok 1248s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/42_of_104__cpptest__c10_cow_test-stderr 1248s autopkgtest: DBG: got reply from testbed: ok 1248s autopkgtest [08:30:45]: test 42_of_104__cpptest__c10_cow_test: - - - - - - - - - - results - - - - - - - - - - 1248s 42_of_104__cpptest__c10_cow_test PASS 1248s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1248s autopkgtest: DBG: got reply from testbed: ok 1248s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/42_of_104__cpptest__c10_cow_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1248s autopkgtest: DBG: testbed command exited with code 0 1248s autopkgtest [08:30:45]: test 43_of_104__cpptest__c10_exception_test: preparing testbed 1248s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1248s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1248s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1248s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1248s autopkgtest: DBG: can use apt-get on testbed: True 1248s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1249s Reading package lists... 1249s Building dependency tree... 1249s Reading state information... 1249s Starting pkgProblemResolver with broken count: 0 1249s Starting 2 pkgProblemResolver with broken count: 0 1249s Done 1249s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1249s autopkgtest: DBG: testbed command exited with code 0 1249s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1249s autopkgtest: DBG: testbed command exited with code 0 1249s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1249s autopkgtest: DBG: testbed command exited with code 0 1249s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-packages.all"], kind short, sout raw, serr pipe, env [] 1250s autopkgtest: DBG: testbed command exited with code 0 1250s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/43_of_104__cpptest__c10_exception_test-packages.all 1250s autopkgtest: DBG: got reply from testbed: ok 1250s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1250s autopkgtest: DBG: testbed command exited with code 0 1250s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1250s autopkgtest [08:30:47]: test 43_of_104__cpptest__c10_exception_test: /usr/lib/libtorch-test/c10_exception_test 1250s autopkgtest [08:30:47]: test 43_of_104__cpptest__c10_exception_test: [----------------------- 1250s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/43_of_104__cpptest__c10_exception_test-stderr --stdout=/tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_exception_test"], kind test, sout raw, serr raw, env [] 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-artifacts 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stderr 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stdout 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_exception_test 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.CjiFrzbxxA/out to stdout and file: /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stdout 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.CjiFrzbxxA/err to standard error and file: /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stdout 1250s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 8265 to /tmp/autopkgtest_script_pid 1250s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1250s [==========] Running 5 tests from 2 test suites. 1250s [----------] Global test environment set-up. 1250s [----------] 4 tests from ExceptionTest 1250s [ RUN ] ExceptionTest.TORCH_INTERNAL_ASSERT_DEBUG_ONLY 1250s [ OK ] ExceptionTest.TORCH_INTERNAL_ASSERT_DEBUG_ONLY (0 ms) 1250s [ RUN ] ExceptionTest.CUDA_KERNEL_ASSERT 1251s [ OK ] ExceptionTest.CUDA_KERNEL_ASSERT (647 ms) 1251s [ RUN ] ExceptionTest.ErrorFormatting 1251s [ OK ] ExceptionTest.ErrorFormatting (0 ms) 1251s [ RUN ] ExceptionTest.DontCallArgumentFunctionsTwiceOnFailure 1251s [ OK ] ExceptionTest.DontCallArgumentFunctionsTwiceOnFailure (0 ms) 1251s [----------] 4 tests from ExceptionTest (647 ms total) 1251s 1251s [----------] 1 test from WarningTest 1251s [ RUN ] WarningTest.JustPrintWarning 1251s [ OK ] WarningTest.JustPrintWarning (0 ms) 1251s [----------] 1 test from WarningTest (0 ms total) 1251s 1251s [----------] Global test environment tear-down 1251s [==========] 5 tests from 2 test suites ran. (647 ms total) 1251s [ PASSED ] 5 tests. 1251s [W219 08:30:48.747616498 exception_test.cpp:45] Warning: I'm a warning (function TestBody) 1251s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1251s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1251s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1251s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1251s autopkgtest: DBG: testbed command exited with code 0 1251s autopkgtest [08:30:48]: test 43_of_104__cpptest__c10_exception_test: -----------------------] 1251s autopkgtest: DBG: testbed executing test finished with exit status 0 1251s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/43_of_104__cpptest__c10_exception_test-stdout 1251s autopkgtest: DBG: got reply from testbed: ok 1251s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/43_of_104__cpptest__c10_exception_test-stderr 1251s autopkgtest: DBG: got reply from testbed: ok 1251s autopkgtest [08:30:48]: test 43_of_104__cpptest__c10_exception_test: - - - - - - - - - - results - - - - - - - - - - 1251s 43_of_104__cpptest__c10_exception_test PASS 1251s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1252s autopkgtest: DBG: got reply from testbed: ok 1252s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/43_of_104__cpptest__c10_exception_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1252s autopkgtest: DBG: testbed command exited with code 0 1252s autopkgtest [08:30:49]: test 44_of_104__cpptest__c10_flags_test: preparing testbed 1252s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1252s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1252s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1252s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1252s autopkgtest: DBG: can use apt-get on testbed: True 1252s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1252s Reading package lists... 1252s Building dependency tree... 1252s Reading state information... 1252s Starting pkgProblemResolver with broken count: 0 1252s Starting 2 pkgProblemResolver with broken count: 0 1252s Done 1252s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1252s autopkgtest: DBG: testbed command exited with code 0 1252s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-packages.all"], kind short, sout raw, serr pipe, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/44_of_104__cpptest__c10_flags_test-packages.all 1253s autopkgtest: DBG: got reply from testbed: ok 1253s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1253s autopkgtest: DBG: testbed command exited with code 0 1253s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1253s autopkgtest [08:30:50]: test 44_of_104__cpptest__c10_flags_test: /usr/lib/libtorch-test/c10_flags_test 1253s autopkgtest [08:30:50]: test 44_of_104__cpptest__c10_flags_test: [----------------------- 1253s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/44_of_104__cpptest__c10_flags_test-stderr --stdout=/tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_flags_test"], kind test, sout raw, serr raw, env [] 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-artifacts 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stderr 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stdout 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_flags_test 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uszTjaZSBG/out to stdout and file: /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stdout 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uszTjaZSBG/err to standard error and file: /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stdout 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 8427 to /tmp/autopkgtest_script_pid 1253s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1253s [==========] Running 1 test from 1 test suite. 1253s [----------] Global test environment set-up. 1253s [----------] 1 test from FlagsTest 1253s [ RUN ] FlagsTest.TestGflagsCorrectness 1253s Caffe2 is not built with gflags. Nothing to test here. 1253s [ OK ] FlagsTest.TestGflagsCorrectness (0 ms) 1253s [----------] 1 test from FlagsTest (0 ms total) 1253s 1253s [----------] Global test environment tear-down 1253s [==========] 1 test from 1 test suite ran. (0 ms total) 1253s [ PASSED ] 1 test. 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1253s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1253s autopkgtest: DBG: testbed command exited with code 0 1254s autopkgtest [08:30:51]: test 44_of_104__cpptest__c10_flags_test: -----------------------] 1254s autopkgtest: DBG: testbed executing test finished with exit status 0 1254s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/44_of_104__cpptest__c10_flags_test-stdout 1254s autopkgtest: DBG: got reply from testbed: ok 1254s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/44_of_104__cpptest__c10_flags_test-stderr 1254s autopkgtest: DBG: got reply from testbed: ok 1254s 44_of_104__cpptest__c10_flags_test PASS 1254s autopkgtest [08:30:51]: test 44_of_104__cpptest__c10_flags_test: - - - - - - - - - - results - - - - - - - - - - 1254s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1254s autopkgtest: DBG: got reply from testbed: ok 1254s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/44_of_104__cpptest__c10_flags_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1254s autopkgtest: DBG: testbed command exited with code 0 1254s autopkgtest [08:30:51]: test 45_of_104__cpptest__c10_generic_math_test: preparing testbed 1254s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1254s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1254s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1254s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1254s autopkgtest: DBG: can use apt-get on testbed: True 1254s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1255s Reading package lists... 1255s Building dependency tree... 1255s Reading state information... 1255s Starting pkgProblemResolver with broken count: 0 1255s Starting 2 pkgProblemResolver with broken count: 0 1255s Done 1255s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1255s autopkgtest: DBG: testbed command exited with code 0 1255s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1255s autopkgtest: DBG: testbed command exited with code 0 1255s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1255s autopkgtest: DBG: testbed command exited with code 0 1255s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-packages.all"], kind short, sout raw, serr pipe, env [] 1256s autopkgtest: DBG: testbed command exited with code 0 1256s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/45_of_104__cpptest__c10_generic_math_test-packages.all 1256s autopkgtest: DBG: got reply from testbed: ok 1256s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1256s autopkgtest: DBG: testbed command exited with code 0 1256s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1256s autopkgtest [08:30:53]: test 45_of_104__cpptest__c10_generic_math_test: /usr/lib/libtorch-test/c10_generic_math_test 1256s autopkgtest [08:30:53]: test 45_of_104__cpptest__c10_generic_math_test: [----------------------- 1256s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/45_of_104__cpptest__c10_generic_math_test-stderr --stdout=/tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_generic_math_test"], kind test, sout raw, serr raw, env [] 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-artifacts 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stderr 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stdout 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_generic_math_test 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.1VFkv6I7v2/out to stdout and file: /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stdout 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.1VFkv6I7v2/err to standard error and file: /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stdout 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 8580 to /tmp/autopkgtest_script_pid 1256s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1256s [==========] Running 1 test from 1 test suite. 1256s [----------] Global test environment set-up. 1256s [----------] 1 test from GenericMathTest 1256s [ RUN ] GenericMathTest.div_floor_test 1256s [ OK ] GenericMathTest.div_floor_test (0 ms) 1256s [----------] 1 test from GenericMathTest (0 ms total) 1256s 1256s [----------] Global test environment tear-down 1256s [==========] 1 test from 1 test suite ran. (0 ms total) 1256s [ PASSED ] 1 test. 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1256s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1256s autopkgtest: DBG: testbed command exited with code 0 1256s autopkgtest [08:30:53]: test 45_of_104__cpptest__c10_generic_math_test: -----------------------] 1256s autopkgtest: DBG: testbed executing test finished with exit status 0 1256s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/45_of_104__cpptest__c10_generic_math_test-stdout 1256s autopkgtest: DBG: got reply from testbed: ok 1256s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/45_of_104__cpptest__c10_generic_math_test-stderr 1257s autopkgtest: DBG: got reply from testbed: ok 1257s 45_of_104__cpptest__c10_generic_math_test PASS 1257s autopkgtest [08:30:54]: test 45_of_104__cpptest__c10_generic_math_test: - - - - - - - - - - results - - - - - - - - - - 1257s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1257s autopkgtest: DBG: got reply from testbed: ok 1257s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/45_of_104__cpptest__c10_generic_math_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1257s autopkgtest: DBG: testbed command exited with code 0 1257s autopkgtest [08:30:54]: test 46_of_104__cpptest__c10_intrusive_ptr_benchmark: preparing testbed 1257s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1257s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1257s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1257s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1257s autopkgtest: DBG: can use apt-get on testbed: True 1257s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1257s Reading package lists... 1257s Building dependency tree... 1257s Reading state information... 1257s Starting pkgProblemResolver with broken count: 0 1258s Starting 2 pkgProblemResolver with broken count: 0 1258s Done 1258s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1258s autopkgtest: DBG: testbed command exited with code 0 1258s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1258s autopkgtest: DBG: testbed command exited with code 0 1258s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1258s autopkgtest: DBG: testbed command exited with code 0 1258s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-packages.all"], kind short, sout raw, serr pipe, env [] 1258s autopkgtest: DBG: testbed command exited with code 0 1258s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-packages.all /tmp/autopkgtest-work.z8qos2ju/out/46_of_104__cpptest__c10_intrusive_ptr_benchmark-packages.all 1258s autopkgtest: DBG: got reply from testbed: ok 1258s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1258s autopkgtest: DBG: testbed command exited with code 0 1258s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1258s autopkgtest [08:30:55]: test 46_of_104__cpptest__c10_intrusive_ptr_benchmark: /usr/lib/libtorch-test/c10_intrusive_ptr_benchmark 1258s autopkgtest [08:30:55]: test 46_of_104__cpptest__c10_intrusive_ptr_benchmark: [----------------------- 1258s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stderr --stdout=/tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_intrusive_ptr_benchmark"], kind test, sout raw, serr raw, env [] 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-artifacts 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stderr 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stdout 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_intrusive_ptr_benchmark 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.IXN2F2pBAa/out to stdout and file: /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stdout 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.IXN2F2pBAa/err to standard error and file: /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stdout 1259s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 8733 to /tmp/autopkgtest_script_pid 1259s 2025-02-19T08:30:56+00:00 1259s Running /usr/lib/libtorch-test/c10_intrusive_ptr_benchmark 1259s Run on (2 X 5200 MHz CPU s) 1259s CPU Caches: 1259s L1 Data 128 KiB (x2) 1259s L1 Instruction 128 KiB (x2) 1259s L2 Data 4096 KiB (x2) 1259s L2 Instruction 4096 KiB (x2) 1259s Load Average: 0.32, 0.13, 0.04 1259s ***WARNING*** Library was built as DEBUG. Timings may be affected. 1260s ---------------------------------------------------------------------------- 1260s Benchmark Time CPU Iterations 1260s ---------------------------------------------------------------------------- 1260s BM_IntrusivePtrCtorDtor 3.34 ns 3.34 ns 203194908 1261s BM_SharedPtrCtorDtor 3.11 ns 3.11 ns 223520552 1262s BM_IntrusivePtrArray/16 43.6 ns 43.6 ns 15999451 1263s BM_IntrusivePtrArray/32 86.5 ns 86.5 ns 8004414 1264s BM_IntrusivePtrArray/64 173 ns 173 ns 4050584 1265s BM_IntrusivePtrArray/128 346 ns 346 ns 2027147 1265s BM_IntrusivePtrArray/256 691 ns 691 ns 1013720 1266s BM_IntrusivePtrArray/512 1383 ns 1383 ns 506716 1267s BM_IntrusivePtrArray/1024 2776 ns 2776 ns 251192 1268s BM_IntrusivePtrArray/2048 5530 ns 5530 ns 126688 1269s BM_IntrusivePtrArray/4096 11068 ns 11068 ns 63308 1270s BM_SharedPtrArray/16 56.5 ns 56.5 ns 12430491 1271s BM_SharedPtrArray/32 128 ns 128 ns 5489661 1272s BM_SharedPtrArray/64 278 ns 278 ns 2525605 1272s BM_SharedPtrArray/128 551 ns 551 ns 1267353 1273s BM_SharedPtrArray/256 1031 ns 1031 ns 679170 1274s BM_SharedPtrArray/512 2132 ns 2132 ns 330987 1275s BM_SharedPtrArray/1024 3869 ns 3869 ns 180243 1276s BM_SharedPtrArray/2048 7375 ns 7374 ns 94770 1277s BM_SharedPtrArray/4096 14641 ns 14638 ns 48418 1278s BM_IntrusivePtrExclusiveOwnership 15.5 ns 15.5 ns 45026798 1279s BM_SharedPtrExclusiveOwnership 15.7 ns 15.7 ns 44827617 1279s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1279s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1279s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1279s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1279s autopkgtest: DBG: testbed command exited with code 0 1279s autopkgtest [08:31:16]: test 46_of_104__cpptest__c10_intrusive_ptr_benchmark: -----------------------] 1279s autopkgtest: DBG: testbed executing test finished with exit status 0 1279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stdout /tmp/autopkgtest-work.z8qos2ju/out/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stdout 1279s autopkgtest: DBG: got reply from testbed: ok 1279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stderr /tmp/autopkgtest-work.z8qos2ju/out/46_of_104__cpptest__c10_intrusive_ptr_benchmark-stderr 1279s autopkgtest: DBG: got reply from testbed: ok 1279s autopkgtest [08:31:16]: test 46_of_104__cpptest__c10_intrusive_ptr_benchmark: - - - - - - - - - - results - - - - - - - - - - 1279s 46_of_104__cpptest__c10_intrusive_ptr_benchmark PASS 1279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1279s autopkgtest: DBG: got reply from testbed: ok 1279s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/46_of_104__cpptest__c10_intrusive_ptr_benchmark-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1280s autopkgtest: DBG: testbed command exited with code 0 1280s autopkgtest [08:31:17]: test 47_of_104__cpptest__c10_intrusive_ptr_test: preparing testbed 1280s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1280s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1280s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1280s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1280s autopkgtest: DBG: can use apt-get on testbed: True 1280s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1280s Reading package lists... 1280s Building dependency tree... 1280s Reading state information... 1280s Starting pkgProblemResolver with broken count: 0 1280s Starting 2 pkgProblemResolver with broken count: 0 1280s Done 1280s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1280s autopkgtest: DBG: testbed command exited with code 0 1280s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1280s autopkgtest: DBG: testbed command exited with code 0 1280s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1281s autopkgtest: DBG: testbed command exited with code 0 1281s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-packages.all"], kind short, sout raw, serr pipe, env [] 1281s autopkgtest: DBG: testbed command exited with code 0 1281s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/47_of_104__cpptest__c10_intrusive_ptr_test-packages.all 1281s autopkgtest: DBG: got reply from testbed: ok 1281s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1281s autopkgtest: DBG: testbed command exited with code 0 1281s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1281s autopkgtest [08:31:18]: test 47_of_104__cpptest__c10_intrusive_ptr_test: /usr/lib/libtorch-test/c10_intrusive_ptr_test 1281s autopkgtest [08:31:18]: test 47_of_104__cpptest__c10_intrusive_ptr_test: [----------------------- 1281s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stderr --stdout=/tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_intrusive_ptr_test"], kind test, sout raw, serr raw, env [] 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-artifacts 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stderr 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stdout 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_intrusive_ptr_test 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.7mUt8V7lnI/out to stdout and file: /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stdout 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.7mUt8V7lnI/err to standard error and file: /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stdout 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 8886 to /tmp/autopkgtest_script_pid 1281s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1281s [==========] Running 324 tests from 4 test suites. 1281s [----------] Global test environment set-up. 1281s [----------] 5 tests from MakeIntrusiveTest 1281s [ RUN ] MakeIntrusiveTest.ClassWith0Parameters 1281s [ OK ] MakeIntrusiveTest.ClassWith0Parameters (0 ms) 1281s [ RUN ] MakeIntrusiveTest.ClassWith1Parameter 1281s [ OK ] MakeIntrusiveTest.ClassWith1Parameter (0 ms) 1281s [ RUN ] MakeIntrusiveTest.ClassWith2Parameters 1281s [ OK ] MakeIntrusiveTest.ClassWith2Parameters (0 ms) 1281s [ RUN ] MakeIntrusiveTest.TypeIsAutoDeductible 1281s [ OK ] MakeIntrusiveTest.TypeIsAutoDeductible (0 ms) 1281s [ RUN ] MakeIntrusiveTest.CanAssignToBaseClassPtr 1281s [ OK ] MakeIntrusiveTest.CanAssignToBaseClassPtr (0 ms) 1281s [----------] 5 tests from MakeIntrusiveTest (0 ms total) 1281s 1281s [----------] 1 test from IntrusivePtrTargetTest 1281s [ RUN ] IntrusivePtrTargetTest.whenAllocatedOnStack_thenDoesntCrash 1281s [ OK ] IntrusivePtrTargetTest.whenAllocatedOnStack_thenDoesntCrash (0 ms) 1281s [----------] 1 test from IntrusivePtrTargetTest (0 ms total) 1281s 1281s [----------] 146 tests from IntrusivePtrTest 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCallingGet_thenReturnsObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCallingGet_thenReturnsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCallingConstGet_thenReturnsObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCallingConstGet_thenReturnsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenCallingGet_thenReturnsNullptr 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenCallingGet_thenReturnsNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNullptr_whenCallingGet_thenReturnsNullptr 1281s [ OK ] IntrusivePtrTest.givenNullptr_whenCallingGet_thenReturnsNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenDereferencing_thenReturnsObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenDereferencing_thenReturnsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenConstDereferencing_thenReturnsObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenConstDereferencing_thenReturnsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenArrowDereferencing_thenReturnsObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenArrowDereferencing_thenReturnsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenConstArrowDereferencing_thenReturnsObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenConstArrowDereferencing_thenReturnsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenOldInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenStaysValid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenStaysValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToSelf_thenStaysInvalid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToSelf_thenStaysInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenNewInstanceIsValid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningFromInvalidPtr_thenNewInstanceIsInvalid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningFromInvalidPtr_thenNewInstanceIsInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenOldInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenNewInstanceIsValid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningInvalidPtrToBaseClass_thenNewInstanceIsValid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenMoveAssigningInvalidPtrToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNullPtr_whenMoveAssigningToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] IntrusivePtrTest.givenNullPtr_whenMoveAssigningToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenOldInstanceValid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenOldInstanceValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenStaysValid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenStaysValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToSelf_thenStaysInvalid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToSelf_thenStaysInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigning_thenNewInstanceIsValid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigning_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenOldInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenNewInstanceIsValid 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssigningInvalidPtrToBaseClass_thenNewInstanceIsInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssigningInvalidPtrToBaseClass_thenNewInstanceIsInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNullPtr_whenCopyAssigningToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] IntrusivePtrTest.givenNullPtr_whenCopyAssigningToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructing_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructing_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructing_thenOldInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructing_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructing_thenNewInstanceValid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructing_thenNewInstanceValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructingFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructingFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenOldInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenNewInstanceValid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenNewInstanceValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNullPtr_whenMoveConstructingToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] IntrusivePtrTest.givenNullPtr_whenMoveConstructingToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructing_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructing_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructing_thenOldInstanceValid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructing_thenOldInstanceValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructing_thenNewInstanceValid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructing_thenNewInstanceValid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructingFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructingFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenPointsToSameObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenOldInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenNewInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNullPtr_whenCopyConstructingToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] IntrusivePtrTest.givenNullPtr_whenCopyConstructingToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapFunction 1281s [ OK ] IntrusivePtrTest.SwapFunction (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapMethod 1281s [ OK ] IntrusivePtrTest.SwapMethod (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapFunctionFromInvalid 1281s [ OK ] IntrusivePtrTest.SwapFunctionFromInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapMethodFromInvalid 1281s [ OK ] IntrusivePtrTest.SwapMethodFromInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapFunctionWithInvalid 1281s [ OK ] IntrusivePtrTest.SwapFunctionWithInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapMethodWithInvalid 1281s [ OK ] IntrusivePtrTest.SwapMethodWithInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapFunctionInvalidWithInvalid 1281s [ OK ] IntrusivePtrTest.SwapFunctionInvalidWithInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.SwapMethodInvalidWithInvalid 1281s [ OK ] IntrusivePtrTest.SwapMethodInvalidWithInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.CanBePutInContainer 1281s [ OK ] IntrusivePtrTest.CanBePutInContainer (0 ms) 1281s [ RUN ] IntrusivePtrTest.CanBePutInSet 1281s [ OK ] IntrusivePtrTest.CanBePutInSet (0 ms) 1281s [ RUN ] IntrusivePtrTest.CanBePutInUnorderedSet 1281s [ OK ] IntrusivePtrTest.CanBePutInUnorderedSet (0 ms) 1281s [ RUN ] IntrusivePtrTest.CanBePutInMap 1281s [ OK ] IntrusivePtrTest.CanBePutInMap (0 ms) 1281s [ RUN ] IntrusivePtrTest.CanBePutInUnorderedMap 1281s [ OK ] IntrusivePtrTest.CanBePutInUnorderedMap (0 ms) 1281s [ RUN ] IntrusivePtrTest.Equality_AfterCopyConstructor 1281s [ OK ] IntrusivePtrTest.Equality_AfterCopyConstructor (0 ms) 1281s [ RUN ] IntrusivePtrTest.Equality_AfterCopyAssignment 1281s [ OK ] IntrusivePtrTest.Equality_AfterCopyAssignment (0 ms) 1281s [ RUN ] IntrusivePtrTest.Equality_Nullptr 1281s [ OK ] IntrusivePtrTest.Equality_Nullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.Inequality 1281s [ OK ] IntrusivePtrTest.Inequality (0 ms) 1281s [ RUN ] IntrusivePtrTest.Inequality_NullptrLeft 1281s [ OK ] IntrusivePtrTest.Inequality_NullptrLeft (0 ms) 1281s [ RUN ] IntrusivePtrTest.Inequality_NullptrRight 1281s [ OK ] IntrusivePtrTest.Inequality_NullptrRight (0 ms) 1281s [ RUN ] IntrusivePtrTest.HashIsDifferent 1281s [ OK ] IntrusivePtrTest.HashIsDifferent (0 ms) 1281s [ RUN ] IntrusivePtrTest.HashIsDifferent_ValidAndInvalid 1281s [ OK ] IntrusivePtrTest.HashIsDifferent_ValidAndInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.HashIsSame_AfterCopyConstructor 1281s [ OK ] IntrusivePtrTest.HashIsSame_AfterCopyConstructor (0 ms) 1281s [ RUN ] IntrusivePtrTest.HashIsSame_AfterCopyAssignment 1281s [ OK ] IntrusivePtrTest.HashIsSame_AfterCopyAssignment (0 ms) 1281s [ RUN ] IntrusivePtrTest.HashIsSame_BothNullptr 1281s [ OK ] IntrusivePtrTest.HashIsSame_BothNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.OneIsLess 1281s [ OK ] IntrusivePtrTest.OneIsLess (0 ms) 1281s [ RUN ] IntrusivePtrTest.NullptrIsLess1 1281s [ OK ] IntrusivePtrTest.NullptrIsLess1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.NullptrIsLess2 1281s [ OK ] IntrusivePtrTest.NullptrIsLess2 (0 ms) 1281s [ RUN ] IntrusivePtrTest.NullptrIsNotLessThanNullptr 1281s [ OK ] IntrusivePtrTest.NullptrIsNotLessThanNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCallingReset_thenIsInvalid 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCallingReset_thenIsInvalid (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCallingReset_thenHoldsNullptr 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCallingReset_thenHoldsNullptr (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenDestructed_thenDestructsObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenDestructed_thenDestructsObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructed_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructed_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveConstructedToBaseClass_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveConstructedToBaseClass_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsOldObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsOldObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsOldObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsOldObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithBaseClassCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithBaseClassCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithCopy_whenMoveAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithCopy_whenMoveAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] IntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructedAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructedAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssignedAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssignedAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssignedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssignedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssigned_thenDestructsOldObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssigned_thenDestructsOldObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClass_thenDestructsOldObject 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClass_thenDestructsOldObject (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithBaseClassCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithBaseClassCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithCopy_whenCopyAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithCopy_whenCopyAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenCallingReset_thenDestructs 1281s [ OK ] IntrusivePtrTest.givenPtr_whenCallingReset_thenDestructs (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithCopy_whenCallingReset_thenDestructsAfterCopyDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithCopy_whenCallingReset_thenDestructsAfterCopyDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithCopy_whenCallingResetOnCopy_thenDestructsAfterOriginalDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithCopy_whenCallingResetOnCopy_thenDestructsAfterOriginalDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithMoved_whenCallingReset_thenDestructsAfterMovedDestructed 1281s [ OK ] IntrusivePtrTest.givenPtrWithMoved_whenCallingReset_thenDestructsAfterMovedDestructed (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtrWithMoved_whenCallingResetOnMoved_thenDestructsImmediately 1281s [ OK ] IntrusivePtrTest.givenPtrWithMoved_whenCallingResetOnMoved_thenDestructsImmediately (0 ms) 1281s [ RUN ] IntrusivePtrTest.AllowsMoveConstructingToConst 1281s [ OK ] IntrusivePtrTest.AllowsMoveConstructingToConst (0 ms) 1281s [ RUN ] IntrusivePtrTest.AllowsCopyConstructingToConst 1281s [ OK ] IntrusivePtrTest.AllowsCopyConstructingToConst (0 ms) 1281s [ RUN ] IntrusivePtrTest.AllowsMoveAssigningToConst 1281s [ OK ] IntrusivePtrTest.AllowsMoveAssigningToConst (0 ms) 1281s [ RUN ] IntrusivePtrTest.AllowsCopyAssigningToConst 1281s [ OK ] IntrusivePtrTest.AllowsCopyAssigningToConst (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNewPtr_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenNewPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenNewPtr_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenNewPtr_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenEmptyPtr_thenHasUseCount0 1281s [ OK ] IntrusivePtrTest.givenEmptyPtr_thenHasUseCount0 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenEmptyPtr_thenIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenEmptyPtr_thenIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenResetPtr_thenHasUseCount0 1281s [ OK ] IntrusivePtrTest.givenResetPtr_thenHasUseCount0 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenResetPtr_thenIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenResetPtr_thenIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveConstructedPtr_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenMoveConstructedPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveConstructedPtr_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenMoveConstructedPtr_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveConstructedPtr_thenOldHasUseCount0 1281s [ OK ] IntrusivePtrTest.givenMoveConstructedPtr_thenOldHasUseCount0 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveConstructedPtr_thenOldIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenMoveConstructedPtr_thenOldIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveAssignedPtr_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenMoveAssignedPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveAssignedPtr_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenMoveAssignedPtr_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveAssignedPtr_thenOldHasUseCount0 1281s [ OK ] IntrusivePtrTest.givenMoveAssignedPtr_thenOldHasUseCount0 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenMoveAssignedPtr_thenOldIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenMoveAssignedPtr_thenOldIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_thenHasUseCount2 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_thenHasUseCount2 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_thenIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_thenIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_thenOldHasUseCount2 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_thenOldHasUseCount2 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_thenOldIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_thenOldIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_whenDestructingCopy_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_whenDestructingCopy_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_whenDestructingCopy_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_whenDestructingCopy_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_whenReassigningCopy_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_whenReassigningCopy_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyConstructedPtr_whenReassigningCopy_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenCopyConstructedPtr_whenReassigningCopy_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyAssignedPtr_thenHasUseCount2 1281s [ OK ] IntrusivePtrTest.givenCopyAssignedPtr_thenHasUseCount2 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyAssignedPtr_thenIsNotUnique 1281s [ OK ] IntrusivePtrTest.givenCopyAssignedPtr_thenIsNotUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyAssignedPtr_whenDestructingCopy_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenCopyAssignedPtr_whenDestructingCopy_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyAssignedPtr_whenDestructingCopy_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenCopyAssignedPtr_whenDestructingCopy_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyAssignedPtr_whenReassigningCopy_thenHasUseCount1 1281s [ OK ] IntrusivePtrTest.givenCopyAssignedPtr_whenReassigningCopy_thenHasUseCount1 (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenCopyAssignedPtr_whenReassigningCopy_thenIsUnique 1281s [ OK ] IntrusivePtrTest.givenCopyAssignedPtr_whenReassigningCopy_thenIsUnique (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenDoesntCrash 1281s [ OK ] IntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenDoesntCrash (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenIsDestructedAtEnd 1281s [ OK ] IntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenIsDestructedAtEnd (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenNonOwningReclaimed_thenDoesntCrash 1281s [ OK ] IntrusivePtrTest.givenPtr_whenNonOwningReclaimed_thenDoesntCrash (0 ms) 1281s [ RUN ] IntrusivePtrTest.givenPtr_whenNonOwningReclaimed_thenIsDestructedAtEnd 1281s [ OK ] IntrusivePtrTest.givenPtr_whenNonOwningReclaimed_thenIsDestructedAtEnd (0 ms) 1281s [----------] 146 tests from IntrusivePtrTest (0 ms total) 1281s 1281s [----------] 172 tests from WeakIntrusivePtrTest 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCreatingAndDestructing_thenDoesntCrash 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCreatingAndDestructing_thenDoesntCrash (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenLocking_thenReturnsCorrectObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenLocking_thenReturnsCorrectObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.expiredPtr_whenLocking_thenReturnsNullType 1281s [ OK ] WeakIntrusivePtrTest.expiredPtr_whenLocking_thenReturnsNullType (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.weakNullPtr_locking 1281s [ OK ] WeakIntrusivePtrTest.weakNullPtr_locking (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenOldInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigning_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.vector_insert_weak_intrusive 1281s [ OK ] WeakIntrusivePtrTest.vector_insert_weak_intrusive (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenStaysValid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToSelf_thenStaysValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToSelf_thenStaysInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToSelf_thenStaysInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigning_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigning_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigning_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToSelf_thenStaysInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToSelf_thenStaysInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToSelf_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToSelf_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningFromInvalidPtr_thenNewInstanceIsInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningFromInvalidPtr_thenNewInstanceIsInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningFromWeakOnlyPtr_thenNewInstanceIsInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningFromWeakOnlyPtr_thenNewInstanceIsInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenOldInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenMoveAssigningToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningInvalidPtrToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenMoveAssigningInvalidPtrToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningInvalidPtrToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenMoveAssigningInvalidPtrToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenNullPtr_whenMoveAssigningToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] WeakIntrusivePtrTest.givenNullPtr_whenMoveAssigningToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenOldInstanceValid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigning_thenOldInstanceValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenStaysValid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToSelf_thenStaysValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigning_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigning_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToSelf_thenStaysInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToSelf_thenStaysInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigning_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigning_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigning_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigning_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToSelf_thenStaysInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToSelf_thenStaysInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToSelf_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToSelf_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenOldInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenValidPtr_whenCopyAssigningToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssigningInvalidPtrToBaseClass_thenNewInstanceIsInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssigningInvalidPtrToBaseClass_thenNewInstanceIsInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenCopyAssigningToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssigningWeakOnlyPtrToBaseClass_thenNewInstanceIsValid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssigningWeakOnlyPtrToBaseClass_thenNewInstanceIsValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenNullPtr_whenCopyAssigningToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] WeakIntrusivePtrTest.givenNullPtr_whenCopyAssigningToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructing_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructing_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructing_thenOldInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructing_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructing_thenNewInstanceValid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructing_thenNewInstanceValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingFromWeakOnlyPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingFromWeakOnlyPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenOldInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenNewInstanceValid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClass_thenNewInstanceValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClassFromWeakOnlyPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructingToBaseClassFromWeakOnlyPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenNullPtr_whenMoveConstructingToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] WeakIntrusivePtrTest.givenNullPtr_whenMoveConstructingToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructing_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructing_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructing_thenOldInstanceValid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructing_thenOldInstanceValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructing_thenNewInstanceValid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructing_thenNewInstanceValid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingFromWeakOnlyPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingFromWeakOnlyPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenPointsToSameObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenPointsToSameObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenOldInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenOldInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClass_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClassFromInvalidPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClassFromWeakOnlyPtr_thenNewInstanceInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructingToBaseClassFromWeakOnlyPtr_thenNewInstanceInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenNullPtr_whenCopyConstructingToDifferentNullptr_thenHasNewNullptr 1281s [ OK ] WeakIntrusivePtrTest.givenNullPtr_whenCopyConstructingToDifferentNullptr_thenHasNewNullptr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunction 1281s [ OK ] WeakIntrusivePtrTest.SwapFunction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethod 1281s [ OK ] WeakIntrusivePtrTest.SwapMethod (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunctionFromInvalid 1281s [ OK ] WeakIntrusivePtrTest.SwapFunctionFromInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethodFromInvalid 1281s [ OK ] WeakIntrusivePtrTest.SwapMethodFromInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunctionWithInvalid 1281s [ OK ] WeakIntrusivePtrTest.SwapFunctionWithInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethodWithInvalid 1281s [ OK ] WeakIntrusivePtrTest.SwapMethodWithInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunctionInvalidWithInvalid 1281s [ OK ] WeakIntrusivePtrTest.SwapFunctionInvalidWithInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethodInvalidWithInvalid 1281s [ OK ] WeakIntrusivePtrTest.SwapMethodInvalidWithInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunctionFromWeakOnlyPtr 1281s [ OK ] WeakIntrusivePtrTest.SwapFunctionFromWeakOnlyPtr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethodFromWeakOnlyPtr 1281s [ OK ] WeakIntrusivePtrTest.SwapMethodFromWeakOnlyPtr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunctionWithWeakOnlyPtr 1281s [ OK ] WeakIntrusivePtrTest.SwapFunctionWithWeakOnlyPtr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethodWithWeakOnlyPtr 1281s [ OK ] WeakIntrusivePtrTest.SwapMethodWithWeakOnlyPtr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapFunctionWeakOnlyPtrWithWeakOnlyPtr 1281s [ OK ] WeakIntrusivePtrTest.SwapFunctionWeakOnlyPtrWithWeakOnlyPtr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.SwapMethodWeakOnlyPtrWithWeakOnlyPtr 1281s [ OK ] WeakIntrusivePtrTest.SwapMethodWeakOnlyPtrWithWeakOnlyPtr (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.CanBePutInContainer 1281s [ OK ] WeakIntrusivePtrTest.CanBePutInContainer (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.CanBePutInSet 1281s [ OK ] WeakIntrusivePtrTest.CanBePutInSet (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.CanBePutInUnorderedSet 1281s [ OK ] WeakIntrusivePtrTest.CanBePutInUnorderedSet (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.CanBePutInMap 1281s [ OK ] WeakIntrusivePtrTest.CanBePutInMap (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.CanBePutInUnorderedMap 1281s [ OK ] WeakIntrusivePtrTest.CanBePutInUnorderedMap (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Equality_AfterCopyConstructor 1281s [ OK ] WeakIntrusivePtrTest.Equality_AfterCopyConstructor (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Equality_AfterCopyAssignment 1281s [ OK ] WeakIntrusivePtrTest.Equality_AfterCopyAssignment (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Equality_AfterCopyAssignment_WeakOnly 1281s [ OK ] WeakIntrusivePtrTest.Equality_AfterCopyAssignment_WeakOnly (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Equality_Invalid 1281s [ OK ] WeakIntrusivePtrTest.Equality_Invalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Inequality 1281s [ OK ] WeakIntrusivePtrTest.Inequality (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Inequality_InvalidLeft 1281s [ OK ] WeakIntrusivePtrTest.Inequality_InvalidLeft (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Inequality_InvalidRight 1281s [ OK ] WeakIntrusivePtrTest.Inequality_InvalidRight (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.Inequality_WeakOnly 1281s [ OK ] WeakIntrusivePtrTest.Inequality_WeakOnly (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsDifferent 1281s [ OK ] WeakIntrusivePtrTest.HashIsDifferent (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsDifferent_ValidAndInvalid 1281s [ OK ] WeakIntrusivePtrTest.HashIsDifferent_ValidAndInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsDifferent_ValidAndWeakOnly 1281s [ OK ] WeakIntrusivePtrTest.HashIsDifferent_ValidAndWeakOnly (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsDifferent_WeakOnlyAndWeakOnly 1281s [ OK ] WeakIntrusivePtrTest.HashIsDifferent_WeakOnlyAndWeakOnly (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsSame_AfterCopyConstructor 1281s [ OK ] WeakIntrusivePtrTest.HashIsSame_AfterCopyConstructor (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsSame_AfterCopyConstructor_WeakOnly 1281s [ OK ] WeakIntrusivePtrTest.HashIsSame_AfterCopyConstructor_WeakOnly (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsSame_AfterCopyAssignment 1281s [ OK ] WeakIntrusivePtrTest.HashIsSame_AfterCopyAssignment (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsSame_AfterCopyAssignment_WeakOnly 1281s [ OK ] WeakIntrusivePtrTest.HashIsSame_AfterCopyAssignment_WeakOnly (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.HashIsSame_BothInvalid 1281s [ OK ] WeakIntrusivePtrTest.HashIsSame_BothInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.OneIsLess 1281s [ OK ] WeakIntrusivePtrTest.OneIsLess (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.InvalidIsLess1 1281s [ OK ] WeakIntrusivePtrTest.InvalidIsLess1 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.InvalidIsLess2 1281s [ OK ] WeakIntrusivePtrTest.InvalidIsLess2 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.InvalidIsNotLessThanInvalid 1281s [ OK ] WeakIntrusivePtrTest.InvalidIsNotLessThanInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingResetOnWeakPtr_thenIsInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingResetOnWeakPtr_thenIsInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingResetOnStrongPtr_thenIsInvalid 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingResetOnStrongPtr_thenIsInvalid (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.AllowsMoveConstructingToConst 1281s [ OK ] WeakIntrusivePtrTest.AllowsMoveConstructingToConst (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.AllowsCopyConstructingToConst 1281s [ OK ] WeakIntrusivePtrTest.AllowsCopyConstructingToConst (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.AllowsMoveAssigningToConst 1281s [ OK ] WeakIntrusivePtrTest.AllowsMoveAssigningToConst (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.AllowsCopyAssigningToConst 1281s [ OK ] WeakIntrusivePtrTest.AllowsCopyAssigningToConst (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenNewPtr_thenHasUseCount1 1281s [ OK ] WeakIntrusivePtrTest.givenNewPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenNewPtr_thenIsNotExpired 1281s [ OK ] WeakIntrusivePtrTest.givenNewPtr_thenIsNotExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_thenHasUseCount0 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_thenHasUseCount0 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenInvalidPtr_thenIsExpired 1281s [ OK ] WeakIntrusivePtrTest.givenInvalidPtr_thenIsExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_thenHasUseCount0 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_thenHasUseCount0 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_thenIsExpired 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_thenIsExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingWeakReset_thenHasUseCount0 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingWeakReset_thenHasUseCount0 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingWeakReset_thenIsExpired 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingWeakReset_thenIsExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingStrongReset_thenHasUseCount0 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingStrongReset_thenHasUseCount0 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingStrongReset_thenIsExpired 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingStrongReset_thenIsExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenHasUseCount1 1281s [ OK ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenIsNotExpired 1281s [ OK ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenIsNotExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenOldHasUseCount0 1281s [ OK ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenOldHasUseCount0 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenOldIsExpired 1281s [ OK ] WeakIntrusivePtrTest.givenMoveConstructedPtr_thenOldIsExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenHasUseCount1 1281s [ OK ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenIsNotExpired 1281s [ OK ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenIsNotExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenOldHasUseCount0 1281s [ OK ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenOldHasUseCount0 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenOldIsExpired 1281s [ OK ] WeakIntrusivePtrTest.givenMoveAssignedPtr_thenOldIsExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenHasUseCount1 1281s [ OK ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenHasUseCount1 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenIsNotExpired 1281s [ OK ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenIsNotExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenOldHasUseCount1 1281s [ OK ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenOldHasUseCount1 (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenOldIsNotExpired 1281s [ OK ] WeakIntrusivePtrTest.givenCopyConstructedPtr_thenOldIsNotExpired (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenLastStrongPointerResets_thenReleasesResources 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenLastStrongPointerResets_thenReleasesResources (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenDestructedButStillHasStrongPointers_thenDoesntReleaseResources 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenDestructedButStillHasStrongPointers_thenDoesntReleaseResources (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenDestructed_thenDestructsObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenDestructed_thenDestructsObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructed_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructed_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructedToBaseClass_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveConstructedToBaseClass_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsOldObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsOldObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsOldObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsOldObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithBaseClassCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithBaseClassCopy_whenMoveAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithCopy_whenMoveAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithCopy_whenMoveAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveAssigned_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsObjectAfterSecondDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenMoveAssignedToBaseClass_thenDestructsObjectAfterSecondDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyConstructedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClassAndOriginalDestructed_thenDestructsObjectAfterLastDestruction (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssigned_thenDestructsOldObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssigned_thenDestructsOldObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClass_thenDestructsOldObject 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCopyAssignedToBaseClass_thenDestructsOldObject (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithBaseClassCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithBaseClassCopy_whenCopyAssigned_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCopyAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCopyAssignedToBaseClass_thenDestructsOldObjectAfterCopyIsDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenCallingReset_thenDestructs 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenCallingReset_thenDestructs (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCallingReset_thenDestructsAfterCopyDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCallingReset_thenDestructsAfterCopyDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCallingResetOnCopy_thenDestructsAfterOriginalDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithCopy_whenCallingResetOnCopy_thenDestructsAfterOriginalDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithMoved_whenCallingReset_thenDestructsAfterMovedDestructed 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithMoved_whenCallingReset_thenDestructsAfterMovedDestructed (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtrWithMoved_whenCallingResetOnMoved_thenDestructsImmediately 1281s [ OK ] WeakIntrusivePtrTest.givenPtrWithMoved_whenCallingResetOnMoved_thenDestructsImmediately (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenDoesntCrash 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenDoesntCrash (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenReleasedAndReclaimed_thenDoesntCrash 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenReleasedAndReclaimed_thenDoesntCrash (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenIsDestructedAtEnd 1281s [ OK ] WeakIntrusivePtrTest.givenPtr_whenReleasedAndReclaimed_thenIsDestructedAtEnd (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenReleasedAndReclaimed_thenIsDestructedAtEnd 1281s [ OK ] WeakIntrusivePtrTest.givenWeakOnlyPtr_whenReleasedAndReclaimed_thenIsDestructedAtEnd (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenStackObject_whenReclaimed_thenCrashes 1281s [ OK ] WeakIntrusivePtrTest.givenStackObject_whenReclaimed_thenCrashes (0 ms) 1281s [ RUN ] WeakIntrusivePtrTest.givenObjectWithWeakReferenceToSelf_whenDestroyed_thenDoesNotCrash 1281s [ OK ] WeakIntrusivePtrTest.givenObjectWithWeakReferenceToSelf_whenDestroyed_thenDoesNotCrash (0 ms) 1281s [----------] 172 tests from WeakIntrusivePtrTest (0 ms total) 1281s 1281s [----------] Global test environment tear-down 1281s [==========] 324 tests from 4 test suites ran. (0 ms total) 1281s [ PASSED ] 324 tests. 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1281s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1281s autopkgtest: DBG: testbed command exited with code 0 1282s autopkgtest [08:31:19]: test 47_of_104__cpptest__c10_intrusive_ptr_test: -----------------------] 1282s autopkgtest: DBG: testbed executing test finished with exit status 0 1282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/47_of_104__cpptest__c10_intrusive_ptr_test-stdout 1282s autopkgtest: DBG: got reply from testbed: ok 1282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/47_of_104__cpptest__c10_intrusive_ptr_test-stderr 1282s autopkgtest: DBG: got reply from testbed: ok 1282s autopkgtest [08:31:19]: test 47_of_104__cpptest__c10_intrusive_ptr_test: - - - - - - - - - - results - - - - - - - - - - 1282s 47_of_104__cpptest__c10_intrusive_ptr_test PASS 1282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1282s autopkgtest: DBG: got reply from testbed: ok 1282s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/47_of_104__cpptest__c10_intrusive_ptr_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1282s autopkgtest: DBG: testbed command exited with code 0 1282s autopkgtest [08:31:19]: test 48_of_104__cpptest__c10_irange_test: preparing testbed 1282s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1282s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1282s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1282s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1282s autopkgtest: DBG: can use apt-get on testbed: True 1282s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1283s Reading package lists... 1283s Building dependency tree... 1283s Reading state information... 1283s Starting pkgProblemResolver with broken count: 0 1283s Starting 2 pkgProblemResolver with broken count: 0 1283s Done 1283s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1283s autopkgtest: DBG: testbed command exited with code 0 1283s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1283s autopkgtest: DBG: testbed command exited with code 0 1283s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1283s autopkgtest: DBG: testbed command exited with code 0 1283s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-packages.all"], kind short, sout raw, serr pipe, env [] 1283s autopkgtest: DBG: testbed command exited with code 0 1283s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/48_of_104__cpptest__c10_irange_test-packages.all 1284s autopkgtest: DBG: got reply from testbed: ok 1284s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1284s autopkgtest: DBG: testbed command exited with code 0 1284s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1284s autopkgtest [08:31:21]: test 48_of_104__cpptest__c10_irange_test: /usr/lib/libtorch-test/c10_irange_test 1284s autopkgtest [08:31:21]: test 48_of_104__cpptest__c10_irange_test: [----------------------- 1284s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/48_of_104__cpptest__c10_irange_test-stderr --stdout=/tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_irange_test"], kind test, sout raw, serr raw, env [] 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-artifacts 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stderr 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stdout 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_irange_test 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.qrOI352WUE/out to stdout and file: /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stdout 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.qrOI352WUE/err to standard error and file: /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stdout 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9039 to /tmp/autopkgtest_script_pid 1284s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1284s [==========] Running 5 tests from 2 test suites. 1284s [----------] Global test environment set-up. 1284s [----------] 3 tests from irangeTest 1284s [ RUN ] irangeTest.range_test 1284s [ OK ] irangeTest.range_test (0 ms) 1284s [ RUN ] irangeTest.end_test 1284s [ OK ] irangeTest.end_test (0 ms) 1284s [ RUN ] irangeTest.neg_range_test 1284s [ OK ] irangeTest.neg_range_test (0 ms) 1284s [----------] 3 tests from irangeTest (0 ms total) 1284s 1284s [----------] 2 tests from irange 1284s [ RUN ] irange.empty_reverse_range_two_inputs 1284s [ OK ] irange.empty_reverse_range_two_inputs (0 ms) 1284s [ RUN ] irange.empty_reverse_range_one_input 1284s [ OK ] irange.empty_reverse_range_one_input (0 ms) 1284s [----------] 2 tests from irange (0 ms total) 1284s 1284s [----------] Global test environment tear-down 1284s [==========] 5 tests from 2 test suites ran. (0 ms total) 1284s [ PASSED ] 5 tests. 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1284s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1284s autopkgtest: DBG: testbed command exited with code 0 1284s autopkgtest [08:31:21]: test 48_of_104__cpptest__c10_irange_test: -----------------------] 1284s autopkgtest: DBG: testbed executing test finished with exit status 0 1284s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/48_of_104__cpptest__c10_irange_test-stdout 1284s autopkgtest: DBG: got reply from testbed: ok 1284s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/48_of_104__cpptest__c10_irange_test-stderr 1285s autopkgtest: DBG: got reply from testbed: ok 1285s autopkgtest [08:31:22]: test 48_of_104__cpptest__c10_irange_test: - - - - - - - - - - results - - - - - - - - - - 1285s 48_of_104__cpptest__c10_irange_test PASS 1285s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1285s autopkgtest: DBG: got reply from testbed: ok 1285s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/48_of_104__cpptest__c10_irange_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1285s autopkgtest: DBG: testbed command exited with code 0 1285s autopkgtest [08:31:22]: test 49_of_104__cpptest__c10_lazy_test: preparing testbed 1285s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1285s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1285s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1285s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1285s autopkgtest: DBG: can use apt-get on testbed: True 1285s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1285s Reading package lists... 1285s Building dependency tree... 1285s Reading state information... 1285s Starting pkgProblemResolver with broken count: 0 1285s Starting 2 pkgProblemResolver with broken count: 0 1285s Done 1286s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1286s autopkgtest: DBG: testbed command exited with code 0 1286s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1286s autopkgtest: DBG: testbed command exited with code 0 1286s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1286s autopkgtest: DBG: testbed command exited with code 0 1286s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-packages.all"], kind short, sout raw, serr pipe, env [] 1286s autopkgtest: DBG: testbed command exited with code 0 1286s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/49_of_104__cpptest__c10_lazy_test-packages.all 1286s autopkgtest: DBG: got reply from testbed: ok 1286s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1286s autopkgtest: DBG: testbed command exited with code 0 1286s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1286s autopkgtest [08:31:23]: test 49_of_104__cpptest__c10_lazy_test: /usr/lib/libtorch-test/c10_lazy_test 1286s autopkgtest [08:31:23]: test 49_of_104__cpptest__c10_lazy_test: [----------------------- 1286s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/49_of_104__cpptest__c10_lazy_test-stderr --stdout=/tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_lazy_test"], kind test, sout raw, serr raw, env [] 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-artifacts 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stderr 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stdout 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_lazy_test 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.dft7FNH4YN/out to stdout and file: /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stdout 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.dft7FNH4YN/err to standard error and file: /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stdout 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9192 to /tmp/autopkgtest_script_pid 1287s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1287s [==========] Running 3 tests from 1 test suite. 1287s [----------] Global test environment set-up. 1287s [----------] 3 tests from LazyTest 1287s [ RUN ] LazyTest.OptimisticLazy 1287s [ OK ] LazyTest.OptimisticLazy (0 ms) 1287s [ RUN ] LazyTest.PrecomputedLazyValue 1287s [ OK ] LazyTest.PrecomputedLazyValue (0 ms) 1287s [ RUN ] LazyTest.OptimisticLazyValue 1287s [ OK ] LazyTest.OptimisticLazyValue (0 ms) 1287s [----------] 3 tests from LazyTest (0 ms total) 1287s 1287s [----------] Global test environment tear-down 1287s [==========] 3 tests from 1 test suite ran. (0 ms total) 1287s [ PASSED ] 3 tests. 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1287s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1287s autopkgtest: DBG: testbed command exited with code 0 1287s autopkgtest [08:31:24]: test 49_of_104__cpptest__c10_lazy_test: -----------------------] 1287s autopkgtest: DBG: testbed executing test finished with exit status 0 1287s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/49_of_104__cpptest__c10_lazy_test-stdout 1287s autopkgtest: DBG: got reply from testbed: ok 1287s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/49_of_104__cpptest__c10_lazy_test-stderr 1287s autopkgtest: DBG: got reply from testbed: ok 1287s 49_of_104__cpptest__c10_lazy_test PASS 1287s autopkgtest [08:31:24]: test 49_of_104__cpptest__c10_lazy_test: - - - - - - - - - - results - - - - - - - - - - 1287s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1287s autopkgtest: DBG: got reply from testbed: ok 1287s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/49_of_104__cpptest__c10_lazy_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1288s autopkgtest: DBG: testbed command exited with code 0 1288s autopkgtest [08:31:25]: test 50_of_104__cpptest__c10_logging_test: preparing testbed 1288s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1288s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1288s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1288s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1288s autopkgtest: DBG: can use apt-get on testbed: True 1288s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1288s Reading package lists... 1288s Building dependency tree... 1288s Reading state information... 1288s Starting pkgProblemResolver with broken count: 0 1288s Starting 2 pkgProblemResolver with broken count: 0 1288s Done 1288s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1288s autopkgtest: DBG: testbed command exited with code 0 1288s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1288s autopkgtest: DBG: testbed command exited with code 0 1288s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1289s autopkgtest: DBG: testbed command exited with code 0 1289s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-packages.all"], kind short, sout raw, serr pipe, env [] 1289s autopkgtest: DBG: testbed command exited with code 0 1289s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/50_of_104__cpptest__c10_logging_test-packages.all 1289s autopkgtest: DBG: got reply from testbed: ok 1289s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1289s autopkgtest: DBG: testbed command exited with code 0 1289s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1289s autopkgtest [08:31:26]: test 50_of_104__cpptest__c10_logging_test: /usr/lib/libtorch-test/c10_logging_test 1289s autopkgtest [08:31:26]: test 50_of_104__cpptest__c10_logging_test: [----------------------- 1289s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/50_of_104__cpptest__c10_logging_test-stderr --stdout=/tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_logging_test"], kind test, sout raw, serr raw, env [] 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-artifacts 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stderr 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stdout 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_logging_test 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.zJeLkgpKND/out to stdout and file: /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stdout 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.zJeLkgpKND/err to standard error and file: /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stdout 1289s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9361 to /tmp/autopkgtest_script_pid 1289s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1289s [==========] Running 11 tests from 2 test suites. 1289s [----------] Global test environment set-up. 1289s [----------] 1 test from LoggingDeathTest 1289s [ RUN ] LoggingDeathTest.TestEnforceUsingFatal 1290s [ OK ] LoggingDeathTest.TestEnforceUsingFatal (619 ms) 1290s [----------] 1 test from LoggingDeathTest (619 ms total) 1290s 1290s [----------] 10 tests from LoggingTest 1290s [ RUN ] LoggingTest.TestEnforceTrue 1290s [ OK ] LoggingTest.TestEnforceTrue (0 ms) 1290s [ RUN ] LoggingTest.TestEnforceFalse 1290s [ OK ] LoggingTest.TestEnforceFalse (0 ms) 1290s [ RUN ] LoggingTest.TestEnforceEquals 1290s [ OK ] LoggingTest.TestEnforceEquals (0 ms) 1290s [ RUN ] LoggingTest.TestEnforceMessageVariables 1290s [ OK ] LoggingTest.TestEnforceMessageVariables (0 ms) 1290s [ RUN ] LoggingTest.EnforceEqualsObjectWithReferenceToTemporaryWithoutUseOutOfScope 1290s [ OK ] LoggingTest.EnforceEqualsObjectWithReferenceToTemporaryWithoutUseOutOfScope (0 ms) 1290s [ RUN ] LoggingTest.DoesntCopyComparedObjects 1290s [ OK ] LoggingTest.DoesntCopyComparedObjects (0 ms) 1290s [ RUN ] LoggingTest.EnforceShowcase 1290s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1290s [ OK ] LoggingTest.EnforceShowcase (0 ms) 1290s [ RUN ] LoggingTest.Join 1290s [ OK ] LoggingTest.Join (0 ms) 1290s [ RUN ] LoggingTest.TestDanglingElse 1290s [ OK ] LoggingTest.TestDanglingElse (0 ms) 1290s [ RUN ] LoggingTest.LazyBacktrace 1290s [ OK ] LoggingTest.LazyBacktrace (0 ms) 1290s [----------] 10 tests from LoggingTest (0 ms total) 1290s 1290s [----------] Global test environment tear-down 1290s [==========] 11 tests from 2 test suites ran. (620 ms total) 1290s [ PASSED ] 11 tests. 1290s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1290s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1290s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1290s autopkgtest: DBG: testbed command exited with code 0 1290s autopkgtest [08:31:27]: test 50_of_104__cpptest__c10_logging_test: -----------------------] 1290s autopkgtest: DBG: testbed executing test finished with exit status 0 1290s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/50_of_104__cpptest__c10_logging_test-stdout 1290s autopkgtest: DBG: got reply from testbed: ok 1290s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/50_of_104__cpptest__c10_logging_test-stderr 1290s autopkgtest: DBG: got reply from testbed: ok 1290s 50_of_104__cpptest__c10_logging_test PASS 1290s autopkgtest [08:31:27]: test 50_of_104__cpptest__c10_logging_test: - - - - - - - - - - results - - - - - - - - - - 1290s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1291s autopkgtest: DBG: got reply from testbed: ok 1291s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/50_of_104__cpptest__c10_logging_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1291s autopkgtest: DBG: testbed command exited with code 0 1291s autopkgtest [08:31:28]: test 51_of_104__cpptest__c10_optional_test: preparing testbed 1291s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1291s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1291s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1291s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1291s autopkgtest: DBG: can use apt-get on testbed: True 1291s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1291s Reading package lists... 1291s Building dependency tree... 1291s Reading state information... 1291s Starting pkgProblemResolver with broken count: 0 1291s Starting 2 pkgProblemResolver with broken count: 0 1291s Done 1291s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1291s autopkgtest: DBG: testbed command exited with code 0 1291s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1292s autopkgtest: DBG: testbed command exited with code 0 1292s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1292s autopkgtest: DBG: testbed command exited with code 0 1292s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-packages.all"], kind short, sout raw, serr pipe, env [] 1292s autopkgtest: DBG: testbed command exited with code 0 1292s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/51_of_104__cpptest__c10_optional_test-packages.all 1292s autopkgtest: DBG: got reply from testbed: ok 1292s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1292s autopkgtest: DBG: testbed command exited with code 0 1292s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1292s autopkgtest [08:31:29]: test 51_of_104__cpptest__c10_optional_test: /usr/lib/libtorch-test/c10_optional_test 1292s autopkgtest [08:31:29]: test 51_of_104__cpptest__c10_optional_test: [----------------------- 1292s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/51_of_104__cpptest__c10_optional_test-stderr --stdout=/tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_optional_test"], kind test, sout raw, serr raw, env [] 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-artifacts 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stderr 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stdout 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_optional_test 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4CTiCP9Hw5/out to stdout and file: /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stdout 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4CTiCP9Hw5/err to standard error and file: /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stdout 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9523 to /tmp/autopkgtest_script_pid 1292s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1292s [==========] Running 16 tests from 12 test suites. 1292s [----------] Global test environment set-up. 1292s [----------] 2 tests from OptionalTest/0, where TypeParam = bool 1292s [ RUN ] OptionalTest/0.Empty 1292s [ OK ] OptionalTest/0.Empty (0 ms) 1292s [ RUN ] OptionalTest/0.Initialized 1292s [ OK ] OptionalTest/0.Initialized (0 ms) 1292s [----------] 2 tests from OptionalTest/0 (0 ms total) 1292s 1292s [----------] 2 tests from OptionalTest/1, where TypeParam = unsigned long 1292s [ RUN ] OptionalTest/1.Empty 1292s [ OK ] OptionalTest/1.Empty (0 ms) 1292s [ RUN ] OptionalTest/1.Initialized 1292s [ OK ] OptionalTest/1.Initialized (0 ms) 1292s [----------] 2 tests from OptionalTest/1 (0 ms total) 1292s 1292s [----------] 2 tests from OptionalTest/2, where TypeParam = c10::ArrayRef 1292s [ RUN ] OptionalTest/2.Empty 1292s [ OK ] OptionalTest/2.Empty (0 ms) 1292s [ RUN ] OptionalTest/2.Initialized 1292s [ OK ] OptionalTest/2.Initialized (0 ms) 1292s [----------] 2 tests from OptionalTest/2 (0 ms total) 1292s 1292s [----------] 2 tests from OptionalTest/3, where TypeParam = std::basic_string,std::allocator > 1292s [ RUN ] OptionalTest/3.Empty 1292s [ OK ] OptionalTest/3.Empty (0 ms) 1292s [ RUN ] OptionalTest/3.Initialized 1292s [ OK ] OptionalTest/3.Initialized (0 ms) 1292s [----------] 2 tests from OptionalTest/3 (0 ms total) 1292s 1292s [----------] 1 test from OptionalTest 1292s [ RUN ] OptionalTest.Nullopt 1292s [ OK ] OptionalTest.Nullopt (0 ms) 1292s [----------] 1 test from OptionalTest (0 ms total) 1292s 1292s [----------] 1 test from CmpTest/0, where TypeParam = std::pair,std::optional > 1292s [ RUN ] CmpTest/0.Cmp 1292s [ OK ] CmpTest/0.Cmp (0 ms) 1292s [----------] 1 test from CmpTest/0 (0 ms total) 1292s 1292s [----------] 1 test from CmpTest/1, where TypeParam = std::pair,int> 1292s [ RUN ] CmpTest/1.Cmp 1292s [ OK ] CmpTest/1.Cmp (0 ms) 1292s [----------] 1 test from CmpTest/1 (0 ms total) 1292s 1292s [----------] 1 test from CmpTest/2, where TypeParam = std::pair > 1292s [ RUN ] CmpTest/2.Cmp 1292s [ OK ] CmpTest/2.Cmp (0 ms) 1292s [----------] 1 test from CmpTest/2 (0 ms total) 1292s 1292s [----------] 1 test from CmpTest/3, where TypeParam = std::pair,long> 1292s [ RUN ] CmpTest/3.Cmp 1292s [ OK ] CmpTest/3.Cmp (0 ms) 1292s [----------] 1 test from CmpTest/3 (0 ms total) 1292s 1292s [----------] 1 test from CmpTest/4, where TypeParam = std::pair > 1292s [ RUN ] CmpTest/4.Cmp 1292s [ OK ] CmpTest/4.Cmp (0 ms) 1292s [----------] 1 test from CmpTest/4 (0 ms total) 1292s 1292s [----------] 1 test from nullopt/SelfCompareTest 1292s [ RUN ] nullopt/SelfCompareTest.SelfCompare/0 1292s [ OK ] nullopt/SelfCompareTest.SelfCompare/0 (0 ms) 1292s [----------] 1 test from nullopt/SelfCompareTest (0 ms total) 1292s 1292s [----------] 1 test from int/SelfCompareTest 1292s [ RUN ] int/SelfCompareTest.SelfCompare/0 1292s [ OK ] int/SelfCompareTest.SelfCompare/0 (0 ms) 1292s [----------] 1 test from int/SelfCompareTest (0 ms total) 1292s 1292s [----------] Global test environment tear-down 1292s [==========] 16 tests from 12 test suites ran. (0 ms total) 1292s [ PASSED ] 16 tests. 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1292s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1292s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest [08:31:30]: test 51_of_104__cpptest__c10_optional_test: -----------------------] 1293s autopkgtest: DBG: testbed executing test finished with exit status 0 1293s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/51_of_104__cpptest__c10_optional_test-stdout 1293s autopkgtest: DBG: got reply from testbed: ok 1293s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/51_of_104__cpptest__c10_optional_test-stderr 1293s autopkgtest: DBG: got reply from testbed: ok 1293s 51_of_104__cpptest__c10_optional_test PASS 1293s autopkgtest [08:31:30]: test 51_of_104__cpptest__c10_optional_test: - - - - - - - - - - results - - - - - - - - - - 1293s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1293s autopkgtest: DBG: got reply from testbed: ok 1293s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/51_of_104__cpptest__c10_optional_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1293s autopkgtest: DBG: testbed command exited with code 0 1293s autopkgtest [08:31:30]: test 52_of_104__cpptest__c10_ordered_preserving_dict_test: preparing testbed 1293s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1293s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1293s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1293s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1293s autopkgtest: DBG: can use apt-get on testbed: True 1293s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1294s Reading package lists... 1294s Building dependency tree... 1294s Reading state information... 1294s Starting pkgProblemResolver with broken count: 0 1294s Starting 2 pkgProblemResolver with broken count: 0 1294s Done 1294s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1294s autopkgtest: DBG: testbed command exited with code 0 1294s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1294s autopkgtest: DBG: testbed command exited with code 0 1294s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1294s autopkgtest: DBG: testbed command exited with code 0 1294s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-packages.all"], kind short, sout raw, serr pipe, env [] 1295s autopkgtest: DBG: testbed command exited with code 0 1295s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/52_of_104__cpptest__c10_ordered_preserving_dict_test-packages.all 1295s autopkgtest: DBG: got reply from testbed: ok 1295s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1295s autopkgtest: DBG: testbed command exited with code 0 1295s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1295s autopkgtest [08:31:32]: test 52_of_104__cpptest__c10_ordered_preserving_dict_test: /usr/lib/libtorch-test/c10_ordered_preserving_dict_test 1295s autopkgtest [08:31:32]: test 52_of_104__cpptest__c10_ordered_preserving_dict_test: [----------------------- 1295s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stderr --stdout=/tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_ordered_preserving_dict_test"], kind test, sout raw, serr raw, env [] 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-artifacts 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stderr 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stdout 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_ordered_preserving_dict_test 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uKXbxwWQGD/out to stdout and file: /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stdout 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.uKXbxwWQGD/err to standard error and file: /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stdout 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9676 to /tmp/autopkgtest_script_pid 1295s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1295s [==========] Running 19 tests from 1 test suite. 1295s [----------] Global test environment set-up. 1295s [----------] 19 tests from OrderedPreservingDictTest 1295s [ RUN ] OrderedPreservingDictTest.InsertAndDeleteBasic 1295s [ OK ] OrderedPreservingDictTest.InsertAndDeleteBasic (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.InsertExistingDoesntAffectOrder 1295s [ OK ] OrderedPreservingDictTest.InsertExistingDoesntAffectOrder (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.testRefType 1295s [ OK ] OrderedPreservingDictTest.testRefType (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.DictCollisions 1295s [ OK ] OrderedPreservingDictTest.DictCollisions (65 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_range_insert 1295s [ OK ] OrderedPreservingDictTest.test_range_insert (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_range_erase_all 1295s [ OK ] OrderedPreservingDictTest.test_range_erase_all (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_range_erase 1295s [ OK ] OrderedPreservingDictTest.test_range_erase (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_move_constructor_empty 1295s [ OK ] OrderedPreservingDictTest.test_move_constructor_empty (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_move_operator_empty 1295s [ OK ] OrderedPreservingDictTest.test_move_operator_empty (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_reassign_moved_object_move_constructor 1295s [ OK ] OrderedPreservingDictTest.test_reassign_moved_object_move_constructor (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_reassign_moved_object_move_operator 1295s [ OK ] OrderedPreservingDictTest.test_reassign_moved_object_move_operator (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_copy_constructor_and_operator 1295s [ OK ] OrderedPreservingDictTest.test_copy_constructor_and_operator (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_copy_constructor_empty 1295s [ OK ] OrderedPreservingDictTest.test_copy_constructor_empty (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_copy_operator_empty 1295s [ OK ] OrderedPreservingDictTest.test_copy_operator_empty (0 ms) 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1295s [ RUN ] OrderedPreservingDictTest.test_at 1295s [ OK ] OrderedPreservingDictTest.test_at (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_equal_range 1295s [ OK ] OrderedPreservingDictTest.test_equal_range (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_access_operator 1295s [ OK ] OrderedPreservingDictTest.test_access_operator (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_swap 1295s [ OK ] OrderedPreservingDictTest.test_swap (0 ms) 1295s [ RUN ] OrderedPreservingDictTest.test_swap_empty 1295s [ OK ] OrderedPreservingDictTest.test_swap_empty (0 ms) 1295s [----------] 19 tests from OrderedPreservingDictTest (65 ms total) 1295s 1295s [----------] Global test environment tear-down 1295s [==========] 19 tests from 1 test suite ran. (65 ms total) 1295s [ PASSED ] 19 tests. 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1295s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1295s autopkgtest: DBG: testbed command exited with code 0 1295s autopkgtest [08:31:32]: test 52_of_104__cpptest__c10_ordered_preserving_dict_test: -----------------------] 1295s autopkgtest: DBG: testbed executing test finished with exit status 0 1295s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/52_of_104__cpptest__c10_ordered_preserving_dict_test-stdout 1296s autopkgtest: DBG: got reply from testbed: ok 1296s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/52_of_104__cpptest__c10_ordered_preserving_dict_test-stderr 1296s autopkgtest: DBG: got reply from testbed: ok 1296s 52_of_104__cpptest__c10_ordered_preserving_dict_test PASS 1296s autopkgtest [08:31:33]: test 52_of_104__cpptest__c10_ordered_preserving_dict_test: - - - - - - - - - - results - - - - - - - - - - 1296s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1296s autopkgtest: DBG: got reply from testbed: ok 1296s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/52_of_104__cpptest__c10_ordered_preserving_dict_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1296s autopkgtest: DBG: testbed command exited with code 0 1296s autopkgtest [08:31:33]: test 53_of_104__cpptest__c10_registry_test: preparing testbed 1296s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1296s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1296s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1296s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1296s autopkgtest: DBG: can use apt-get on testbed: True 1296s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1297s Reading package lists... 1297s Building dependency tree... 1297s Reading state information... 1297s Starting pkgProblemResolver with broken count: 0 1297s Starting 2 pkgProblemResolver with broken count: 0 1297s Done 1297s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1297s autopkgtest: DBG: testbed command exited with code 0 1297s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1297s autopkgtest: DBG: testbed command exited with code 0 1297s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1297s autopkgtest: DBG: testbed command exited with code 0 1297s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-packages.all"], kind short, sout raw, serr pipe, env [] 1297s autopkgtest: DBG: testbed command exited with code 0 1297s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/53_of_104__cpptest__c10_registry_test-packages.all 1298s autopkgtest: DBG: got reply from testbed: ok 1298s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1298s autopkgtest: DBG: testbed command exited with code 0 1298s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1298s autopkgtest [08:31:35]: test 53_of_104__cpptest__c10_registry_test: /usr/lib/libtorch-test/c10_registry_test 1298s autopkgtest [08:31:35]: test 53_of_104__cpptest__c10_registry_test: [----------------------- 1298s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/53_of_104__cpptest__c10_registry_test-stderr --stdout=/tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_registry_test"], kind test, sout raw, serr raw, env [] 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-artifacts 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stderr 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stdout 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_registry_test 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.lpYN4TLtfl/out to stdout and file: /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stdout 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.lpYN4TLtfl/err to standard error and file: /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stdout 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9829 to /tmp/autopkgtest_script_pid 1298s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1298s [==========] Running 3 tests from 1 test suite. 1298s [----------] Global test environment set-up. 1298s Key already registered with the same priority: FooWithPriority 1298s Higher priority item already registered, skipping registration of FooWithPriority 1298s [----------] 3 tests from RegistryTest 1298s [ RUN ] RegistryTest.CanRunCreator 1298s [ OK ] RegistryTest.CanRunCreator (0 ms) 1298s [ RUN ] RegistryTest.ReturnNullOnNonExistingCreator 1298s [ OK ] RegistryTest.ReturnNullOnNonExistingCreator (0 ms) 1298s [ RUN ] RegistryTest.RegistryPriorities 1298s [ OK ] RegistryTest.RegistryPriorities (0 ms) 1298s [----------] 3 tests from RegistryTest (0 ms total) 1298s 1298s [----------] Global test environment tear-down 1298s [==========] 3 tests from 1 test suite ran. (0 ms total) 1298s [ PASSED ] 3 tests. 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1298s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1298s autopkgtest: DBG: testbed command exited with code 0 1298s autopkgtest [08:31:35]: test 53_of_104__cpptest__c10_registry_test: -----------------------] 1298s autopkgtest: DBG: testbed executing test finished with exit status 0 1298s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/53_of_104__cpptest__c10_registry_test-stdout 1298s autopkgtest: DBG: got reply from testbed: ok 1298s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/53_of_104__cpptest__c10_registry_test-stderr 1299s autopkgtest: DBG: got reply from testbed: ok 1299s autopkgtest [08:31:36]: test 53_of_104__cpptest__c10_registry_test: - - - - - - - - - - results - - - - - - - - - - 1299s 53_of_104__cpptest__c10_registry_test PASS 1299s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1299s autopkgtest: DBG: got reply from testbed: ok 1299s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/53_of_104__cpptest__c10_registry_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1299s autopkgtest: DBG: testbed command exited with code 0 1299s autopkgtest [08:31:36]: test 54_of_104__cpptest__c10_small_vector_test: preparing testbed 1299s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1299s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1299s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1299s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1299s autopkgtest: DBG: can use apt-get on testbed: True 1299s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1299s Reading package lists... 1299s Building dependency tree... 1299s Reading state information... 1299s Starting pkgProblemResolver with broken count: 0 1299s Starting 2 pkgProblemResolver with broken count: 0 1299s Done 1300s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-packages.all"], kind short, sout raw, serr pipe, env [] 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/54_of_104__cpptest__c10_small_vector_test-packages.all 1300s autopkgtest: DBG: got reply from testbed: ok 1300s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1300s autopkgtest: DBG: testbed command exited with code 0 1300s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1300s autopkgtest [08:31:37]: test 54_of_104__cpptest__c10_small_vector_test: /usr/lib/libtorch-test/c10_small_vector_test 1300s autopkgtest [08:31:37]: test 54_of_104__cpptest__c10_small_vector_test: [----------------------- 1300s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/54_of_104__cpptest__c10_small_vector_test-stderr --stdout=/tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_small_vector_test"], kind test, sout raw, serr raw, env [] 1300s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-artifacts 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stderr 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stdout 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_small_vector_test 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.K8ZoZp7yoZ/out to stdout and file: /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stdout 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.K8ZoZp7yoZ/err to standard error and file: /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stdout 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 9982 to /tmp/autopkgtest_script_pid 1301s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1301s [==========] Running 221 tests from 15 test suites. 1301s [----------] Global test environment set-up. 1301s [----------] 37 tests from SmallVectorTest/0, where TypeParam = c10::SmallVector<(anonymous namespace)::Constructable,0u> 1301s [ RUN ] SmallVectorTest/0.ConstructorNonIterTest 1301s [ OK ] SmallVectorTest/0.ConstructorNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ConstructorIterTest 1301s [ OK ] SmallVectorTest/0.ConstructorIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.EmptyVectorTest 1301s [ OK ] SmallVectorTest/0.EmptyVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.PushPopTest 1301s [ OK ] SmallVectorTest/0.PushPopTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ClearTest 1301s [ OK ] SmallVectorTest/0.ClearTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ResizeShrinkTest 1301s [ OK ] SmallVectorTest/0.ResizeShrinkTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ResizeGrowTest 1301s [ OK ] SmallVectorTest/0.ResizeGrowTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ResizeWithElementsTest 1301s [ OK ] SmallVectorTest/0.ResizeWithElementsTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ResizeFillTest 1301s [ OK ] SmallVectorTest/0.ResizeFillTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.OverflowTest 1301s [ OK ] SmallVectorTest/0.OverflowTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.IterationTest 1301s [ OK ] SmallVectorTest/0.IterationTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.SwapTest 1301s [ OK ] SmallVectorTest/0.SwapTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AppendTest 1301s [ OK ] SmallVectorTest/0.AppendTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AppendRepeatedTest 1301s [ OK ] SmallVectorTest/0.AppendRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AppendNonIterTest 1301s [ OK ] SmallVectorTest/0.AppendNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AppendRepeatedNonForwardIterator 1301s [ OK ] SmallVectorTest/0.AppendRepeatedNonForwardIterator (0 ms) 1301s [ RUN ] SmallVectorTest/0.AppendSmallVector 1301s [ OK ] SmallVectorTest/0.AppendSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/0.AssignTest 1301s [ OK ] SmallVectorTest/0.AssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AssignRangeTest 1301s [ OK ] SmallVectorTest/0.AssignRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AssignNonIterTest 1301s [ OK ] SmallVectorTest/0.AssignNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.AssignSmallVector 1301s [ OK ] SmallVectorTest/0.AssignSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/0.MoveAssignTest 1301s [ OK ] SmallVectorTest/0.MoveAssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.EraseTest 1301s [ OK ] SmallVectorTest/0.EraseTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.EraseRangeTest 1301s [ OK ] SmallVectorTest/0.EraseRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertTest 1301s [ OK ] SmallVectorTest/0.InsertTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertCopy 1301s [ OK ] SmallVectorTest/0.InsertCopy (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertRepeatedTest 1301s [ OK ] SmallVectorTest/0.InsertRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertRepeatedNonIterTest 1301s [ OK ] SmallVectorTest/0.InsertRepeatedNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertRepeatedAtEndTest 1301s [ OK ] SmallVectorTest/0.InsertRepeatedAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertRepeatedEmptyTest 1301s [ OK ] SmallVectorTest/0.InsertRepeatedEmptyTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertRangeTest 1301s [ OK ] SmallVectorTest/0.InsertRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertRangeAtEndTest 1301s [ OK ] SmallVectorTest/0.InsertRangeAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.InsertEmptyRangeTest 1301s [ OK ] SmallVectorTest/0.InsertEmptyRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ComparisonTest 1301s [ OK ] SmallVectorTest/0.ComparisonTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.ConstVectorTest 1301s [ OK ] SmallVectorTest/0.ConstVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.DirectVectorTest 1301s [ OK ] SmallVectorTest/0.DirectVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/0.IteratorTest 1301s [ OK ] SmallVectorTest/0.IteratorTest (0 ms) 1301s [----------] 37 tests from SmallVectorTest/0 (0 ms total) 1301s 1301s [----------] 37 tests from SmallVectorTest/1, where TypeParam = c10::SmallVector<(anonymous namespace)::Constructable,1u> 1301s [ RUN ] SmallVectorTest/1.ConstructorNonIterTest 1301s [ OK ] SmallVectorTest/1.ConstructorNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ConstructorIterTest 1301s [ OK ] SmallVectorTest/1.ConstructorIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.EmptyVectorTest 1301s [ OK ] SmallVectorTest/1.EmptyVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.PushPopTest 1301s [ OK ] SmallVectorTest/1.PushPopTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ClearTest 1301s [ OK ] SmallVectorTest/1.ClearTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ResizeShrinkTest 1301s [ OK ] SmallVectorTest/1.ResizeShrinkTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ResizeGrowTest 1301s [ OK ] SmallVectorTest/1.ResizeGrowTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ResizeWithElementsTest 1301s [ OK ] SmallVectorTest/1.ResizeWithElementsTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ResizeFillTest 1301s [ OK ] SmallVectorTest/1.ResizeFillTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.OverflowTest 1301s [ OK ] SmallVectorTest/1.OverflowTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.IterationTest 1301s [ OK ] SmallVectorTest/1.IterationTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.SwapTest 1301s [ OK ] SmallVectorTest/1.SwapTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AppendTest 1301s [ OK ] SmallVectorTest/1.AppendTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AppendRepeatedTest 1301s [ OK ] SmallVectorTest/1.AppendRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AppendNonIterTest 1301s [ OK ] SmallVectorTest/1.AppendNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AppendRepeatedNonForwardIterator 1301s [ OK ] SmallVectorTest/1.AppendRepeatedNonForwardIterator (0 ms) 1301s [ RUN ] SmallVectorTest/1.AppendSmallVector 1301s [ OK ] SmallVectorTest/1.AppendSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/1.AssignTest 1301s [ OK ] SmallVectorTest/1.AssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AssignRangeTest 1301s [ OK ] SmallVectorTest/1.AssignRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AssignNonIterTest 1301s [ OK ] SmallVectorTest/1.AssignNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.AssignSmallVector 1301s [ OK ] SmallVectorTest/1.AssignSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/1.MoveAssignTest 1301s [ OK ] SmallVectorTest/1.MoveAssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.EraseTest 1301s [ OK ] SmallVectorTest/1.EraseTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.EraseRangeTest 1301s [ OK ] SmallVectorTest/1.EraseRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertTest 1301s [ OK ] SmallVectorTest/1.InsertTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertCopy 1301s [ OK ] SmallVectorTest/1.InsertCopy (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertRepeatedTest 1301s [ OK ] SmallVectorTest/1.InsertRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertRepeatedNonIterTest 1301s [ OK ] SmallVectorTest/1.InsertRepeatedNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertRepeatedAtEndTest 1301s [ OK ] SmallVectorTest/1.InsertRepeatedAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertRepeatedEmptyTest 1301s [ OK ] SmallVectorTest/1.InsertRepeatedEmptyTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertRangeTest 1301s [ OK ] SmallVectorTest/1.InsertRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertRangeAtEndTest 1301s [ OK ] SmallVectorTest/1.InsertRangeAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.InsertEmptyRangeTest 1301s [ OK ] SmallVectorTest/1.InsertEmptyRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ComparisonTest 1301s [ OK ] SmallVectorTest/1.ComparisonTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.ConstVectorTest 1301s [ OK ] SmallVectorTest/1.ConstVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.DirectVectorTest 1301s [ OK ] SmallVectorTest/1.DirectVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/1.IteratorTest 1301s [ OK ] SmallVectorTest/1.IteratorTest (0 ms) 1301s [----------] 37 tests from SmallVectorTest/1 (0 ms total) 1301s 1301s [----------] 37 tests from SmallVectorTest/2, where TypeParam = c10::SmallVector<(anonymous namespace)::Constructable,2u> 1301s [ RUN ] SmallVectorTest/2.ConstructorNonIterTest 1301s [ OK ] SmallVectorTest/2.ConstructorNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ConstructorIterTest 1301s [ OK ] SmallVectorTest/2.ConstructorIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.EmptyVectorTest 1301s [ OK ] SmallVectorTest/2.EmptyVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.PushPopTest 1301s [ OK ] SmallVectorTest/2.PushPopTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ClearTest 1301s [ OK ] SmallVectorTest/2.ClearTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ResizeShrinkTest 1301s [ OK ] SmallVectorTest/2.ResizeShrinkTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ResizeGrowTest 1301s [ OK ] SmallVectorTest/2.ResizeGrowTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ResizeWithElementsTest 1301s [ OK ] SmallVectorTest/2.ResizeWithElementsTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ResizeFillTest 1301s [ OK ] SmallVectorTest/2.ResizeFillTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.OverflowTest 1301s [ OK ] SmallVectorTest/2.OverflowTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.IterationTest 1301s [ OK ] SmallVectorTest/2.IterationTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.SwapTest 1301s [ OK ] SmallVectorTest/2.SwapTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AppendTest 1301s [ OK ] SmallVectorTest/2.AppendTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AppendRepeatedTest 1301s [ OK ] SmallVectorTest/2.AppendRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AppendNonIterTest 1301s [ OK ] SmallVectorTest/2.AppendNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AppendRepeatedNonForwardIterator 1301s [ OK ] SmallVectorTest/2.AppendRepeatedNonForwardIterator (0 ms) 1301s [ RUN ] SmallVectorTest/2.AppendSmallVector 1301s [ OK ] SmallVectorTest/2.AppendSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/2.AssignTest 1301s [ OK ] SmallVectorTest/2.AssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AssignRangeTest 1301s [ OK ] SmallVectorTest/2.AssignRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AssignNonIterTest 1301s [ OK ] SmallVectorTest/2.AssignNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.AssignSmallVector 1301s [ OK ] SmallVectorTest/2.AssignSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/2.MoveAssignTest 1301s [ OK ] SmallVectorTest/2.MoveAssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.EraseTest 1301s [ OK ] SmallVectorTest/2.EraseTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.EraseRangeTest 1301s [ OK ] SmallVectorTest/2.EraseRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertTest 1301s [ OK ] SmallVectorTest/2.InsertTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertCopy 1301s [ OK ] SmallVectorTest/2.InsertCopy (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertRepeatedTest 1301s [ OK ] SmallVectorTest/2.InsertRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertRepeatedNonIterTest 1301s [ OK ] SmallVectorTest/2.InsertRepeatedNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertRepeatedAtEndTest 1301s [ OK ] SmallVectorTest/2.InsertRepeatedAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertRepeatedEmptyTest 1301s [ OK ] SmallVectorTest/2.InsertRepeatedEmptyTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertRangeTest 1301s [ OK ] SmallVectorTest/2.InsertRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertRangeAtEndTest 1301s [ OK ] SmallVectorTest/2.InsertRangeAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.InsertEmptyRangeTest 1301s [ OK ] SmallVectorTest/2.InsertEmptyRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ComparisonTest 1301s [ OK ] SmallVectorTest/2.ComparisonTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.ConstVectorTest 1301s [ OK ] SmallVectorTest/2.ConstVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.DirectVectorTest 1301s [ OK ] SmallVectorTest/2.DirectVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/2.IteratorTest 1301s [ OK ] SmallVectorTest/2.IteratorTest (0 ms) 1301s [----------] 37 tests from SmallVectorTest/2 (0 ms total) 1301s 1301s [----------] 37 tests from SmallVectorTest/3, where TypeParam = c10::SmallVector<(anonymous namespace)::Constructable,4u> 1301s [ RUN ] SmallVectorTest/3.ConstructorNonIterTest 1301s [ OK ] SmallVectorTest/3.ConstructorNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ConstructorIterTest 1301s [ OK ] SmallVectorTest/3.ConstructorIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.EmptyVectorTest 1301s [ OK ] SmallVectorTest/3.EmptyVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.PushPopTest 1301s [ OK ] SmallVectorTest/3.PushPopTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ClearTest 1301s [ OK ] SmallVectorTest/3.ClearTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ResizeShrinkTest 1301s [ OK ] SmallVectorTest/3.ResizeShrinkTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ResizeGrowTest 1301s [ OK ] SmallVectorTest/3.ResizeGrowTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ResizeWithElementsTest 1301s [ OK ] SmallVectorTest/3.ResizeWithElementsTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ResizeFillTest 1301s [ OK ] SmallVectorTest/3.ResizeFillTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.OverflowTest 1301s [ OK ] SmallVectorTest/3.OverflowTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.IterationTest 1301s [ OK ] SmallVectorTest/3.IterationTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.SwapTest 1301s [ OK ] SmallVectorTest/3.SwapTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AppendTest 1301s [ OK ] SmallVectorTest/3.AppendTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AppendRepeatedTest 1301s [ OK ] SmallVectorTest/3.AppendRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AppendNonIterTest 1301s [ OK ] SmallVectorTest/3.AppendNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AppendRepeatedNonForwardIterator 1301s [ OK ] SmallVectorTest/3.AppendRepeatedNonForwardIterator (0 ms) 1301s [ RUN ] SmallVectorTest/3.AppendSmallVector 1301s [ OK ] SmallVectorTest/3.AppendSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/3.AssignTest 1301s [ OK ] SmallVectorTest/3.AssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AssignRangeTest 1301s [ OK ] SmallVectorTest/3.AssignRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AssignNonIterTest 1301s [ OK ] SmallVectorTest/3.AssignNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.AssignSmallVector 1301s [ OK ] SmallVectorTest/3.AssignSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/3.MoveAssignTest 1301s [ OK ] SmallVectorTest/3.MoveAssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.EraseTest 1301s [ OK ] SmallVectorTest/3.EraseTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.EraseRangeTest 1301s [ OK ] SmallVectorTest/3.EraseRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertTest 1301s [ OK ] SmallVectorTest/3.InsertTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertCopy 1301s [ OK ] SmallVectorTest/3.InsertCopy (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertRepeatedTest 1301s [ OK ] SmallVectorTest/3.InsertRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertRepeatedNonIterTest 1301s [ OK ] SmallVectorTest/3.InsertRepeatedNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertRepeatedAtEndTest 1301s [ OK ] SmallVectorTest/3.InsertRepeatedAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertRepeatedEmptyTest 1301s [ OK ] SmallVectorTest/3.InsertRepeatedEmptyTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertRangeTest 1301s [ OK ] SmallVectorTest/3.InsertRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertRangeAtEndTest 1301s [ OK ] SmallVectorTest/3.InsertRangeAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.InsertEmptyRangeTest 1301s [ OK ] SmallVectorTest/3.InsertEmptyRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ComparisonTest 1301s [ OK ] SmallVectorTest/3.ComparisonTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.ConstVectorTest 1301s [ OK ] SmallVectorTest/3.ConstVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.DirectVectorTest 1301s [ OK ] SmallVectorTest/3.DirectVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/3.IteratorTest 1301s [ OK ] SmallVectorTest/3.IteratorTest (0 ms) 1301s [----------] 37 tests from SmallVectorTest/3 (0 ms total) 1301s 1301s [----------] 37 tests from SmallVectorTest/4, where TypeParam = c10::SmallVector<(anonymous namespace)::Constructable,5u> 1301s [ RUN ] SmallVectorTest/4.ConstructorNonIterTest 1301s [ OK ] SmallVectorTest/4.ConstructorNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ConstructorIterTest 1301s [ OK ] SmallVectorTest/4.ConstructorIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.EmptyVectorTest 1301s [ OK ] SmallVectorTest/4.EmptyVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.PushPopTest 1301s [ OK ] SmallVectorTest/4.PushPopTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ClearTest 1301s [ OK ] SmallVectorTest/4.ClearTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ResizeShrinkTest 1301s [ OK ] SmallVectorTest/4.ResizeShrinkTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ResizeGrowTest 1301s [ OK ] SmallVectorTest/4.ResizeGrowTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ResizeWithElementsTest 1301s [ OK ] SmallVectorTest/4.ResizeWithElementsTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ResizeFillTest 1301s [ OK ] SmallVectorTest/4.ResizeFillTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.OverflowTest 1301s [ OK ] SmallVectorTest/4.OverflowTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.IterationTest 1301s [ OK ] SmallVectorTest/4.IterationTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.SwapTest 1301s [ OK ] SmallVectorTest/4.SwapTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AppendTest 1301s [ OK ] SmallVectorTest/4.AppendTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AppendRepeatedTest 1301s [ OK ] SmallVectorTest/4.AppendRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AppendNonIterTest 1301s [ OK ] SmallVectorTest/4.AppendNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AppendRepeatedNonForwardIterator 1301s [ OK ] SmallVectorTest/4.AppendRepeatedNonForwardIterator (0 ms) 1301s [ RUN ] SmallVectorTest/4.AppendSmallVector 1301s [ OK ] SmallVectorTest/4.AppendSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/4.AssignTest 1301s [ OK ] SmallVectorTest/4.AssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AssignRangeTest 1301s [ OK ] SmallVectorTest/4.AssignRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AssignNonIterTest 1301s [ OK ] SmallVectorTest/4.AssignNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.AssignSmallVector 1301s [ OK ] SmallVectorTest/4.AssignSmallVector (0 ms) 1301s [ RUN ] SmallVectorTest/4.MoveAssignTest 1301s [ OK ] SmallVectorTest/4.MoveAssignTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.EraseTest 1301s [ OK ] SmallVectorTest/4.EraseTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.EraseRangeTest 1301s [ OK ] SmallVectorTest/4.EraseRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertTest 1301s [ OK ] SmallVectorTest/4.InsertTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertCopy 1301s [ OK ] SmallVectorTest/4.InsertCopy (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertRepeatedTest 1301s [ OK ] SmallVectorTest/4.InsertRepeatedTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertRepeatedNonIterTest 1301s [ OK ] SmallVectorTest/4.InsertRepeatedNonIterTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertRepeatedAtEndTest 1301s [ OK ] SmallVectorTest/4.InsertRepeatedAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertRepeatedEmptyTest 1301s [ OK ] SmallVectorTest/4.InsertRepeatedEmptyTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertRangeTest 1301s [ OK ] SmallVectorTest/4.InsertRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertRangeAtEndTest 1301s [ OK ] SmallVectorTest/4.InsertRangeAtEndTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.InsertEmptyRangeTest 1301s [ OK ] SmallVectorTest/4.InsertEmptyRangeTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ComparisonTest 1301s [ OK ] SmallVectorTest/4.ComparisonTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.ConstVectorTest 1301s [ OK ] SmallVectorTest/4.ConstVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.DirectVectorTest 1301s [ OK ] SmallVectorTest/4.DirectVectorTest (0 ms) 1301s [ RUN ] SmallVectorTest/4.IteratorTest 1301s [ OK ] SmallVectorTest/4.IteratorTest (0 ms) 1301s [----------] 37 tests from SmallVectorTest/4 (0 ms total) 1301s 1301s [----------] 5 tests from SmallVectorTest 1301s [ RUN ] SmallVectorTest.ResizeForOverwrite 1301s [ OK ] SmallVectorTest.ResizeForOverwrite (0 ms) 1301s [ RUN ] SmallVectorTest.MidInsert 1301s [ OK ] SmallVectorTest.MidInsert (0 ms) 1301s [ RUN ] SmallVectorTest.EmplaceBack 1301s [ OK ] SmallVectorTest.EmplaceBack (0 ms) 1301s [ RUN ] SmallVectorTest.DefaultInlinedElements 1301s [ OK ] SmallVectorTest.DefaultInlinedElements (0 ms) 1301s [ RUN ] SmallVectorTest.InitializerList 1301s [ OK ] SmallVectorTest.InitializerList (0 ms) 1301s [----------] 5 tests from SmallVectorTest (0 ms total) 1301s 1301s [----------] 1 test from DualSmallVectorsTest/0, where TypeParam = std::pair,c10::SmallVector<(anonymous namespace)::Constructable,4u> > 1301s [ RUN ] DualSmallVectorsTest/0.MoveAssignment 1301s [ OK ] DualSmallVectorsTest/0.MoveAssignment (0 ms) 1301s [----------] 1 test from DualSmallVectorsTest/0 (0 ms total) 1301s 1301s [----------] 1 test from DualSmallVectorsTest/1, where TypeParam = std::pair,c10::SmallVector<(anonymous namespace)::Constructable,2u> > 1301s [ RUN ] DualSmallVectorsTest/1.MoveAssignment 1301s [ OK ] DualSmallVectorsTest/1.MoveAssignment (0 ms) 1301s [----------] 1 test from DualSmallVectorsTest/1 (0 ms total) 1301s 1301s [----------] 1 test from DualSmallVectorsTest/2, where TypeParam = std::pair,c10::SmallVector<(anonymous namespace)::Constructable,4u> > 1301s [ RUN ] DualSmallVectorsTest/2.MoveAssignment 1301s [ OK ] DualSmallVectorsTest/2.MoveAssignment (0 ms) 1301s [----------] 1 test from DualSmallVectorsTest/2 (0 ms total) 1301s 1301s [----------] 1 test from DualSmallVectorsTest/3, where TypeParam = std::pair,c10::SmallVector<(anonymous namespace)::Constructable,2u> > 1301s [ RUN ] DualSmallVectorsTest/3.MoveAssignment 1301s [ OK ] DualSmallVectorsTest/3.MoveAssignment (0 ms) 1301s [----------] 1 test from DualSmallVectorsTest/3 (0 ms total) 1301s 1301s [----------] 1 test from SmallVectorCustomTest 1301s [ RUN ] SmallVectorCustomTest.NoAssignTest 1301s [ OK ] SmallVectorCustomTest.NoAssignTest (0 ms) 1301s [----------] 1 test from SmallVectorCustomTest (0 ms total) 1301s 1301s [----------] 12 tests from SmallVectorReferenceInvalidationTest/0, where TypeParam = c10::SmallVector 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.PushBack 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.PushBack (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.PushBackMoved 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.PushBackMoved (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.Resize 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.Resize (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.Append 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.Append (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.AppendRange 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.AppendRange (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.Assign 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.Assign (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.AssignRange 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.AssignRange (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.Insert 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.Insert (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.InsertMoved 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.InsertMoved (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.InsertN 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.InsertN (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.InsertRange 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.InsertRange (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/0.EmplaceBack 1301s [ OK ] SmallVectorReferenceInvalidationTest/0.EmplaceBack (0 ms) 1301s [----------] 12 tests from SmallVectorReferenceInvalidationTest/0 (0 ms total) 1301s 1301s [----------] 12 tests from SmallVectorReferenceInvalidationTest/1, where TypeParam = c10::SmallVector<(anonymous namespace)::Constructable,3u> 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.PushBack 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.PushBack (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.PushBackMoved 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.PushBackMoved (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.Resize 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.Resize (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.Append 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.Append (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.AppendRange 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.AppendRange (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.Assign 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.Assign (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.AssignRange 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.AssignRange (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.Insert 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.Insert (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.InsertMoved 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.InsertMoved (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.InsertN 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.InsertN (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.InsertRange 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.InsertRange (0 ms) 1301s [ RUN ] SmallVectorReferenceInvalidationTest/1.EmplaceBack 1301s [ OK ] SmallVectorReferenceInvalidationTest/1.EmplaceBack (0 ms) 1301s [----------] 12 tests from SmallVectorReferenceInvalidationTest/1 (0 ms total) 1301s 1301s [----------] 1 test from SmallVectorInternalReferenceInvalidationTest/0, where TypeParam = c10::SmallVector,3u> 1301s [ RUN ] SmallVectorInternalReferenceInvalidationTest/0.EmplaceBack 1301s [ OK ] SmallVectorInternalReferenceInvalidationTest/0.EmplaceBack (0 ms) 1301s [----------] 1 test from SmallVectorInternalReferenceInvalidationTest/0 (0 ms total) 1301s 1301s [----------] 1 test from SmallVectorInternalReferenceInvalidationTest/1, where TypeParam = c10::SmallVector,3u> 1301s [ RUN ] SmallVectorInternalReferenceInvalidationTest/1.EmplaceBack 1301s [ OK ] SmallVectorInternalReferenceInvalidationTest/1.EmplaceBack (0 ms) 1301s [----------] 1 test from SmallVectorInternalReferenceInvalidationTest/1 (0 ms total) 1301s 1301s [----------] Global test environment tear-down 1301s [==========] 221 tests from 15 test suites ran. (0 ms total) 1301s [ PASSED ] 221 tests. 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1301s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1301s autopkgtest: DBG: testbed command exited with code 0 1301s autopkgtest [08:31:38]: test 54_of_104__cpptest__c10_small_vector_test: -----------------------] 1301s autopkgtest: DBG: testbed executing test finished with exit status 0 1301s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/54_of_104__cpptest__c10_small_vector_test-stdout 1301s autopkgtest: DBG: got reply from testbed: ok 1301s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/54_of_104__cpptest__c10_small_vector_test-stderr 1301s autopkgtest: DBG: got reply from testbed: ok 1301s 54_of_104__cpptest__c10_small_vector_test PASS 1301s autopkgtest [08:31:38]: test 54_of_104__cpptest__c10_small_vector_test: - - - - - - - - - - results - - - - - - - - - - 1301s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1301s autopkgtest: DBG: got reply from testbed: ok 1301s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/54_of_104__cpptest__c10_small_vector_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest [08:31:39]: test 55_of_104__cpptest__c10_ssize_test: preparing testbed 1302s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1302s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1302s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1302s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1302s autopkgtest: DBG: can use apt-get on testbed: True 1302s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1302s Reading package lists... 1302s Building dependency tree... 1302s Reading state information... 1302s Starting pkgProblemResolver with broken count: 0 1302s Starting 2 pkgProblemResolver with broken count: 0 1302s Done 1302s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1302s autopkgtest: DBG: testbed command exited with code 0 1302s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-packages.all"], kind short, sout raw, serr pipe, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/55_of_104__cpptest__c10_ssize_test-packages.all 1303s autopkgtest: DBG: got reply from testbed: ok 1303s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1303s autopkgtest: DBG: testbed command exited with code 0 1303s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1303s autopkgtest [08:31:40]: test 55_of_104__cpptest__c10_ssize_test: /usr/lib/libtorch-test/c10_ssize_test 1303s autopkgtest [08:31:40]: test 55_of_104__cpptest__c10_ssize_test: [----------------------- 1303s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/55_of_104__cpptest__c10_ssize_test-stderr --stdout=/tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_ssize_test"], kind test, sout raw, serr raw, env [] 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-artifacts 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stderr 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stdout 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_ssize_test 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.zWV86SMICy/out to stdout and file: /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stdout 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.zWV86SMICy/err to standard error and file: /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stdout 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 10135 to /tmp/autopkgtest_script_pid 1303s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1303s [==========] Running 4 tests from 1 test suite. 1303s [----------] Global test environment set-up. 1303s [----------] 4 tests from ssizeTest 1303s [ RUN ] ssizeTest.size_t 1303s [ OK ] ssizeTest.size_t (0 ms) 1303s [ RUN ] ssizeTest.size_t_overflow 1303s ./c10/test/util/ssize_test.cpp:33: Skipped 1303s Only valid if assert is enabled. 1303s 1303s 1303s [ SKIPPED ] ssizeTest.size_t_overflow (0 ms) 1303s [ RUN ] ssizeTest.small_container_promotes_to_ptrdiff_t 1303s [ OK ] ssizeTest.small_container_promotes_to_ptrdiff_t (0 ms) 1303s [ RUN ] ssizeTest.promotes_to_64_bit_on_32_bit_platform 1303s ./c10/test/util/ssize_test.cpp:50: Skipped 1303s Only valid in 64-bits. 1303s 1303s 1303s [ SKIPPED ] ssizeTest.promotes_to_64_bit_on_32_bit_platform (0 ms) 1303s [----------] 4 tests from ssizeTest (0 ms total) 1303s 1303s [----------] Global test environment tear-down 1303s [==========] 4 tests from 1 test suite ran. (0 ms total) 1303s [ PASSED ] 2 tests. 1303s [ SKIPPED ] 2 tests, listed below: 1303s [ SKIPPED ] ssizeTest.size_t_overflow 1303s [ SKIPPED ] ssizeTest.promotes_to_64_bit_on_32_bit_platform 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1303s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1303s autopkgtest: DBG: testbed command exited with code 0 1304s autopkgtest [08:31:41]: test 55_of_104__cpptest__c10_ssize_test: -----------------------] 1304s autopkgtest: DBG: testbed executing test finished with exit status 0 1304s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/55_of_104__cpptest__c10_ssize_test-stdout 1304s autopkgtest: DBG: got reply from testbed: ok 1304s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/55_of_104__cpptest__c10_ssize_test-stderr 1304s autopkgtest: DBG: got reply from testbed: ok 1304s 55_of_104__cpptest__c10_ssize_test PASS 1304s autopkgtest [08:31:41]: test 55_of_104__cpptest__c10_ssize_test: - - - - - - - - - - results - - - - - - - - - - 1304s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1304s autopkgtest: DBG: got reply from testbed: ok 1304s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/55_of_104__cpptest__c10_ssize_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1304s autopkgtest: DBG: testbed command exited with code 0 1304s autopkgtest [08:31:41]: test 56_of_104__cpptest__c10_string_util_test: preparing testbed 1304s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1304s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1304s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1304s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1304s autopkgtest: DBG: can use apt-get on testbed: True 1304s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1305s Reading package lists... 1305s Building dependency tree... 1305s Reading state information... 1305s Starting pkgProblemResolver with broken count: 0 1305s Starting 2 pkgProblemResolver with broken count: 0 1305s Done 1305s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1305s autopkgtest: DBG: testbed command exited with code 0 1305s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1305s autopkgtest: DBG: testbed command exited with code 0 1305s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1305s autopkgtest: DBG: testbed command exited with code 0 1305s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-packages.all"], kind short, sout raw, serr pipe, env [] 1305s autopkgtest: DBG: testbed command exited with code 0 1305s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/56_of_104__cpptest__c10_string_util_test-packages.all 1306s autopkgtest: DBG: got reply from testbed: ok 1306s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1306s autopkgtest: DBG: testbed command exited with code 0 1306s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1306s autopkgtest [08:31:43]: test 56_of_104__cpptest__c10_string_util_test: /usr/lib/libtorch-test/c10_string_util_test 1306s autopkgtest [08:31:43]: test 56_of_104__cpptest__c10_string_util_test: [----------------------- 1306s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/56_of_104__cpptest__c10_string_util_test-stderr --stdout=/tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_string_util_test"], kind test, sout raw, serr raw, env [] 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-artifacts 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stderr 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stdout 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_string_util_test 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ALKNka2g6K/out to stdout and file: /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stdout 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ALKNka2g6K/err to standard error and file: /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stdout 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 10288 to /tmp/autopkgtest_script_pid 1306s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1306s [==========] Running 5 tests from 1 test suite. 1306s [----------] Global test environment set-up. 1306s [----------] 5 tests from StringUtilTest 1306s [ RUN ] StringUtilTest.testStrNarrowSingle 1306s [ OK ] StringUtilTest.testStrNarrowSingle (0 ms) 1306s [ RUN ] StringUtilTest.testStrWideSingle 1306s [ OK ] StringUtilTest.testStrWideSingle (0 ms) 1306s [ RUN ] StringUtilTest.testStrWideSingleMultibyte 1306s [ OK ] StringUtilTest.testStrWideSingleMultibyte (0 ms) 1306s [ RUN ] StringUtilTest.testStrWideEmpty 1306s [ OK ] StringUtilTest.testStrWideEmpty (0 ms) 1306s [ RUN ] StringUtilTest.testStrMulti 1306s [ OK ] StringUtilTest.testStrMulti (0 ms) 1306s [----------] 5 tests from StringUtilTest (0 ms total) 1306s 1306s [----------] Global test environment tear-down 1306s [==========] 5 tests from 1 test suite ran. (0 ms total) 1306s [ PASSED ] 5 tests. 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1306s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1306s autopkgtest: DBG: testbed command exited with code 0 1306s autopkgtest [08:31:43]: test 56_of_104__cpptest__c10_string_util_test: -----------------------] 1306s autopkgtest: DBG: testbed executing test finished with exit status 0 1306s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/56_of_104__cpptest__c10_string_util_test-stdout 1306s autopkgtest: DBG: got reply from testbed: ok 1306s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/56_of_104__cpptest__c10_string_util_test-stderr 1307s autopkgtest: DBG: got reply from testbed: ok 1307s 56_of_104__cpptest__c10_string_util_test PASS 1307s autopkgtest [08:31:44]: test 56_of_104__cpptest__c10_string_util_test: - - - - - - - - - - results - - - - - - - - - - 1307s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1307s autopkgtest: DBG: got reply from testbed: ok 1307s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/56_of_104__cpptest__c10_string_util_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1307s autopkgtest: DBG: testbed command exited with code 0 1307s autopkgtest [08:31:44]: test 57_of_104__cpptest__c10_string_view_test: preparing testbed 1307s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1307s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1307s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1307s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1307s autopkgtest: DBG: can use apt-get on testbed: True 1307s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1307s Reading package lists... 1307s Building dependency tree... 1307s Reading state information... 1307s Starting pkgProblemResolver with broken count: 0 1307s Starting 2 pkgProblemResolver with broken count: 0 1307s Done 1308s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1308s autopkgtest: DBG: testbed command exited with code 0 1308s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1308s autopkgtest: DBG: testbed command exited with code 0 1308s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1308s autopkgtest: DBG: testbed command exited with code 0 1308s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-packages.all"], kind short, sout raw, serr pipe, env [] 1308s autopkgtest: DBG: testbed command exited with code 0 1308s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/57_of_104__cpptest__c10_string_view_test-packages.all 1308s autopkgtest: DBG: got reply from testbed: ok 1308s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1308s autopkgtest: DBG: testbed command exited with code 0 1308s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1308s autopkgtest [08:31:45]: test 57_of_104__cpptest__c10_string_view_test: /usr/lib/libtorch-test/c10_string_view_test 1308s autopkgtest [08:31:45]: test 57_of_104__cpptest__c10_string_view_test: [----------------------- 1308s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/57_of_104__cpptest__c10_string_view_test-stderr --stdout=/tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_string_view_test"], kind test, sout raw, serr raw, env [] 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-artifacts 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stderr 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stdout 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_string_view_test 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.OebzbJowDH/out to stdout and file: /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stdout 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.OebzbJowDH/err to standard error and file: /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stdout 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 10441 to /tmp/autopkgtest_script_pid 1308s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1308s [==========] Running 20 tests from 1 test suite. 1308s [----------] Global test environment set-up. 1308s [----------] 20 tests from StringViewTest 1308s [ RUN ] StringViewTest.testStringConstructor 1308s [ OK ] StringViewTest.testStringConstructor (0 ms) 1308s [ RUN ] StringViewTest.testStringViewConstructor 1308s [ OK ] StringViewTest.testStringViewConstructor (0 ms) 1308s [ RUN ] StringViewTest.testConversionToString 1308s [ OK ] StringViewTest.testConversionToString (0 ms) 1308s [ RUN ] StringViewTest.testConversionToStringView 1308s [ OK ] StringViewTest.testConversionToStringView (0 ms) 1308s [ RUN ] StringViewTest.testCopyAssignment 1308s [ OK ] StringViewTest.testCopyAssignment (0 ms) 1308s [ RUN ] StringViewTest.whenCallingAccessOperatorOutOfRange_thenThrows 1308s [ OK ] StringViewTest.whenCallingAccessOperatorOutOfRange_thenThrows (0 ms) 1308s [ RUN ] StringViewTest.whenRemovingValidPrefix_thenWorks 1308s [ OK ] StringViewTest.whenRemovingValidPrefix_thenWorks (0 ms) 1308s [ RUN ] StringViewTest.whenRemovingTooLargePrefix_thenThrows 1308s [ OK ] StringViewTest.whenRemovingTooLargePrefix_thenThrows (0 ms) 1308s [ RUN ] StringViewTest.whenRemovingValidSuffix_thenWorks 1308s [ OK ] StringViewTest.whenRemovingValidSuffix_thenWorks (0 ms) 1308s [ RUN ] StringViewTest.whenRemovingTooLargeSuffix_thenThrows 1308s [ OK ] StringViewTest.whenRemovingTooLargeSuffix_thenThrows (0 ms) 1308s [ RUN ] StringViewTest.testSwapFunction 1308s [ OK ] StringViewTest.testSwapFunction (0 ms) 1308s [ RUN ] StringViewTest.testSwapMethod 1308s [ OK ] StringViewTest.testSwapMethod (0 ms) 1308s [ RUN ] StringViewTest.whenCopyingFullStringView_thenDestinationHasCorrectData 1308s [ OK ] StringViewTest.whenCopyingFullStringView_thenDestinationHasCorrectData (0 ms) 1308s [ RUN ] StringViewTest.whenCopyingSubstr_thenDestinationHasCorrectData 1308s [ OK ] StringViewTest.whenCopyingSubstr_thenDestinationHasCorrectData (0 ms) 1308s [ RUN ] StringViewTest.whenCopyingTooMuch_thenJustCopiesLess 1308s [ OK ] StringViewTest.whenCopyingTooMuch_thenJustCopiesLess (0 ms) 1308s [ RUN ] StringViewTest.whenCopyingJustAtRange_thenDoesntCrash 1308s [ OK ] StringViewTest.whenCopyingJustAtRange_thenDoesntCrash (0 ms) 1308s [ RUN ] StringViewTest.whenCopyingOutOfRange_thenThrows 1308s [ OK ] StringViewTest.whenCopyingOutOfRange_thenThrows (0 ms) 1308s [ RUN ] StringViewTest.whenCallingSubstrWithPosOutOfRange_thenThrows 1308s [ OK ] StringViewTest.whenCallingSubstrWithPosOutOfRange_thenThrows (0 ms) 1308s [ RUN ] StringViewTest.testOutputOperator 1308s [ OK ] StringViewTest.testOutputOperator (0 ms) 1308s [ RUN ] StringViewTest.testHash 1308s [ OK ] StringViewTest.testHash (0 ms) 1308s [----------] 20 tests from StringViewTest (0 ms total) 1308s 1308s [----------] Global test environment tear-down 1308s [==========] 20 tests from 1 test suite ran. (0 ms total) 1308s [ PASSED ] 20 tests. 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1308s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1308s autopkgtest: DBG: testbed command exited with code 0 1309s autopkgtest [08:31:46]: test 57_of_104__cpptest__c10_string_view_test: -----------------------] 1309s autopkgtest: DBG: testbed executing test finished with exit status 0 1309s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/57_of_104__cpptest__c10_string_view_test-stdout 1309s autopkgtest: DBG: got reply from testbed: ok 1309s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/57_of_104__cpptest__c10_string_view_test-stderr 1309s autopkgtest: DBG: got reply from testbed: ok 1309s autopkgtest [08:31:46]: test 57_of_104__cpptest__c10_string_view_test: - - - - - - - - - - results - - - - - - - - - - 1309s 57_of_104__cpptest__c10_string_view_test PASS 1309s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1309s autopkgtest: DBG: got reply from testbed: ok 1309s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/57_of_104__cpptest__c10_string_view_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1309s autopkgtest: DBG: testbed command exited with code 0 1309s autopkgtest [08:31:46]: test 58_of_104__cpptest__c10_tempfile_test: preparing testbed 1309s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1309s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1309s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1309s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1309s autopkgtest: DBG: can use apt-get on testbed: True 1309s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1310s Reading package lists... 1310s Building dependency tree... 1310s Reading state information... 1310s Starting pkgProblemResolver with broken count: 0 1310s Starting 2 pkgProblemResolver with broken count: 0 1310s Done 1310s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1310s autopkgtest: DBG: testbed command exited with code 0 1310s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1310s autopkgtest: DBG: testbed command exited with code 0 1310s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1310s autopkgtest: DBG: testbed command exited with code 0 1310s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-packages.all"], kind short, sout raw, serr pipe, env [] 1311s autopkgtest: DBG: testbed command exited with code 0 1311s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/58_of_104__cpptest__c10_tempfile_test-packages.all 1311s autopkgtest: DBG: got reply from testbed: ok 1311s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1311s autopkgtest: DBG: testbed command exited with code 0 1311s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1311s autopkgtest [08:31:48]: test 58_of_104__cpptest__c10_tempfile_test: /usr/lib/libtorch-test/c10_tempfile_test 1311s autopkgtest [08:31:48]: test 58_of_104__cpptest__c10_tempfile_test: [----------------------- 1311s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/58_of_104__cpptest__c10_tempfile_test-stderr --stdout=/tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_tempfile_test"], kind test, sout raw, serr raw, env [] 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-artifacts 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stderr 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stdout 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_tempfile_test 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.swyHHBk8F4/out to stdout and file: /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stdout 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.swyHHBk8F4/err to standard error and file: /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stdout 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 10594 to /tmp/autopkgtest_script_pid 1311s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1311s [==========] Running 2 tests from 2 test suites. 1311s [----------] Global test environment set-up. 1311s [----------] 1 test from TempFileTest 1311s [ RUN ] TempFileTest.MatchesExpectedPattern 1311s [ OK ] TempFileTest.MatchesExpectedPattern (0 ms) 1311s [----------] 1 test from TempFileTest (0 ms total) 1311s 1311s [----------] 1 test from TempDirTest 1311s [ RUN ] TempDirTest.tryMakeTempdir 1311s [ OK ] TempDirTest.tryMakeTempdir (0 ms) 1311s [----------] 1 test from TempDirTest (0 ms total) 1311s 1311s [----------] Global test environment tear-down 1311s [==========] 2 tests from 2 test suites ran. (0 ms total) 1311s [ PASSED ] 2 tests. 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1311s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1311s autopkgtest: DBG: testbed command exited with code 0 1311s autopkgtest [08:31:48]: test 58_of_104__cpptest__c10_tempfile_test: -----------------------] 1311s autopkgtest: DBG: testbed executing test finished with exit status 0 1311s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/58_of_104__cpptest__c10_tempfile_test-stdout 1312s autopkgtest: DBG: got reply from testbed: ok 1312s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/58_of_104__cpptest__c10_tempfile_test-stderr 1312s autopkgtest: DBG: got reply from testbed: ok 1312s 58_of_104__cpptest__c10_tempfile_test PASS 1312s autopkgtest [08:31:49]: test 58_of_104__cpptest__c10_tempfile_test: - - - - - - - - - - results - - - - - - - - - - 1312s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1312s autopkgtest: DBG: got reply from testbed: ok 1312s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/58_of_104__cpptest__c10_tempfile_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1312s autopkgtest: DBG: testbed command exited with code 0 1312s autopkgtest [08:31:49]: test 59_of_104__cpptest__c10_typeid_test: preparing testbed 1312s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1312s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1312s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1312s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1312s autopkgtest: DBG: can use apt-get on testbed: True 1312s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1312s Reading package lists... 1313s Building dependency tree... 1313s Reading state information... 1313s Starting pkgProblemResolver with broken count: 0 1313s Starting 2 pkgProblemResolver with broken count: 0 1313s Done 1313s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-packages.all"], kind short, sout raw, serr pipe, env [] 1313s autopkgtest: DBG: testbed command exited with code 0 1313s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/59_of_104__cpptest__c10_typeid_test-packages.all 1314s autopkgtest: DBG: got reply from testbed: ok 1314s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1314s autopkgtest [08:31:51]: test 59_of_104__cpptest__c10_typeid_test: /usr/lib/libtorch-test/c10_typeid_test 1314s autopkgtest [08:31:51]: test 59_of_104__cpptest__c10_typeid_test: [----------------------- 1314s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/59_of_104__cpptest__c10_typeid_test-stderr --stdout=/tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/c10_typeid_test"], kind test, sout raw, serr raw, env [] 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-artifacts 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stderr 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stdout 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/c10_typeid_test 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.nXbptCZv3Y/out to stdout and file: /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stdout 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.nXbptCZv3Y/err to standard error and file: /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stdout 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 10747 to /tmp/autopkgtest_script_pid 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1314s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1314s [==========] Running 5 tests from 1 test suite. 1314s [----------] Global test environment set-up. 1314s [----------] 5 tests from TypeMetaTest 1314s [ RUN ] TypeMetaTest.TypeMetaStatic 1314s [ OK ] TypeMetaTest.TypeMetaStatic (0 ms) 1314s [ RUN ] TypeMetaTest.Names 1314s [ OK ] TypeMetaTest.Names (0 ms) 1314s [ RUN ] TypeMetaTest.TypeMeta 1314s [ OK ] TypeMetaTest.TypeMeta (0 ms) 1314s [ RUN ] TypeMetaTest.CtorDtorAndCopy 1314s [ OK ] TypeMetaTest.CtorDtorAndCopy (0 ms) 1314s [ RUN ] TypeMetaTest.Float16IsNotUint16 1314s [ OK ] TypeMetaTest.Float16IsNotUint16 (0 ms) 1314s [----------] 5 tests from TypeMetaTest (0 ms total) 1314s 1314s [----------] Global test environment tear-down 1314s [==========] 5 tests from 1 test suite ran. (0 ms total) 1314s [ PASSED ] 5 tests. 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1314s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1314s autopkgtest: DBG: testbed command exited with code 0 1314s autopkgtest [08:31:51]: test 59_of_104__cpptest__c10_typeid_test: -----------------------] 1314s autopkgtest: DBG: testbed executing test finished with exit status 0 1314s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/59_of_104__cpptest__c10_typeid_test-stdout 1314s autopkgtest: DBG: got reply from testbed: ok 1314s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/59_of_104__cpptest__c10_typeid_test-stderr 1314s autopkgtest: DBG: got reply from testbed: ok 1315s 59_of_104__cpptest__c10_typeid_test PASS 1315s autopkgtest [08:31:52]: test 59_of_104__cpptest__c10_typeid_test: - - - - - - - - - - results - - - - - - - - - - 1315s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1315s autopkgtest: DBG: got reply from testbed: ok 1315s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/59_of_104__cpptest__c10_typeid_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1315s autopkgtest: DBG: testbed command exited with code 0 1315s autopkgtest [08:31:52]: test 60_of_104__cpptest__cpu_allocator_test: preparing testbed 1315s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1315s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1315s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1315s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1315s autopkgtest: DBG: can use apt-get on testbed: True 1315s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1315s Reading package lists... 1315s Building dependency tree... 1315s Reading state information... 1315s Starting pkgProblemResolver with broken count: 0 1315s Starting 2 pkgProblemResolver with broken count: 0 1315s Done 1316s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-packages.all"], kind short, sout raw, serr pipe, env [] 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/60_of_104__cpptest__cpu_allocator_test-packages.all 1316s autopkgtest: DBG: got reply from testbed: ok 1316s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1316s autopkgtest: DBG: testbed command exited with code 0 1316s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1316s autopkgtest [08:31:53]: test 60_of_104__cpptest__cpu_allocator_test: /usr/lib/libtorch-test/cpu_allocator_test 1316s autopkgtest [08:31:53]: test 60_of_104__cpptest__cpu_allocator_test: [----------------------- 1316s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/60_of_104__cpptest__cpu_allocator_test-stderr --stdout=/tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/cpu_allocator_test"], kind test, sout raw, serr raw, env [] 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-artifacts 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stderr 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stdout 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/cpu_allocator_test 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.YL1daijNvi/out to stdout and file: /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stdout 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.YL1daijNvi/err to standard error and file: /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stdout 1316s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 10900 to /tmp/autopkgtest_script_pid 1317s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1317s [==========] Running 1 test from 1 test suite. 1317s [----------] Global test environment set-up. 1317s [----------] 1 test from AllocatorTestCPU 1317s [ RUN ] AllocatorTestCPU.test_clone 1317s [ OK ] AllocatorTestCPU.test_clone (0 ms) 1317s [----------] 1 test from AllocatorTestCPU (0 ms total) 1317s 1317s [----------] Global test environment tear-down 1317s [==========] 1 test from 1 test suite ran. (0 ms total) 1317s [ PASSED ] 1 test. 1317s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1317s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1317s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1317s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1317s autopkgtest: DBG: testbed command exited with code 0 1317s autopkgtest [08:31:54]: test 60_of_104__cpptest__cpu_allocator_test: -----------------------] 1317s autopkgtest: DBG: testbed executing test finished with exit status 0 1317s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/60_of_104__cpptest__cpu_allocator_test-stdout 1317s autopkgtest: DBG: got reply from testbed: ok 1317s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/60_of_104__cpptest__cpu_allocator_test-stderr 1317s autopkgtest: DBG: got reply from testbed: ok 1318s 60_of_104__cpptest__cpu_allocator_test PASS 1318s autopkgtest [08:31:54]: test 60_of_104__cpptest__cpu_allocator_test: - - - - - - - - - - results - - - - - - - - - - 1318s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1318s autopkgtest: DBG: got reply from testbed: ok 1318s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/60_of_104__cpptest__cpu_allocator_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1318s autopkgtest: DBG: testbed command exited with code 0 1318s autopkgtest [08:31:55]: test 61_of_104__cpptest__cpu_generator_test: preparing testbed 1318s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1318s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1318s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1318s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1318s autopkgtest: DBG: can use apt-get on testbed: True 1318s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1318s Reading package lists... 1318s Building dependency tree... 1318s Reading state information... 1318s Starting pkgProblemResolver with broken count: 0 1318s Starting 2 pkgProblemResolver with broken count: 0 1318s Done 1318s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1318s autopkgtest: DBG: testbed command exited with code 0 1318s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1319s autopkgtest: DBG: testbed command exited with code 0 1319s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1319s autopkgtest: DBG: testbed command exited with code 0 1319s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-packages.all"], kind short, sout raw, serr pipe, env [] 1319s autopkgtest: DBG: testbed command exited with code 0 1319s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/61_of_104__cpptest__cpu_generator_test-packages.all 1319s autopkgtest: DBG: got reply from testbed: ok 1319s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1319s autopkgtest: DBG: testbed command exited with code 0 1319s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1319s autopkgtest [08:31:56]: test 61_of_104__cpptest__cpu_generator_test: /usr/lib/libtorch-test/cpu_generator_test 1319s autopkgtest [08:31:56]: test 61_of_104__cpptest__cpu_generator_test: [----------------------- 1319s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/61_of_104__cpptest__cpu_generator_test-stderr --stdout=/tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/cpu_generator_test"], kind test, sout raw, serr raw, env [] 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-artifacts 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stderr 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stdout 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/cpu_generator_test 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pQ2PVMu4Rv/out to stdout and file: /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stdout 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.pQ2PVMu4Rv/err to standard error and file: /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stdout 1319s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11053 to /tmp/autopkgtest_script_pid 1320s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1320s [==========] Running 16 tests from 1 test suite. 1320s [----------] Global test environment set-up. 1320s [----------] 16 tests from CPUGeneratorImpl 1320s [ RUN ] CPUGeneratorImpl.TestGeneratorDynamicCast 1320s [ OK ] CPUGeneratorImpl.TestGeneratorDynamicCast (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestDefaultGenerator 1320s [ OK ] CPUGeneratorImpl.TestDefaultGenerator (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestCloning 1320s [ OK ] CPUGeneratorImpl.TestCloning (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestMultithreadingGetEngineOperator 1320s [ OK ] CPUGeneratorImpl.TestMultithreadingGetEngineOperator (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestGetSetCurrentSeed 1320s [ OK ] CPUGeneratorImpl.TestGetSetCurrentSeed (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestMultithreadingGetSetCurrentSeed 1320s [ OK ] CPUGeneratorImpl.TestMultithreadingGetSetCurrentSeed (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestRNGForking 1320s [ OK ] CPUGeneratorImpl.TestRNGForking (2 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineReproducibility 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineReproducibility (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineOffset1 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineOffset1 (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineOffset2 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineOffset2 (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineOffset3 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineOffset3 (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineIndex 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineIndex (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestMT19937EngineReproducibility 1320s [ OK ] CPUGeneratorImpl.TestMT19937EngineReproducibility (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineReproducibilityRandN 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineReproducibilityRandN (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxEngineSeedRandN 1320s [ OK ] CPUGeneratorImpl.TestPhiloxEngineSeedRandN (0 ms) 1320s [ RUN ] CPUGeneratorImpl.TestPhiloxDeterministic 1320s [ OK ] CPUGeneratorImpl.TestPhiloxDeterministic (0 ms) 1320s [----------] 16 tests from CPUGeneratorImpl (2 ms total) 1320s 1320s [----------] Global test environment tear-down 1320s [==========] 16 tests from 1 test suite ran. (2 ms total) 1320s [ PASSED ] 16 tests. 1320s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1320s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1320s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1320s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1320s autopkgtest: DBG: testbed command exited with code 0 1320s autopkgtest [08:31:57]: test 61_of_104__cpptest__cpu_generator_test: -----------------------] 1320s autopkgtest: DBG: testbed executing test finished with exit status 0 1320s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/61_of_104__cpptest__cpu_generator_test-stdout 1320s autopkgtest: DBG: got reply from testbed: ok 1320s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/61_of_104__cpptest__cpu_generator_test-stderr 1320s autopkgtest: DBG: got reply from testbed: ok 1320s 61_of_104__cpptest__cpu_generator_test PASS 1320s autopkgtest [08:31:57]: test 61_of_104__cpptest__cpu_generator_test: - - - - - - - - - - results - - - - - - - - - - 1320s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1321s autopkgtest: DBG: got reply from testbed: ok 1321s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/61_of_104__cpptest__cpu_generator_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1321s autopkgtest: DBG: testbed command exited with code 0 1321s autopkgtest [08:31:58]: test 62_of_104__cpptest__cpu_profiling_allocator_test: preparing testbed 1321s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1321s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1321s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1321s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1321s autopkgtest: DBG: can use apt-get on testbed: True 1321s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1321s Reading package lists... 1321s Building dependency tree... 1321s Reading state information... 1321s Starting pkgProblemResolver with broken count: 0 1321s Starting 2 pkgProblemResolver with broken count: 0 1321s Done 1321s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1321s autopkgtest: DBG: testbed command exited with code 0 1321s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1322s autopkgtest: DBG: testbed command exited with code 0 1322s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1322s autopkgtest: DBG: testbed command exited with code 0 1322s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-packages.all"], kind short, sout raw, serr pipe, env [] 1322s autopkgtest: DBG: testbed command exited with code 0 1322s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/62_of_104__cpptest__cpu_profiling_allocator_test-packages.all 1322s autopkgtest: DBG: got reply from testbed: ok 1322s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1322s autopkgtest: DBG: testbed command exited with code 0 1322s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1322s autopkgtest [08:31:59]: test 62_of_104__cpptest__cpu_profiling_allocator_test: /usr/lib/libtorch-test/cpu_profiling_allocator_test 1322s autopkgtest [08:31:59]: test 62_of_104__cpptest__cpu_profiling_allocator_test: [----------------------- 1322s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stderr --stdout=/tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/cpu_profiling_allocator_test"], kind test, sout raw, serr raw, env [] 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-artifacts 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stderr 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stdout 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/cpu_profiling_allocator_test 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.HXkeSwNpKU/out to stdout and file: /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stdout 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.HXkeSwNpKU/err to standard error and file: /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stdout 1322s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11212 to /tmp/autopkgtest_script_pid 1323s [==========] Running 2 tests from 1 test suite. 1323s [----------] Global test environment set-up. 1323s [----------] 2 tests from CPUAllocationPlanTest 1323s [ RUN ] CPUAllocationPlanTest.with_control_flow 1323s [ OK ] CPUAllocationPlanTest.with_control_flow (262 ms) 1323s [ RUN ] CPUAllocationPlanTest.with_profiling_alloc 1323s [ OK ] CPUAllocationPlanTest.with_profiling_alloc (279 ms) 1323s [----------] 2 tests from CPUAllocationPlanTest (542 ms total) 1323s 1323s [----------] Global test environment tear-down 1323s [==========] 2 tests from 1 test suite ran. (542 ms total) 1323s [ PASSED ] 2 tests. 1323s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1323s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1323s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1323s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1323s autopkgtest: DBG: testbed command exited with code 0 1324s autopkgtest [08:32:01]: test 62_of_104__cpptest__cpu_profiling_allocator_test: -----------------------] 1324s autopkgtest: DBG: testbed executing test finished with exit status 0 1324s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/62_of_104__cpptest__cpu_profiling_allocator_test-stdout 1324s autopkgtest: DBG: got reply from testbed: ok 1324s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/62_of_104__cpptest__cpu_profiling_allocator_test-stderr 1324s autopkgtest: DBG: got reply from testbed: ok 1324s autopkgtest [08:32:01]: test 62_of_104__cpptest__cpu_profiling_allocator_test: - - - - - - - - - - results - - - - - - - - - - 1324s 62_of_104__cpptest__cpu_profiling_allocator_test PASS 1324s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1324s autopkgtest: DBG: got reply from testbed: ok 1324s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/62_of_104__cpptest__cpu_profiling_allocator_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1324s autopkgtest: DBG: testbed command exited with code 0 1324s autopkgtest [08:32:01]: test 63_of_104__cpptest__cpu_rng_test: preparing testbed 1324s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1324s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1324s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1324s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1324s autopkgtest: DBG: can use apt-get on testbed: True 1324s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1324s Reading package lists... 1325s Building dependency tree... 1325s Reading state information... 1325s Starting pkgProblemResolver with broken count: 0 1325s Starting 2 pkgProblemResolver with broken count: 0 1325s Done 1325s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1325s autopkgtest: DBG: testbed command exited with code 0 1325s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1325s autopkgtest: DBG: testbed command exited with code 0 1325s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1325s autopkgtest: DBG: testbed command exited with code 0 1325s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-packages.all"], kind short, sout raw, serr pipe, env [] 1325s autopkgtest: DBG: testbed command exited with code 0 1325s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/63_of_104__cpptest__cpu_rng_test-packages.all 1326s autopkgtest: DBG: got reply from testbed: ok 1326s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1326s autopkgtest [08:32:03]: test 63_of_104__cpptest__cpu_rng_test: /usr/lib/libtorch-test/cpu_rng_test 1326s autopkgtest [08:32:03]: test 63_of_104__cpptest__cpu_rng_test: [----------------------- 1326s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/63_of_104__cpptest__cpu_rng_test-stderr --stdout=/tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/cpu_rng_test"], kind test, sout raw, serr raw, env [] 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-artifacts 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stderr 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stdout 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/cpu_rng_test 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.7IikgXQZk2/out to stdout and file: /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stdout 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.7IikgXQZk2/err to standard error and file: /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stdout 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11366 to /tmp/autopkgtest_script_pid 1326s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1326s [==========] Running 22 tests from 1 test suite. 1326s [----------] Global test environment set-up. 1326s [----------] 22 tests from RNGTest 1326s [ RUN ] RNGTest.RandomFromTo 1326s [ OK ] RNGTest.RandomFromTo (10 ms) 1326s [ RUN ] RNGTest.Random 1326s [ OK ] RNGTest.Random (0 ms) 1326s [ RUN ] RNGTest.Random64bits 1326s [ OK ] RNGTest.Random64bits (0 ms) 1326s [ RUN ] RNGTest.Normal 1326s [ OK ] RNGTest.Normal (0 ms) 1326s [ RUN ] RNGTest.Normal_float_Tensor_out 1326s [ OK ] RNGTest.Normal_float_Tensor_out (0 ms) 1326s [ RUN ] RNGTest.Normal_Tensor_float_out 1326s [ OK ] RNGTest.Normal_Tensor_float_out (0 ms) 1326s [ RUN ] RNGTest.Normal_Tensor_Tensor_out 1326s [ OK ] RNGTest.Normal_Tensor_Tensor_out (0 ms) 1326s [ RUN ] RNGTest.Normal_float_Tensor 1326s [ OK ] RNGTest.Normal_float_Tensor (0 ms) 1326s [ RUN ] RNGTest.Normal_Tensor_float 1326s [ OK ] RNGTest.Normal_Tensor_float (0 ms) 1326s [ RUN ] RNGTest.Normal_Tensor_Tensor 1326s [ OK ] RNGTest.Normal_Tensor_Tensor (0 ms) 1326s [ RUN ] RNGTest.Uniform 1326s [ OK ] RNGTest.Uniform (0 ms) 1326s [ RUN ] RNGTest.Cauchy 1326s [ OK ] RNGTest.Cauchy (0 ms) 1326s [ RUN ] RNGTest.LogNormal 1326s [ OK ] RNGTest.LogNormal (0 ms) 1326s [ RUN ] RNGTest.Geometric 1326s [ OK ] RNGTest.Geometric (0 ms) 1326s [ RUN ] RNGTest.Exponential 1326s [ OK ] RNGTest.Exponential (0 ms) 1326s [ RUN ] RNGTest.Bernoulli_Tensor 1326s [ OK ] RNGTest.Bernoulli_Tensor (0 ms) 1326s [ RUN ] RNGTest.Bernoulli_scalar 1326s [ OK ] RNGTest.Bernoulli_scalar (0 ms) 1326s [ RUN ] RNGTest.Bernoulli 1326s [ OK ] RNGTest.Bernoulli (0 ms) 1326s [ RUN ] RNGTest.Bernoulli_2 1326s [ OK ] RNGTest.Bernoulli_2 (0 ms) 1326s [ RUN ] RNGTest.Bernoulli_p 1326s [ OK ] RNGTest.Bernoulli_p (0 ms) 1326s [ RUN ] RNGTest.Bernoulli_p_2 1326s [ OK ] RNGTest.Bernoulli_p_2 (0 ms) 1326s [ RUN ] RNGTest.Bernoulli_out 1326s [ OK ] RNGTest.Bernoulli_out (0 ms) 1326s [----------] 22 tests from RNGTest (11 ms total) 1326s 1326s [----------] Global test environment tear-down 1326s [==========] 22 tests from 1 test suite ran. (11 ms total) 1326s [ PASSED ] 22 tests. 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1326s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1326s autopkgtest: DBG: testbed command exited with code 0 1326s autopkgtest [08:32:03]: test 63_of_104__cpptest__cpu_rng_test: -----------------------] 1326s autopkgtest: DBG: testbed executing test finished with exit status 0 1326s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/63_of_104__cpptest__cpu_rng_test-stdout 1327s autopkgtest: DBG: got reply from testbed: ok 1327s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/63_of_104__cpptest__cpu_rng_test-stderr 1327s autopkgtest: DBG: got reply from testbed: ok 1327s 63_of_104__cpptest__cpu_rng_test PASS 1327s autopkgtest [08:32:04]: test 63_of_104__cpptest__cpu_rng_test: - - - - - - - - - - results - - - - - - - - - - 1327s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1327s autopkgtest: DBG: got reply from testbed: ok 1327s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/63_of_104__cpptest__cpu_rng_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1327s autopkgtest: DBG: testbed command exited with code 0 1327s autopkgtest [08:32:04]: test 64_of_104__cpptest__dispatch_key_set_test: preparing testbed 1327s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1327s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1327s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1327s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1327s autopkgtest: DBG: can use apt-get on testbed: True 1327s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1327s Reading package lists... 1328s Building dependency tree... 1328s Reading state information... 1328s Starting pkgProblemResolver with broken count: 0 1328s Starting 2 pkgProblemResolver with broken count: 0 1328s Done 1328s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-packages.all"], kind short, sout raw, serr pipe, env [] 1328s autopkgtest: DBG: testbed command exited with code 0 1328s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/64_of_104__cpptest__dispatch_key_set_test-packages.all 1328s autopkgtest: DBG: got reply from testbed: ok 1329s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1329s autopkgtest [08:32:06]: test 64_of_104__cpptest__dispatch_key_set_test: /usr/lib/libtorch-test/dispatch_key_set_test 1329s autopkgtest [08:32:06]: test 64_of_104__cpptest__dispatch_key_set_test: [----------------------- 1329s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stderr --stdout=/tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/dispatch_key_set_test"], kind test, sout raw, serr raw, env [] 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-artifacts 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stderr 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stdout 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/dispatch_key_set_test 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.TDvlt6Yqg6/out to stdout and file: /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stdout 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.TDvlt6Yqg6/err to standard error and file: /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stdout 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11519 to /tmp/autopkgtest_script_pid 1329s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1329s [==========] Running 1 test from 1 test suite. 1329s [----------] Global test environment set-up. 1329s [----------] 1 test from DispatchKeySetTest 1329s [ RUN ] DispatchKeySetTest.TestGetRuntimeDispatchKeySet 1329s [ OK ] DispatchKeySetTest.TestGetRuntimeDispatchKeySet (0 ms) 1329s [----------] 1 test from DispatchKeySetTest (0 ms total) 1329s 1329s [----------] Global test environment tear-down 1329s [==========] 1 test from 1 test suite ran. (0 ms total) 1329s [ PASSED ] 1 test. 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1329s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1329s autopkgtest: DBG: testbed command exited with code 0 1329s autopkgtest [08:32:06]: test 64_of_104__cpptest__dispatch_key_set_test: -----------------------] 1329s autopkgtest: DBG: testbed executing test finished with exit status 0 1329s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/64_of_104__cpptest__dispatch_key_set_test-stdout 1330s autopkgtest: DBG: got reply from testbed: ok 1330s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/64_of_104__cpptest__dispatch_key_set_test-stderr 1330s autopkgtest: DBG: got reply from testbed: ok 1330s autopkgtest [08:32:07]: test 64_of_104__cpptest__dispatch_key_set_test: - - - - - - - - - - results - - - - - - - - - - 1330s 64_of_104__cpptest__dispatch_key_set_test PASS 1330s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1330s autopkgtest: DBG: got reply from testbed: ok 1330s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/64_of_104__cpptest__dispatch_key_set_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1330s autopkgtest: DBG: testbed command exited with code 0 1330s autopkgtest [08:32:07]: test 65_of_104__cpptest__dlconvertor_test: preparing testbed 1330s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1330s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1330s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1330s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1330s autopkgtest: DBG: can use apt-get on testbed: True 1330s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1330s Reading package lists... 1331s Building dependency tree... 1331s Reading state information... 1331s Starting pkgProblemResolver with broken count: 0 1331s Starting 2 pkgProblemResolver with broken count: 0 1331s Done 1331s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1331s autopkgtest: DBG: testbed command exited with code 0 1331s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1331s autopkgtest: DBG: testbed command exited with code 0 1331s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1331s autopkgtest: DBG: testbed command exited with code 0 1331s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1331s autopkgtest: DBG: testbed command exited with code 0 1331s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/65_of_104__cpptest__dlconvertor_test-packages.all 1331s autopkgtest: DBG: got reply from testbed: ok 1331s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1332s autopkgtest: DBG: testbed command exited with code 0 1332s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1332s autopkgtest [08:32:09]: test 65_of_104__cpptest__dlconvertor_test: /usr/lib/libtorch-test/dlconvertor_test 1332s autopkgtest [08:32:09]: test 65_of_104__cpptest__dlconvertor_test: [----------------------- 1332s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/65_of_104__cpptest__dlconvertor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/dlconvertor_test"], kind test, sout raw, serr raw, env [] 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-artifacts 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stderr 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stdout 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/dlconvertor_test 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.URy5mKDmHH/out to stdout and file: /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stdout 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.URy5mKDmHH/err to standard error and file: /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stdout 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11672 to /tmp/autopkgtest_script_pid 1332s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1332s [==========] Running 2 tests from 1 test suite. 1332s [----------] Global test environment set-up. 1332s [----------] 2 tests from TestDlconvertor 1332s [ RUN ] TestDlconvertor.TestDlconvertor 1332s [ OK ] TestDlconvertor.TestDlconvertor (0 ms) 1332s [ RUN ] TestDlconvertor.TestDlconvertorNoStrides 1332s [ OK ] TestDlconvertor.TestDlconvertorNoStrides (0 ms) 1332s [----------] 2 tests from TestDlconvertor (0 ms total) 1332s 1332s [----------] Global test environment tear-down 1332s [==========] 2 tests from 1 test suite ran. (0 ms total) 1332s [ PASSED ] 2 tests. 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1332s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1332s autopkgtest: DBG: testbed command exited with code 0 1332s autopkgtest [08:32:09]: test 65_of_104__cpptest__dlconvertor_test: -----------------------] 1332s autopkgtest: DBG: testbed executing test finished with exit status 0 1332s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/65_of_104__cpptest__dlconvertor_test-stdout 1333s autopkgtest: DBG: got reply from testbed: ok 1333s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/65_of_104__cpptest__dlconvertor_test-stderr 1333s autopkgtest: DBG: got reply from testbed: ok 1333s autopkgtest [08:32:10]: test 65_of_104__cpptest__dlconvertor_test: - - - - - - - - - - results - - - - - - - - - - 1333s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1333s 65_of_104__cpptest__dlconvertor_test PASS 1333s autopkgtest: DBG: got reply from testbed: ok 1333s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/65_of_104__cpptest__dlconvertor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1333s autopkgtest: DBG: testbed command exited with code 0 1333s autopkgtest [08:32:10]: test 66_of_104__cpptest__extension_backend_test: preparing testbed 1333s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1333s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1333s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1333s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1333s autopkgtest: DBG: can use apt-get on testbed: True 1333s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1333s Reading package lists... 1333s Building dependency tree... 1333s Reading state information... 1334s Starting pkgProblemResolver with broken count: 0 1334s Starting 2 pkgProblemResolver with broken count: 0 1334s Done 1334s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-packages.all"], kind short, sout raw, serr pipe, env [] 1334s autopkgtest: DBG: testbed command exited with code 0 1334s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/66_of_104__cpptest__extension_backend_test-packages.all 1334s autopkgtest: DBG: got reply from testbed: ok 1334s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1335s autopkgtest: DBG: testbed command exited with code 0 1335s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1335s autopkgtest [08:32:12]: test 66_of_104__cpptest__extension_backend_test: /usr/lib/libtorch-test/extension_backend_test 1335s autopkgtest [08:32:12]: test 66_of_104__cpptest__extension_backend_test: [----------------------- 1335s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/66_of_104__cpptest__extension_backend_test-stderr --stdout=/tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/extension_backend_test"], kind test, sout raw, serr raw, env [] 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-artifacts 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stderr 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stdout 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/extension_backend_test 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4tvGXmUZoR/out to stdout and file: /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stdout 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4tvGXmUZoR/err to standard error and file: /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stdout 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11825 to /tmp/autopkgtest_script_pid 1335s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1335s [==========] Running 1 test from 1 test suite. 1335s [----------] Global test environment set-up. 1335s [----------] 1 test from BackendExtensionTest 1335s [ RUN ] BackendExtensionTest.TestRegisterOp 1335s [ OK ] BackendExtensionTest.TestRegisterOp (0 ms) 1335s [----------] 1 test from BackendExtensionTest (0 ms total) 1335s 1335s [----------] Global test environment tear-down 1335s [==========] 1 test from 1 test suite ran. (0 ms total) 1335s [ PASSED ] 1 test. 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1335s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1335s autopkgtest: DBG: testbed command exited with code 0 1335s autopkgtest [08:32:12]: test 66_of_104__cpptest__extension_backend_test: -----------------------] 1335s autopkgtest: DBG: testbed executing test finished with exit status 0 1335s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/66_of_104__cpptest__extension_backend_test-stdout 1336s autopkgtest: DBG: got reply from testbed: ok 1336s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/66_of_104__cpptest__extension_backend_test-stderr 1336s autopkgtest: DBG: got reply from testbed: ok 1336s 66_of_104__cpptest__extension_backend_test PASS 1336s autopkgtest [08:32:13]: test 66_of_104__cpptest__extension_backend_test: - - - - - - - - - - results - - - - - - - - - - 1336s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1336s autopkgtest: DBG: got reply from testbed: ok 1336s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/66_of_104__cpptest__extension_backend_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1336s autopkgtest: DBG: testbed command exited with code 0 1336s autopkgtest [08:32:13]: test 67_of_104__cpptest__half_test: preparing testbed 1336s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1336s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1336s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1336s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1336s autopkgtest: DBG: can use apt-get on testbed: True 1336s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1336s Reading package lists... 1336s Building dependency tree... 1336s Reading state information... 1337s Starting pkgProblemResolver with broken count: 0 1337s Starting 2 pkgProblemResolver with broken count: 0 1337s Done 1337s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1337s autopkgtest: DBG: testbed command exited with code 0 1337s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1337s autopkgtest: DBG: testbed command exited with code 0 1337s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1337s autopkgtest: DBG: testbed command exited with code 0 1337s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-packages.all"], kind short, sout raw, serr pipe, env [] 1337s autopkgtest: DBG: testbed command exited with code 0 1337s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/67_of_104__cpptest__half_test-packages.all 1337s autopkgtest: DBG: got reply from testbed: ok 1337s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1338s autopkgtest: DBG: testbed command exited with code 0 1338s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1338s autopkgtest [08:32:15]: test 67_of_104__cpptest__half_test: /usr/lib/libtorch-test/half_test 1338s autopkgtest [08:32:15]: test 67_of_104__cpptest__half_test: [----------------------- 1338s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/67_of_104__cpptest__half_test-stderr --stdout=/tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/half_test"], kind test, sout raw, serr raw, env [] 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-artifacts 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stderr 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stdout 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/half_test 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.QwRhmfGDuq/out to stdout and file: /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stdout 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.QwRhmfGDuq/err to standard error and file: /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stdout 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 11978 to /tmp/autopkgtest_script_pid 1338s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1338s [==========] Running 8 tests from 1 test suite. 1338s [----------] Global test environment set-up. 1338s [----------] 8 tests from TestHalf 1338s [ RUN ] TestHalf.Arithmetic 1338s [ OK ] TestHalf.Arithmetic (0 ms) 1338s [ RUN ] TestHalf.Comparisions 1338s [ OK ] TestHalf.Comparisions (0 ms) 1338s [ RUN ] TestHalf.Cast 1338s [ OK ] TestHalf.Cast (0 ms) 1338s [ RUN ] TestHalf.Construction 1338s [ OK ] TestHalf.Construction (0 ms) 1338s [ RUN ] TestHalf.Half2String 1338s [ OK ] TestHalf.Half2String (0 ms) 1338s [ RUN ] TestHalf.HalfNumericLimits 1338s [ OK ] TestHalf.HalfNumericLimits (0 ms) 1338s [ RUN ] TestHalf.CommonMath 1338s [ OK ] TestHalf.CommonMath (0 ms) 1338s [ RUN ] TestHalf.ComplexHalf 1338s [ OK ] TestHalf.ComplexHalf (0 ms) 1338s [----------] 8 tests from TestHalf (0 ms total) 1338s 1338s [----------] Global test environment tear-down 1338s [==========] 8 tests from 1 test suite ran. (0 ms total) 1338s [ PASSED ] 8 tests. 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1338s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1338s autopkgtest: DBG: testbed command exited with code 0 1338s autopkgtest [08:32:15]: test 67_of_104__cpptest__half_test: -----------------------] 1338s autopkgtest: DBG: testbed executing test finished with exit status 0 1338s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/67_of_104__cpptest__half_test-stdout 1339s autopkgtest: DBG: got reply from testbed: ok 1339s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/67_of_104__cpptest__half_test-stderr 1339s autopkgtest: DBG: got reply from testbed: ok 1339s 67_of_104__cpptest__half_test PASS 1339s autopkgtest [08:32:16]: test 67_of_104__cpptest__half_test: - - - - - - - - - - results - - - - - - - - - - 1339s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1339s autopkgtest: DBG: got reply from testbed: ok 1339s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/67_of_104__cpptest__half_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1339s autopkgtest: DBG: testbed command exited with code 0 1339s autopkgtest [08:32:16]: test 68_of_104__cpptest__inline_container_test: preparing testbed 1339s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1339s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1339s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1339s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1339s autopkgtest: DBG: can use apt-get on testbed: True 1339s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1339s Reading package lists... 1339s Building dependency tree... 1339s Reading state information... 1340s Starting pkgProblemResolver with broken count: 0 1340s Starting 2 pkgProblemResolver with broken count: 0 1340s Done 1340s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1340s autopkgtest: DBG: testbed command exited with code 0 1340s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1340s autopkgtest: DBG: testbed command exited with code 0 1340s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1340s autopkgtest: DBG: testbed command exited with code 0 1340s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-packages.all"], kind short, sout raw, serr pipe, env [] 1340s autopkgtest: DBG: testbed command exited with code 0 1340s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/68_of_104__cpptest__inline_container_test-packages.all 1340s autopkgtest: DBG: got reply from testbed: ok 1340s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1341s autopkgtest: DBG: testbed command exited with code 0 1341s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1341s autopkgtest [08:32:18]: test 68_of_104__cpptest__inline_container_test: /usr/lib/libtorch-test/inline_container_test || true 1341s autopkgtest [08:32:18]: test 68_of_104__cpptest__inline_container_test: [----------------------- 1341s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/68_of_104__cpptest__inline_container_test-stderr --stdout=/tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec '/usr/lib/libtorch-test/inline_container_test || true'"], kind test, sout raw, serr raw, env [] 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-artifacts 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stderr 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stdout 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/inline_container_test || true 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.KcE97tjO70/out to stdout and file: /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stdout 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.KcE97tjO70/err to standard error and file: /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stdout 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 12131 to /tmp/autopkgtest_script_pid 1341s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1341s [==========] Running 10 tests from 3 test suites. 1341s [----------] Global test environment set-up. 1341s [----------] 2 tests from PyTorchStreamWriterAndReader 1341s [ RUN ] PyTorchStreamWriterAndReader.SaveAndLoad 1341s [ OK ] PyTorchStreamWriterAndReader.SaveAndLoad (0 ms) 1341s [ RUN ] PyTorchStreamWriterAndReader.LoadWithMultiThreads 1341s [ OK ] PyTorchStreamWriterAndReader.LoadWithMultiThreads (2 ms) 1341s [----------] 2 tests from PyTorchStreamWriterAndReader (2 ms total) 1341s 1341s [----------] 5 tests from PytorchStreamWriterAndReader 1341s [ RUN ] PytorchStreamWriterAndReader.GetNonexistentRecordThrows 1341s [ OK ] PytorchStreamWriterAndReader.GetNonexistentRecordThrows (0 ms) 1341s [ RUN ] PytorchStreamWriterAndReader.SkipDebugRecords 1341s [ OK ] PytorchStreamWriterAndReader.SkipDebugRecords (0 ms) 1341s [ RUN ] PytorchStreamWriterAndReader.ValidSerializationId 1341s [ OK ] PytorchStreamWriterAndReader.ValidSerializationId (0 ms) 1341s [ RUN ] PytorchStreamWriterAndReader.SkipDuplicateSerializationIdRecords 1341s [ OK ] PytorchStreamWriterAndReader.SkipDuplicateSerializationIdRecords (0 ms) 1341s [ RUN ] PytorchStreamWriterAndReader.LogAPIUsageMetadata 1341s [ OK ] PytorchStreamWriterAndReader.LogAPIUsageMetadata (0 ms) 1341s [----------] 5 tests from PytorchStreamWriterAndReader (0 ms total) 1341s 1341s [----------] 3 tests from ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest 1341s [ RUN ] ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest.ChunkRead/0 1341s [ OK ] ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest.ChunkRead/0 (0 ms) 1341s [ RUN ] ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest.ChunkRead/1 1341s [ OK ] ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest.ChunkRead/1 (0 ms) 1341s [ RUN ] ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest.ChunkRead/2 1341s [ OK ] ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest.ChunkRead/2 (0 ms) 1341s [----------] 3 tests from ChunkRecordIteratorTestGroup/ChunkRecordIteratorTest (0 ms total) 1341s 1341s [----------] Global test environment tear-down 1341s [==========] 10 tests from 3 test suites ran. (2 ms total) 1341s [ PASSED ] 10 tests. 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1341s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1341s autopkgtest: DBG: testbed command exited with code 0 1341s autopkgtest [08:32:18]: test 68_of_104__cpptest__inline_container_test: -----------------------] 1341s autopkgtest: DBG: testbed executing test finished with exit status 0 1341s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/68_of_104__cpptest__inline_container_test-stdout 1341s autopkgtest: DBG: got reply from testbed: ok 1341s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/68_of_104__cpptest__inline_container_test-stderr 1342s autopkgtest: DBG: got reply from testbed: ok 1342s 68_of_104__cpptest__inline_container_test PASS 1342s autopkgtest [08:32:19]: test 68_of_104__cpptest__inline_container_test: - - - - - - - - - - results - - - - - - - - - - 1342s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1342s autopkgtest: DBG: got reply from testbed: ok 1342s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/68_of_104__cpptest__inline_container_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1342s autopkgtest: DBG: testbed command exited with code 0 1342s autopkgtest [08:32:19]: test 69_of_104__cpptest__ivalue_test: preparing testbed 1342s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1342s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1342s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1342s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1342s autopkgtest: DBG: can use apt-get on testbed: True 1342s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1342s Reading package lists... 1342s Building dependency tree... 1342s Reading state information... 1342s Starting pkgProblemResolver with broken count: 0 1342s Starting 2 pkgProblemResolver with broken count: 0 1342s Done 1343s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1343s autopkgtest: DBG: testbed command exited with code 0 1343s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1343s autopkgtest: DBG: testbed command exited with code 0 1343s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1343s autopkgtest: DBG: testbed command exited with code 0 1343s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-packages.all"], kind short, sout raw, serr pipe, env [] 1343s autopkgtest: DBG: testbed command exited with code 0 1343s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/69_of_104__cpptest__ivalue_test-packages.all 1343s autopkgtest: DBG: got reply from testbed: ok 1343s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1343s autopkgtest: DBG: testbed command exited with code 0 1343s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1343s autopkgtest [08:32:20]: test 69_of_104__cpptest__ivalue_test: /usr/lib/libtorch-test/ivalue_test 1343s autopkgtest [08:32:20]: test 69_of_104__cpptest__ivalue_test: [----------------------- 1343s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/69_of_104__cpptest__ivalue_test-stderr --stdout=/tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/ivalue_test"], kind test, sout raw, serr raw, env [] 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-artifacts 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stderr 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stdout 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/ivalue_test 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.TIsyG3Khdl/out to stdout and file: /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stdout 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.TIsyG3Khdl/err to standard error and file: /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stdout 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 12415 to /tmp/autopkgtest_script_pid 1344s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1344s [==========] Running 38 tests from 2 test suites. 1344s [----------] Global test environment set-up. 1344s [----------] 34 tests from IValueTest 1344s [ RUN ] IValueTest.Basic 1344s [ OK ] IValueTest.Basic (0 ms) 1344s [ RUN ] IValueTest.BasicStorage 1344s [ OK ] IValueTest.BasicStorage (0 ms) 1344s [ RUN ] IValueTest.ComplexDict 1344s [ OK ] IValueTest.ComplexDict (0 ms) 1344s [ RUN ] IValueTest.Swap 1344s [ OK ] IValueTest.Swap (0 ms) 1344s [ RUN ] IValueTest.CopyConstruct 1344s [ OK ] IValueTest.CopyConstruct (0 ms) 1344s [ RUN ] IValueTest.MoveConstruct 1344s [ OK ] IValueTest.MoveConstruct (0 ms) 1344s [ RUN ] IValueTest.CopyAssign 1344s [ OK ] IValueTest.CopyAssign (0 ms) 1344s [ RUN ] IValueTest.MoveAssign 1344s [ OK ] IValueTest.MoveAssign (0 ms) 1344s [ RUN ] IValueTest.Tuple 1344s [ OK ] IValueTest.Tuple (0 ms) 1344s [ RUN ] IValueTest.unsafeRemoveAttr 1344s [ OK ] IValueTest.unsafeRemoveAttr (0 ms) 1344s [ RUN ] IValueTest.TuplePrint 1344s [ OK ] IValueTest.TuplePrint (0 ms) 1344s [ RUN ] IValueTest.ComplexIValuePrint 1344s [ OK ] IValueTest.ComplexIValuePrint (0 ms) 1344s [ RUN ] IValueTest.Complex 1344s [ OK ] IValueTest.Complex (0 ms) 1344s [ RUN ] IValueTest.BasicFuture 1344s [ OK ] IValueTest.BasicFuture (0 ms) 1344s [ RUN ] IValueTest.FutureCallbacks 1344s [ OK ] IValueTest.FutureCallbacks (0 ms) 1344s [ RUN ] IValueTest.FutureExceptions 1344s [ OK ] IValueTest.FutureExceptions (0 ms) 1344s [ RUN ] IValueTest.FutureSetError 1344s [ OK ] IValueTest.FutureSetError (0 ms) 1344s [ RUN ] IValueTest.ValueEquality 1344s [ OK ] IValueTest.ValueEquality (0 ms) 1344s [ RUN ] IValueTest.TensorEquality 1344s [ OK ] IValueTest.TensorEquality (0 ms) 1344s [ RUN ] IValueTest.ListEquality 1344s [ OK ] IValueTest.ListEquality (0 ms) 1344s [ RUN ] IValueTest.DictEquality 1344s [ OK ] IValueTest.DictEquality (0 ms) 1344s [ RUN ] IValueTest.DictEqualityDifferentOrder 1344s [ OK ] IValueTest.DictEqualityDifferentOrder (0 ms) 1344s [ RUN ] IValueTest.ListNestedEquality 1344s [ OK ] IValueTest.ListNestedEquality (0 ms) 1344s [ RUN ] IValueTest.StreamEquality 1344s [ OK ] IValueTest.StreamEquality (0 ms) 1344s [ RUN ] IValueTest.EnumEquality 1344s [ OK ] IValueTest.EnumEquality (0 ms) 1344s [ RUN ] IValueTest.isPtrType 1344s [ OK ] IValueTest.isPtrType (0 ms) 1344s [ RUN ] IValueTest.isAliasOf 1344s [ OK ] IValueTest.isAliasOf (0 ms) 1344s [ RUN ] IValueTest.internalToPointer 1344s [ OK ] IValueTest.internalToPointer (0 ms) 1344s [ RUN ] IValueTest.IdentityComparisonAndHashing 1344s [ OK ] IValueTest.IdentityComparisonAndHashing (0 ms) 1344s [ RUN ] IValueTest.IdentityAndHashing_SparseCOO 1344s [ OK ] IValueTest.IdentityAndHashing_SparseCOO (0 ms) 1344s [ RUN ] IValueTest.getSubValues 1344s [ OK ] IValueTest.getSubValues (0 ms) 1344s [ RUN ] IValueTest.ScalarBool 1344s [ OK ] IValueTest.ScalarBool (0 ms) 1344s [ RUN ] IValueTest.ToWeakAndBack 1344s [ OK ] IValueTest.ToWeakAndBack (0 ms) 1344s [ RUN ] IValueTest.UseCountCornerCases 1344s [ OK ] IValueTest.UseCountCornerCases (0 ms) 1344s [----------] 34 tests from IValueTest (1 ms total) 1344s 1344s [----------] 4 tests from TupleElementsTest 1344s [ RUN ] TupleElementsTest.Basic 1344s [ OK ] TupleElementsTest.Basic (0 ms) 1344s [ RUN ] TupleElementsTest.Resize 1344s [ OK ] TupleElementsTest.Resize (0 ms) 1344s [ RUN ] TupleElementsTest.CopyAndMoveConstruct 1344s [ OK ] TupleElementsTest.CopyAndMoveConstruct (0 ms) 1344s [ RUN ] TupleElementsTest.CopyAndMoveAssign 1344s [ OK ] TupleElementsTest.CopyAndMoveAssign (0 ms) 1344s [----------] 4 tests from TupleElementsTest (0 ms total) 1344s 1344s [----------] Global test environment tear-down 1344s [==========] 38 tests from 2 test suites ran. (1 ms total) 1344s [ PASSED ] 38 tests. 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1344s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1344s autopkgtest: DBG: testbed command exited with code 0 1344s autopkgtest [08:32:21]: test 69_of_104__cpptest__ivalue_test: -----------------------] 1344s autopkgtest: DBG: testbed executing test finished with exit status 0 1344s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/69_of_104__cpptest__ivalue_test-stdout 1344s autopkgtest: DBG: got reply from testbed: ok 1344s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/69_of_104__cpptest__ivalue_test-stderr 1345s autopkgtest: DBG: got reply from testbed: ok 1345s autopkgtest [08:32:22]: test 69_of_104__cpptest__ivalue_test: - - - - - - - - - - results - - - - - - - - - - 1345s 69_of_104__cpptest__ivalue_test PASS 1345s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1345s autopkgtest: DBG: got reply from testbed: ok 1345s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/69_of_104__cpptest__ivalue_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1345s autopkgtest: DBG: testbed command exited with code 0 1345s autopkgtest [08:32:22]: test 70_of_104__cpptest__kernel_function_legacy_test: preparing testbed 1345s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1345s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1345s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1345s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1345s autopkgtest: DBG: can use apt-get on testbed: True 1345s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1345s Reading package lists... 1345s Building dependency tree... 1345s Reading state information... 1345s Starting pkgProblemResolver with broken count: 0 1345s Starting 2 pkgProblemResolver with broken count: 0 1345s Done 1346s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1346s autopkgtest: DBG: testbed command exited with code 0 1346s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1346s autopkgtest: DBG: testbed command exited with code 0 1346s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1346s autopkgtest: DBG: testbed command exited with code 0 1346s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-packages.all"], kind short, sout raw, serr pipe, env [] 1346s autopkgtest: DBG: testbed command exited with code 0 1346s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/70_of_104__cpptest__kernel_function_legacy_test-packages.all 1346s autopkgtest: DBG: got reply from testbed: ok 1346s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1346s autopkgtest: DBG: testbed command exited with code 0 1346s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1346s autopkgtest [08:32:23]: test 70_of_104__cpptest__kernel_function_legacy_test: /usr/lib/libtorch-test/kernel_function_legacy_test 1346s autopkgtest [08:32:23]: test 70_of_104__cpptest__kernel_function_legacy_test: [----------------------- 1346s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stderr --stdout=/tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/kernel_function_legacy_test"], kind test, sout raw, serr raw, env [] 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-artifacts 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stderr 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stdout 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/kernel_function_legacy_test 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.5WrijahM0W/out to stdout and file: /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stdout 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.5WrijahM0W/err to standard error and file: /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stdout 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 12568 to /tmp/autopkgtest_script_pid 1347s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1347s [==========] Running 48 tests from 1 test suite. 1347s [----------] Global test environment set-up. 1347s [----------] 48 tests from OperatorRegistrationTestLegacyFunctionBasedKernel 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegisteredInConstructor_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegisteredInConstructor_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorVectorInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorVectorInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorVectorInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorVectorInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorListInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithLegacyTensorListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithStringListOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithStringListOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithUnorderedMapInput_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithUnorderedMapInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithUnorderedMapInput_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithUnorderedMapInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithUnorderedMapOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithUnorderedMapOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithMapOfList_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithMapOfList_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithMapOfListOfMap_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithMapOfListOfMap_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithListOfMap_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithListOfMap_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithListOfMapOfIntList_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithListOfMapOfIntList_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema (0 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails (7 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails (3 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails (13 ms) 1347s [ RUN ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails 1347s [ OK ] OperatorRegistrationTestLegacyFunctionBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails (9 ms) 1347s [----------] 48 tests from OperatorRegistrationTestLegacyFunctionBasedKernel (40 ms total) 1347s 1347s [----------] Global test environment tear-down 1347s [==========] 48 tests from 1 test suite ran. (40 ms total) 1347s [ PASSED ] 48 tests. 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1347s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1347s autopkgtest: DBG: testbed command exited with code 0 1347s autopkgtest [08:32:24]: test 70_of_104__cpptest__kernel_function_legacy_test: -----------------------] 1347s autopkgtest: DBG: testbed executing test finished with exit status 0 1347s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/70_of_104__cpptest__kernel_function_legacy_test-stdout 1347s autopkgtest: DBG: got reply from testbed: ok 1347s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/70_of_104__cpptest__kernel_function_legacy_test-stderr 1347s autopkgtest: DBG: got reply from testbed: ok 1348s 70_of_104__cpptest__kernel_function_legacy_test PASS 1348s autopkgtest [08:32:25]: test 70_of_104__cpptest__kernel_function_legacy_test: - - - - - - - - - - results - - - - - - - - - - 1348s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1348s autopkgtest: DBG: got reply from testbed: ok 1348s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/70_of_104__cpptest__kernel_function_legacy_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1348s autopkgtest: DBG: testbed command exited with code 0 1348s autopkgtest [08:32:25]: test 71_of_104__cpptest__kernel_function_test: preparing testbed 1348s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1348s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1348s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1348s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1348s autopkgtest: DBG: can use apt-get on testbed: True 1348s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1348s Reading package lists... 1348s Building dependency tree... 1348s Reading state information... 1348s Starting pkgProblemResolver with broken count: 0 1348s Starting 2 pkgProblemResolver with broken count: 0 1348s Done 1349s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-packages.all"], kind short, sout raw, serr pipe, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/71_of_104__cpptest__kernel_function_test-packages.all 1349s autopkgtest: DBG: got reply from testbed: ok 1349s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1349s autopkgtest: DBG: testbed command exited with code 0 1349s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1349s autopkgtest [08:32:26]: test 71_of_104__cpptest__kernel_function_test: /usr/lib/libtorch-test/kernel_function_test 1349s autopkgtest [08:32:26]: test 71_of_104__cpptest__kernel_function_test: [----------------------- 1349s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/71_of_104__cpptest__kernel_function_test-stderr --stdout=/tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/kernel_function_test"], kind test, sout raw, serr raw, env [] 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-artifacts 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stderr 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stdout 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/kernel_function_test 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.GM1K0ry8FB/out to stdout and file: /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stdout 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.GM1K0ry8FB/err to standard error and file: /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stdout 1349s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 12721 to /tmp/autopkgtest_script_pid 1350s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1350s [==========] Running 37 tests from 2 test suites. 1350s [----------] Global test environment set-up. 1350s [----------] 36 tests from OperatorRegistrationTestFunctionBasedKernel 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegisteredWithTorchLibraryAndTorchFn_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegisteredWithTorchLibraryAndTorchFn_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenCatchAllKernel_whenRegisteredWithTorchLibraryAndTorchFn_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenCatchAllKernel_whenRegisteredWithTorchLibraryAndTorchFn_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema (0 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails (7 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails (3 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails (12 ms) 1350s [ RUN ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails 1350s [ OK ] OperatorRegistrationTestFunctionBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails (9 ms) 1350s [----------] 36 tests from OperatorRegistrationTestFunctionBasedKernel (36 ms total) 1350s 1350s [----------] 1 test from NewOperatorRegistrationTestFunctionBasedKernel 1350s [ RUN ] NewOperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore 1350s [ OK ] NewOperatorRegistrationTestFunctionBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore (0 ms) 1350s [----------] 1 test from NewOperatorRegistrationTestFunctionBasedKernel (0 ms total) 1350s 1350s [----------] Global test environment tear-down 1350s [==========] 37 tests from 2 test suites ran. (36 ms total) 1350s [ PASSED ] 37 tests. 1350s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1350s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1350s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1350s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1350s autopkgtest: DBG: testbed command exited with code 0 1350s autopkgtest [08:32:27]: test 71_of_104__cpptest__kernel_function_test: -----------------------] 1350s autopkgtest: DBG: testbed executing test finished with exit status 0 1350s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/71_of_104__cpptest__kernel_function_test-stdout 1350s autopkgtest: DBG: got reply from testbed: ok 1350s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/71_of_104__cpptest__kernel_function_test-stderr 1350s autopkgtest: DBG: got reply from testbed: ok 1351s 71_of_104__cpptest__kernel_function_test PASS 1351s autopkgtest [08:32:28]: test 71_of_104__cpptest__kernel_function_test: - - - - - - - - - - results - - - - - - - - - - 1351s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1351s autopkgtest: DBG: got reply from testbed: ok 1351s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/71_of_104__cpptest__kernel_function_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1351s autopkgtest: DBG: testbed command exited with code 0 1351s autopkgtest [08:32:28]: test 72_of_104__cpptest__kernel_lambda_legacy_test: preparing testbed 1351s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1351s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1351s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1351s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1351s autopkgtest: DBG: can use apt-get on testbed: True 1351s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1351s Reading package lists... 1351s Building dependency tree... 1351s Reading state information... 1351s Starting pkgProblemResolver with broken count: 0 1351s Starting 2 pkgProblemResolver with broken count: 0 1351s Done 1351s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1352s autopkgtest: DBG: testbed command exited with code 0 1352s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1352s autopkgtest: DBG: testbed command exited with code 0 1352s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1352s autopkgtest: DBG: testbed command exited with code 0 1352s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-packages.all"], kind short, sout raw, serr pipe, env [] 1352s autopkgtest: DBG: testbed command exited with code 0 1352s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/72_of_104__cpptest__kernel_lambda_legacy_test-packages.all 1352s autopkgtest: DBG: got reply from testbed: ok 1352s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1352s autopkgtest: DBG: testbed command exited with code 0 1352s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1352s autopkgtest [08:32:29]: test 72_of_104__cpptest__kernel_lambda_legacy_test: /usr/lib/libtorch-test/kernel_lambda_legacy_test 1352s autopkgtest [08:32:29]: test 72_of_104__cpptest__kernel_lambda_legacy_test: [----------------------- 1352s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stderr --stdout=/tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/kernel_lambda_legacy_test"], kind test, sout raw, serr raw, env [] 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-artifacts 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stderr 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stdout 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/kernel_lambda_legacy_test 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.otZKmSkO76/out to stdout and file: /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stdout 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.otZKmSkO76/err to standard error and file: /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stdout 1352s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 12874 to /tmp/autopkgtest_script_pid 1353s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1353s [==========] Running 48 tests from 1 test suite. 1353s [----------] Global test environment set-up. 1353s [----------] 48 tests from OperatorRegistrationTestLegacyLambdaBasedKernel 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegisteredInConstructor_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegisteredInConstructor_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorVectorInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithTensorVectorInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorVectorInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorVectorInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorVectorInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorVectorInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorListInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithLegacyTensorListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithStringListOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithStringListOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithUnorderedMapInput_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithUnorderedMapInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithUnorderedMapInput_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithUnorderedMapInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithUnorderedMapOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithUnorderedMapOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithMapOfList_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithMapOfList_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithMapOfListOfMap_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithMapOfListOfMap_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithListOfMap_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithListOfMap_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithListOfMapOfIntList_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithListOfMapOfIntList_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema (0 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails (7 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails (3 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails (12 ms) 1353s [ RUN ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails 1353s [ OK ] OperatorRegistrationTestLegacyLambdaBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails (8 ms) 1353s [----------] 48 tests from OperatorRegistrationTestLegacyLambdaBasedKernel (37 ms total) 1353s 1353s [----------] Global test environment tear-down 1353s [==========] 48 tests from 1 test suite ran. (37 ms total) 1353s [ PASSED ] 48 tests. 1353s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1353s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1353s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1353s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1353s autopkgtest: DBG: testbed command exited with code 0 1353s autopkgtest [08:32:30]: test 72_of_104__cpptest__kernel_lambda_legacy_test: -----------------------] 1353s autopkgtest: DBG: testbed executing test finished with exit status 0 1353s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/72_of_104__cpptest__kernel_lambda_legacy_test-stdout 1353s autopkgtest: DBG: got reply from testbed: ok 1353s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/72_of_104__cpptest__kernel_lambda_legacy_test-stderr 1353s autopkgtest: DBG: got reply from testbed: ok 1353s 72_of_104__cpptest__kernel_lambda_legacy_test PASS 1353s autopkgtest [08:32:30]: test 72_of_104__cpptest__kernel_lambda_legacy_test: - - - - - - - - - - results - - - - - - - - - - 1353s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1354s autopkgtest: DBG: got reply from testbed: ok 1354s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/72_of_104__cpptest__kernel_lambda_legacy_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1354s autopkgtest: DBG: testbed command exited with code 0 1354s autopkgtest [08:32:31]: test 73_of_104__cpptest__kernel_lambda_test: preparing testbed 1354s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1354s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1354s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1354s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1354s autopkgtest: DBG: can use apt-get on testbed: True 1354s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1354s Reading package lists... 1354s Building dependency tree... 1354s Reading state information... 1354s Starting pkgProblemResolver with broken count: 0 1354s Starting 2 pkgProblemResolver with broken count: 0 1354s Done 1354s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1354s autopkgtest: DBG: testbed command exited with code 0 1354s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1355s autopkgtest: DBG: testbed command exited with code 0 1355s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1355s autopkgtest: DBG: testbed command exited with code 0 1355s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-packages.all"], kind short, sout raw, serr pipe, env [] 1355s autopkgtest: DBG: testbed command exited with code 0 1355s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/73_of_104__cpptest__kernel_lambda_test-packages.all 1355s autopkgtest: DBG: got reply from testbed: ok 1355s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1355s autopkgtest: DBG: testbed command exited with code 0 1355s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1355s autopkgtest [08:32:32]: test 73_of_104__cpptest__kernel_lambda_test: /usr/lib/libtorch-test/kernel_lambda_test 1355s autopkgtest [08:32:32]: test 73_of_104__cpptest__kernel_lambda_test: [----------------------- 1355s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/73_of_104__cpptest__kernel_lambda_test-stderr --stdout=/tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/kernel_lambda_test"], kind test, sout raw, serr raw, env [] 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-artifacts 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stderr 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stdout 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/kernel_lambda_test 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.6pDMxixQXJ/out to stdout and file: /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stdout 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.6pDMxixQXJ/err to standard error and file: /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stdout 1355s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13027 to /tmp/autopkgtest_script_pid 1356s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1356s [==========] Running 36 tests from 1 test suite. 1356s [----------] Global test environment set-up. 1356s [----------] 36 tests from OperatorRegistrationTestLambdaBasedKernel 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenOutOfLineKernel_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenOutOfLineKernel_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema (0 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails (7 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails (3 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails (12 ms) 1356s [ RUN ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails 1356s [ OK ] OperatorRegistrationTestLambdaBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails (9 ms) 1356s [----------] 36 tests from OperatorRegistrationTestLambdaBasedKernel (35 ms total) 1356s 1356s [----------] Global test environment tear-down 1356s [==========] 36 tests from 1 test suite ran. (35 ms total) 1356s [ PASSED ] 36 tests. 1356s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1356s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1356s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1356s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1356s autopkgtest: DBG: testbed command exited with code 0 1356s autopkgtest [08:32:33]: test 73_of_104__cpptest__kernel_lambda_test: -----------------------] 1356s autopkgtest: DBG: testbed executing test finished with exit status 0 1356s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/73_of_104__cpptest__kernel_lambda_test-stdout 1356s autopkgtest: DBG: got reply from testbed: ok 1356s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/73_of_104__cpptest__kernel_lambda_test-stderr 1356s autopkgtest: DBG: got reply from testbed: ok 1356s autopkgtest [08:32:33]: test 73_of_104__cpptest__kernel_lambda_test: - - - - - - - - - - results - - - - - - - - - - 1356s 73_of_104__cpptest__kernel_lambda_test PASS 1356s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1357s autopkgtest: DBG: got reply from testbed: ok 1357s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/73_of_104__cpptest__kernel_lambda_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1357s autopkgtest: DBG: testbed command exited with code 0 1357s autopkgtest [08:32:34]: test 74_of_104__cpptest__kernel_stackbased_test: preparing testbed 1357s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1357s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1357s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1357s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1357s autopkgtest: DBG: can use apt-get on testbed: True 1357s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1357s Reading package lists... 1357s Building dependency tree... 1357s Reading state information... 1357s Starting pkgProblemResolver with broken count: 0 1357s Starting 2 pkgProblemResolver with broken count: 0 1357s Done 1357s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1357s autopkgtest: DBG: testbed command exited with code 0 1357s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1358s autopkgtest: DBG: testbed command exited with code 0 1358s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1358s autopkgtest: DBG: testbed command exited with code 0 1358s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-packages.all"], kind short, sout raw, serr pipe, env [] 1358s autopkgtest: DBG: testbed command exited with code 0 1358s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/74_of_104__cpptest__kernel_stackbased_test-packages.all 1358s autopkgtest: DBG: got reply from testbed: ok 1358s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1358s autopkgtest: DBG: testbed command exited with code 0 1358s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1358s autopkgtest [08:32:35]: test 74_of_104__cpptest__kernel_stackbased_test: /usr/lib/libtorch-test/kernel_stackbased_test 1358s autopkgtest [08:32:35]: test 74_of_104__cpptest__kernel_stackbased_test: [----------------------- 1358s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stderr --stdout=/tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/kernel_stackbased_test"], kind test, sout raw, serr raw, env [] 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-artifacts 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stderr 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stdout 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/kernel_stackbased_test 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.E2oIAlZ6wB/out to stdout and file: /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stdout 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.E2oIAlZ6wB/err to standard error and file: /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stdout 1358s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13180 to /tmp/autopkgtest_script_pid 1359s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1359s [==========] Running 9 tests from 1 test suite. 1359s [----------] Global test environment set-up. 1359s [----------] 9 tests from OperatorRegistrationTestStackBasedKernel 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegistered_thenCanBeCalled 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegistered_thenCanBeCalled (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegistrationRunsOutOfScope_thenCannotBeCalledAnymore (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenFailsBecauseItCannotInferFromStackBasedKernel 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenFailsBecauseItCannotInferFromStackBasedKernel (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegistered_thenCanAlsoBeCalledUnboxed 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.givenKernel_whenRegistered_thenCanAlsoBeCalledUnboxed (0 ms) 1359s [ RUN ] OperatorRegistrationTestStackBasedKernel.callKernelsWithDispatchKeySetConvention_redispatchesToLowerPriorityKernels 1359s [ OK ] OperatorRegistrationTestStackBasedKernel.callKernelsWithDispatchKeySetConvention_redispatchesToLowerPriorityKernels (3 ms) 1359s [----------] 9 tests from OperatorRegistrationTestStackBasedKernel (5 ms total) 1359s 1359s [----------] Global test environment tear-down 1359s [==========] 9 tests from 1 test suite ran. (5 ms total) 1359s [ PASSED ] 9 tests. 1359s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1359s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1359s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1359s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1359s autopkgtest: DBG: testbed command exited with code 0 1359s autopkgtest [08:32:36]: test 74_of_104__cpptest__kernel_stackbased_test: -----------------------] 1359s autopkgtest: DBG: testbed executing test finished with exit status 0 1359s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/74_of_104__cpptest__kernel_stackbased_test-stdout 1359s autopkgtest: DBG: got reply from testbed: ok 1359s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/74_of_104__cpptest__kernel_stackbased_test-stderr 1359s autopkgtest: DBG: got reply from testbed: ok 1359s autopkgtest [08:32:36]: test 74_of_104__cpptest__kernel_stackbased_test: - - - - - - - - - - results - - - - - - - - - - 1359s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1359s 74_of_104__cpptest__kernel_stackbased_test PASS 1360s autopkgtest: DBG: got reply from testbed: ok 1360s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/74_of_104__cpptest__kernel_stackbased_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1360s autopkgtest: DBG: testbed command exited with code 0 1360s autopkgtest [08:32:37]: test 75_of_104__cpptest__lazy_tensor_test: preparing testbed 1360s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1360s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1360s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1360s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1360s autopkgtest: DBG: can use apt-get on testbed: True 1360s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1360s Reading package lists... 1360s Building dependency tree... 1360s Reading state information... 1360s Starting pkgProblemResolver with broken count: 0 1360s Starting 2 pkgProblemResolver with broken count: 0 1360s Done 1360s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1360s autopkgtest: DBG: testbed command exited with code 0 1360s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1361s autopkgtest: DBG: testbed command exited with code 0 1361s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1361s autopkgtest: DBG: testbed command exited with code 0 1361s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1361s autopkgtest: DBG: testbed command exited with code 0 1361s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/75_of_104__cpptest__lazy_tensor_test-packages.all 1361s autopkgtest: DBG: got reply from testbed: ok 1361s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1361s autopkgtest: DBG: testbed command exited with code 0 1361s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1361s autopkgtest [08:32:38]: test 75_of_104__cpptest__lazy_tensor_test: /usr/lib/libtorch-test/lazy_tensor_test 1361s autopkgtest [08:32:38]: test 75_of_104__cpptest__lazy_tensor_test: [----------------------- 1361s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/75_of_104__cpptest__lazy_tensor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/lazy_tensor_test"], kind test, sout raw, serr raw, env [] 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-artifacts 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stderr 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stdout 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/lazy_tensor_test 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.hYNwq2CGZ9/out to stdout and file: /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stdout 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.hYNwq2CGZ9/err to standard error and file: /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stdout 1361s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13333 to /tmp/autopkgtest_script_pid 1362s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1362s [==========] Running 2 tests from 2 test suites. 1362s [----------] Global test environment set-up. 1362s [----------] 1 test from XlaTensorTest 1362s [ RUN ] XlaTensorTest.TestNoStorage 1362s [ OK ] XlaTensorTest.TestNoStorage (0 ms) 1362s [----------] 1 test from XlaTensorTest (0 ms total) 1362s 1362s [----------] 1 test from LazyTensorTest 1362s [ RUN ] LazyTensorTest.TestNoStorage 1362s [ OK ] LazyTensorTest.TestNoStorage (0 ms) 1362s [----------] 1 test from LazyTensorTest (0 ms total) 1362s 1362s [----------] Global test environment tear-down 1362s [==========] 2 tests from 2 test suites ran. (0 ms total) 1362s [ PASSED ] 2 tests. 1362s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1362s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1362s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1362s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1362s autopkgtest: DBG: testbed command exited with code 0 1362s autopkgtest [08:32:39]: test 75_of_104__cpptest__lazy_tensor_test: -----------------------] 1362s autopkgtest: DBG: testbed executing test finished with exit status 0 1362s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/75_of_104__cpptest__lazy_tensor_test-stdout 1362s autopkgtest: DBG: got reply from testbed: ok 1362s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/75_of_104__cpptest__lazy_tensor_test-stderr 1362s autopkgtest: DBG: got reply from testbed: ok 1362s 75_of_104__cpptest__lazy_tensor_test PASS 1362s autopkgtest [08:32:39]: test 75_of_104__cpptest__lazy_tensor_test: - - - - - - - - - - results - - - - - - - - - - 1362s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1362s autopkgtest: DBG: got reply from testbed: ok 1362s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/75_of_104__cpptest__lazy_tensor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1363s autopkgtest: DBG: testbed command exited with code 0 1363s autopkgtest [08:32:40]: test 76_of_104__cpptest__legacy_vmap_test: preparing testbed 1363s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1363s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1363s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1363s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1363s autopkgtest: DBG: can use apt-get on testbed: True 1363s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1363s Reading package lists... 1363s Building dependency tree... 1363s Reading state information... 1363s Starting pkgProblemResolver with broken count: 0 1363s Starting 2 pkgProblemResolver with broken count: 0 1363s Done 1363s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1363s autopkgtest: DBG: testbed command exited with code 0 1363s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1363s autopkgtest: DBG: testbed command exited with code 0 1363s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1364s autopkgtest: DBG: testbed command exited with code 0 1364s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-packages.all"], kind short, sout raw, serr pipe, env [] 1364s autopkgtest: DBG: testbed command exited with code 0 1364s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/76_of_104__cpptest__legacy_vmap_test-packages.all 1364s autopkgtest: DBG: got reply from testbed: ok 1364s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1364s autopkgtest: DBG: testbed command exited with code 0 1364s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1364s autopkgtest [08:32:41]: test 76_of_104__cpptest__legacy_vmap_test: /usr/lib/libtorch-test/legacy_vmap_test 1364s autopkgtest [08:32:41]: test 76_of_104__cpptest__legacy_vmap_test: [----------------------- 1364s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/76_of_104__cpptest__legacy_vmap_test-stderr --stdout=/tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/legacy_vmap_test"], kind test, sout raw, serr raw, env [] 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-artifacts 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stderr 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stdout 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/legacy_vmap_test 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4eIBUegTJy/out to stdout and file: /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stdout 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4eIBUegTJy/err to standard error and file: /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stdout 1364s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13486 to /tmp/autopkgtest_script_pid 1364s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1364s [==========] Running 23 tests from 1 test suite. 1364s [----------] Global test environment set-up. 1364s [----------] 23 tests from VmapTest 1364s [ RUN ] VmapTest.TestBatchedTensor 1364s [ OK ] VmapTest.TestBatchedTensor (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorMaxLevel 1364s [ OK ] VmapTest.TestBatchedTensorMaxLevel (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorActualDim 1364s [ OK ] VmapTest.TestBatchedTensorActualDim (0 ms) 1364s [ RUN ] VmapTest.TestMultiBatchVmapTransform 1364s [ OK ] VmapTest.TestMultiBatchVmapTransform (0 ms) 1364s [ RUN ] VmapTest.TestVmapPhysicalViewGetPhysicalDim 1364s [ OK ] VmapTest.TestVmapPhysicalViewGetPhysicalDim (0 ms) 1364s [ RUN ] VmapTest.TestVmapPhysicalViewGetPhysicalDims 1364s [ OK ] VmapTest.TestVmapPhysicalViewGetPhysicalDims (0 ms) 1364s [ RUN ] VmapTest.TestVmapPhysicalViewNewLogicalFromPhysical 1364s [ OK ] VmapTest.TestVmapPhysicalViewNewLogicalFromPhysical (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorSum 1364s [ OK ] VmapTest.TestBatchedTensorSum (0 ms) 1364s [ RUN ] VmapTest.TestBroadcastingVmapTransformBatchedBatched 1364s [ OK ] VmapTest.TestBroadcastingVmapTransformBatchedBatched (0 ms) 1364s [ RUN ] VmapTest.TestBroadcastingVmapTransformBatchedUnbatched 1364s [ OK ] VmapTest.TestBroadcastingVmapTransformBatchedUnbatched (0 ms) 1364s [ RUN ] VmapTest.TestBroadcastingVmapTransformMaxLevels 1364s [ OK ] VmapTest.TestBroadcastingVmapTransformMaxLevels (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorMul 1364s [ OK ] VmapTest.TestBatchedTensorMul (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorSize 1364s [ OK ] VmapTest.TestBatchedTensorSize (0 ms) 1364s [ RUN ] VmapTest.TestVmapPhysicalViewGetPhysicalShape 1364s [ OK ] VmapTest.TestVmapPhysicalViewGetPhysicalShape (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorExpand 1364s [ OK ] VmapTest.TestBatchedTensorExpand (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorUnsqueeze 1364s [ OK ] VmapTest.TestBatchedTensorUnsqueeze (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorSqueeze 1364s [ OK ] VmapTest.TestBatchedTensorSqueeze (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorTranspose 1364s [ OK ] VmapTest.TestBatchedTensorTranspose (0 ms) 1364s [ RUN ] VmapTest.TestBatchedTensorPermute 1364s [ OK ] VmapTest.TestBatchedTensorPermute (0 ms) 1364s [ RUN ] VmapTest.TestMultiBatchVmapTransformBatchedBatched 1364s [ OK ] VmapTest.TestMultiBatchVmapTransformBatchedBatched (1 ms) 1364s [ RUN ] VmapTest.TestMultiBatchVmapTransformBatchedUnbatched 1364s [ OK ] VmapTest.TestMultiBatchVmapTransformBatchedUnbatched (0 ms) 1364s [ RUN ] VmapTest.TestMultiBatchVmapTransformMaxLevels 1364s [ OK ] VmapTest.TestMultiBatchVmapTransformMaxLevels (0 ms) 1364s [ RUN ] VmapTest.TestMultiBatchVmapTransformMultipleTensors 1364s [ OK ] VmapTest.TestMultiBatchVmapTransformMultipleTensors (0 ms) 1364s [----------] 23 tests from VmapTest (6 ms total) 1364s 1364s [----------] Global test environment tear-down 1364s [==========] 23 tests from 1 test suite ran. (6 ms total) 1364s [ PASSED ] 23 tests. 1365s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1365s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1365s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1365s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1365s autopkgtest: DBG: testbed command exited with code 0 1365s autopkgtest [08:32:42]: test 76_of_104__cpptest__legacy_vmap_test: -----------------------] 1365s autopkgtest: DBG: testbed executing test finished with exit status 0 1365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/76_of_104__cpptest__legacy_vmap_test-stdout 1365s autopkgtest: DBG: got reply from testbed: ok 1365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/76_of_104__cpptest__legacy_vmap_test-stderr 1365s autopkgtest: DBG: got reply from testbed: ok 1365s 76_of_104__cpptest__legacy_vmap_test PASS 1365s autopkgtest [08:32:42]: test 76_of_104__cpptest__legacy_vmap_test: - - - - - - - - - - results - - - - - - - - - - 1365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1365s autopkgtest: DBG: got reply from testbed: ok 1365s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/76_of_104__cpptest__legacy_vmap_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1366s autopkgtest: DBG: testbed command exited with code 0 1366s autopkgtest [08:32:43]: test 77_of_104__cpptest__make_boxed_from_unboxed_functor_test: preparing testbed 1366s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1366s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1366s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1366s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1366s autopkgtest: DBG: can use apt-get on testbed: True 1366s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1366s Reading package lists... 1366s Building dependency tree... 1366s Reading state information... 1366s Starting pkgProblemResolver with broken count: 0 1366s Starting 2 pkgProblemResolver with broken count: 0 1366s Done 1366s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1366s autopkgtest: DBG: testbed command exited with code 0 1366s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1366s autopkgtest: DBG: testbed command exited with code 0 1366s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-packages.all 1367s autopkgtest: DBG: got reply from testbed: ok 1367s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1367s autopkgtest: DBG: testbed command exited with code 0 1367s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1367s autopkgtest [08:32:44]: test 77_of_104__cpptest__make_boxed_from_unboxed_functor_test: /usr/lib/libtorch-test/make_boxed_from_unboxed_functor_test 1367s autopkgtest [08:32:44]: test 77_of_104__cpptest__make_boxed_from_unboxed_functor_test: [----------------------- 1367s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/make_boxed_from_unboxed_functor_test"], kind test, sout raw, serr raw, env [] 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-artifacts 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stderr 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stdout 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/make_boxed_from_unboxed_functor_test 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.BxjKu76I1g/out to stdout and file: /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stdout 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.BxjKu76I1g/err to standard error and file: /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stdout 1367s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13639 to /tmp/autopkgtest_script_pid 1367s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1367s [==========] Running 39 tests from 1 test suite. 1367s [----------] Global test environment set-up. 1367s [----------] 39 tests from OperatorRegistrationTestFunctorBasedKernel 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInOneRegistrar_thenCallsRightKernel (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenMultipleOperatorsAndKernels_whenRegisteredInMultipleRegistrars_thenCallsRightKernel (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithZeroOutputs_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorListOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntListOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByReference_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByValue_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByReference_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorInputByValue_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithIntListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorListInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTensorListInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithDictInput_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithDictInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithDictOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTupleInput_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithTupleInput_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithCache_thenCacheIsKeptCorrectly 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithCache_thenCacheIsKeptCorrectly (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithConstructorArg_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithConstructorArg_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithMultipleConstructorArgs_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithMultipleConstructorArgs_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenFallbackKernelWithoutAnyArguments_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenFallbackKernelWithoutTensorArguments_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithOptionalInputs_withoutOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithOptionalInputs_withOutput_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled 1367s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernelWithOptionalInputs_withMultipleOutputs_whenRegistered_thenCanBeCalled (0 ms) 1367s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegistered_thenCanBeCalledUnboxed (0 ms) 1368s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegisteredWithoutSpecifyingSchema_thenInfersSchema (0 ms) 1368s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegisteredCatchAllWithoutSpecifyingSchema_thenInfersSchema 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenKernel_whenRegisteredCatchAllWithoutSpecifyingSchema_thenInfersSchema (0 ms) 1368s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentNumArguments_whenRegistering_thenFails (6 ms) 1368s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentArgumentType_whenRegistering_thenFails (3 ms) 1368s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentNumReturns_whenRegistering_thenFails (11 ms) 1368s [ RUN ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails 1368s [ OK ] OperatorRegistrationTestFunctorBasedKernel.givenMismatchedKernel_withDifferentReturnTypes_whenRegistering_thenFails (8 ms) 1368s [----------] 39 tests from OperatorRegistrationTestFunctorBasedKernel (34 ms total) 1368s 1368s [----------] Global test environment tear-down 1368s [==========] 39 tests from 1 test suite ran. (34 ms total) 1368s [ PASSED ] 39 tests. 1368s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1368s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1368s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1368s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1368s autopkgtest: DBG: testbed command exited with code 0 1368s autopkgtest [08:32:45]: test 77_of_104__cpptest__make_boxed_from_unboxed_functor_test: -----------------------] 1368s autopkgtest: DBG: testbed executing test finished with exit status 0 1368s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stdout 1368s autopkgtest: DBG: got reply from testbed: ok 1368s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-stderr 1368s autopkgtest: DBG: got reply from testbed: ok 1368s 77_of_104__cpptest__make_boxed_from_unboxed_functor_test PASS 1368s autopkgtest [08:32:45]: test 77_of_104__cpptest__make_boxed_from_unboxed_functor_test: - - - - - - - - - - results - - - - - - - - - - 1368s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1368s autopkgtest: DBG: got reply from testbed: ok 1368s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/77_of_104__cpptest__make_boxed_from_unboxed_functor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1369s autopkgtest: DBG: testbed command exited with code 0 1369s autopkgtest [08:32:46]: test 78_of_104__cpptest__math_kernel_test: preparing testbed 1369s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1369s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1369s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1369s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1369s autopkgtest: DBG: can use apt-get on testbed: True 1369s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1369s Reading package lists... 1369s Building dependency tree... 1369s Reading state information... 1369s Starting pkgProblemResolver with broken count: 0 1369s Starting 2 pkgProblemResolver with broken count: 0 1369s Done 1369s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1369s autopkgtest: DBG: testbed command exited with code 0 1369s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1369s autopkgtest: DBG: testbed command exited with code 0 1369s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1370s autopkgtest: DBG: testbed command exited with code 0 1370s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-packages.all"], kind short, sout raw, serr pipe, env [] 1370s autopkgtest: DBG: testbed command exited with code 0 1370s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/78_of_104__cpptest__math_kernel_test-packages.all 1370s autopkgtest: DBG: got reply from testbed: ok 1370s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1370s autopkgtest: DBG: testbed command exited with code 0 1370s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1370s autopkgtest [08:32:47]: test 78_of_104__cpptest__math_kernel_test: /usr/lib/libtorch-test/math_kernel_test 1370s autopkgtest [08:32:47]: test 78_of_104__cpptest__math_kernel_test: [----------------------- 1370s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/78_of_104__cpptest__math_kernel_test-stderr --stdout=/tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/math_kernel_test"], kind test, sout raw, serr raw, env [] 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-artifacts 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stderr 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stdout 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/math_kernel_test 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.r6Naqe3PfE/out to stdout and file: /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stdout 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.r6Naqe3PfE/err to standard error and file: /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stdout 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13792 to /tmp/autopkgtest_script_pid 1370s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1370s [==========] Running 6 tests from 1 test suite. 1370s [----------] Global test environment set-up. 1370s [----------] 6 tests from MathKernelTest 1370s [ RUN ] MathKernelTest.NativeGroupNorm 1370s [ OK ] MathKernelTest.NativeGroupNorm (1 ms) 1370s [ RUN ] MathKernelTest.NativeLayerNorm 1370s [ OK ] MathKernelTest.NativeLayerNorm (2 ms) 1370s [ RUN ] MathKernelTest.Addr 1370s [ OK ] MathKernelTest.Addr (0 ms) 1370s [ RUN ] MathKernelTest.SiluBackward 1370s [ OK ] MathKernelTest.SiluBackward (0 ms) 1370s [ RUN ] MathKernelTest.MishBackward 1370s [ OK ] MathKernelTest.MishBackward (0 ms) 1370s [ RUN ] MathKernelTest.Bmm 1370s [ OK ] MathKernelTest.Bmm (0 ms) 1370s [----------] 6 tests from MathKernelTest (3 ms total) 1370s 1370s [----------] Global test environment tear-down 1370s [==========] 6 tests from 1 test suite ran. (3 ms total) 1370s [ PASSED ] 6 tests. 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1370s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1370s autopkgtest: DBG: testbed command exited with code 0 1371s autopkgtest [08:32:48]: test 78_of_104__cpptest__math_kernel_test: -----------------------] 1371s autopkgtest: DBG: testbed executing test finished with exit status 0 1371s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/78_of_104__cpptest__math_kernel_test-stdout 1371s autopkgtest: DBG: got reply from testbed: ok 1371s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/78_of_104__cpptest__math_kernel_test-stderr 1371s autopkgtest: DBG: got reply from testbed: ok 1371s 78_of_104__cpptest__math_kernel_test PASS 1371s autopkgtest [08:32:48]: test 78_of_104__cpptest__math_kernel_test: - - - - - - - - - - results - - - - - - - - - - 1371s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1371s autopkgtest: DBG: got reply from testbed: ok 1371s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/78_of_104__cpptest__math_kernel_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1372s autopkgtest: DBG: testbed command exited with code 0 1372s autopkgtest [08:32:49]: test 79_of_104__cpptest__memory_format_test: preparing testbed 1372s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1372s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1372s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1372s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1372s autopkgtest: DBG: can use apt-get on testbed: True 1372s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1372s Reading package lists... 1372s Building dependency tree... 1372s Reading state information... 1372s Starting pkgProblemResolver with broken count: 0 1372s Starting 2 pkgProblemResolver with broken count: 0 1372s Done 1372s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1372s autopkgtest: DBG: testbed command exited with code 0 1372s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1372s autopkgtest: DBG: testbed command exited with code 0 1372s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1372s autopkgtest: DBG: testbed command exited with code 0 1372s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-packages.all"], kind short, sout raw, serr pipe, env [] 1373s autopkgtest: DBG: testbed command exited with code 0 1373s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/79_of_104__cpptest__memory_format_test-packages.all 1373s autopkgtest: DBG: got reply from testbed: ok 1373s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1373s autopkgtest: DBG: testbed command exited with code 0 1373s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1373s autopkgtest [08:32:50]: test 79_of_104__cpptest__memory_format_test: /usr/lib/libtorch-test/memory_format_test 1373s autopkgtest [08:32:50]: test 79_of_104__cpptest__memory_format_test: [----------------------- 1373s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/79_of_104__cpptest__memory_format_test-stderr --stdout=/tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/memory_format_test"], kind test, sout raw, serr raw, env [] 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-artifacts 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stderr 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stdout 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/memory_format_test 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.09ipLOoB7G/out to stdout and file: /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stdout 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.09ipLOoB7G/err to standard error and file: /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stdout 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 13946 to /tmp/autopkgtest_script_pid 1373s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1373s [==========] Running 4 tests from 1 test suite. 1373s [----------] Global test environment set-up. 1373s [----------] 4 tests from MemoryFormatTest 1373s [ RUN ] MemoryFormatTest.SetMemoryFormat 1373s [ OK ] MemoryFormatTest.SetMemoryFormat (0 ms) 1373s [ RUN ] MemoryFormatTest.TransposeMemoryFormat 1373s [ OK ] MemoryFormatTest.TransposeMemoryFormat (0 ms) 1373s [ RUN ] MemoryFormatTest.SliceStepTwoMemoryFormat 1373s [ OK ] MemoryFormatTest.SliceStepTwoMemoryFormat (0 ms) 1373s [ RUN ] MemoryFormatTest.SliceFirstMemoryFormat 1373s [ OK ] MemoryFormatTest.SliceFirstMemoryFormat (0 ms) 1373s [----------] 4 tests from MemoryFormatTest (0 ms total) 1373s 1373s [----------] Global test environment tear-down 1373s [==========] 4 tests from 1 test suite ran. (0 ms total) 1373s [ PASSED ] 4 tests. 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1373s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1373s autopkgtest: DBG: testbed command exited with code 0 1374s autopkgtest [08:32:51]: test 79_of_104__cpptest__memory_format_test: -----------------------] 1374s autopkgtest: DBG: testbed executing test finished with exit status 0 1374s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/79_of_104__cpptest__memory_format_test-stdout 1374s autopkgtest: DBG: got reply from testbed: ok 1374s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/79_of_104__cpptest__memory_format_test-stderr 1374s autopkgtest: DBG: got reply from testbed: ok 1374s 79_of_104__cpptest__memory_format_test PASS 1374s autopkgtest [08:32:51]: test 79_of_104__cpptest__memory_format_test: - - - - - - - - - - results - - - - - - - - - - 1374s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1374s autopkgtest: DBG: got reply from testbed: ok 1374s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/79_of_104__cpptest__memory_format_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1374s autopkgtest: DBG: testbed command exited with code 0 1374s autopkgtest [08:32:51]: test 80_of_104__cpptest__memory_overlapping_test: preparing testbed 1374s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1374s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1374s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1374s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1374s autopkgtest: DBG: can use apt-get on testbed: True 1374s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1375s Reading package lists... 1375s Building dependency tree... 1375s Reading state information... 1375s Starting pkgProblemResolver with broken count: 0 1375s Starting 2 pkgProblemResolver with broken count: 0 1375s Done 1375s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1375s autopkgtest: DBG: testbed command exited with code 0 1375s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1375s autopkgtest: DBG: testbed command exited with code 0 1375s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1375s autopkgtest: DBG: testbed command exited with code 0 1375s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-packages.all"], kind short, sout raw, serr pipe, env [] 1376s autopkgtest: DBG: testbed command exited with code 0 1376s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/80_of_104__cpptest__memory_overlapping_test-packages.all 1376s autopkgtest: DBG: got reply from testbed: ok 1376s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1376s autopkgtest: DBG: testbed command exited with code 0 1376s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1376s autopkgtest [08:32:53]: test 80_of_104__cpptest__memory_overlapping_test: /usr/lib/libtorch-test/memory_overlapping_test 1376s autopkgtest [08:32:53]: test 80_of_104__cpptest__memory_overlapping_test: [----------------------- 1376s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/80_of_104__cpptest__memory_overlapping_test-stderr --stdout=/tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/memory_overlapping_test"], kind test, sout raw, serr raw, env [] 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-artifacts 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stderr 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stdout 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/memory_overlapping_test 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.gVfPdVywcb/out to stdout and file: /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stdout 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.gVfPdVywcb/err to standard error and file: /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stdout 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 14099 to /tmp/autopkgtest_script_pid 1376s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1376s [==========] Running 6 tests from 1 test suite. 1376s [----------] Global test environment set-up. 1376s [----------] 6 tests from MemoryOverlapTest 1376s [ RUN ] MemoryOverlapTest.TensorExpanded 1376s [ OK ] MemoryOverlapTest.TensorExpanded (0 ms) 1376s [ RUN ] MemoryOverlapTest.ScalarExpanded 1376s [ OK ] MemoryOverlapTest.ScalarExpanded (0 ms) 1376s [ RUN ] MemoryOverlapTest.NonContiguousTensor 1376s [ OK ] MemoryOverlapTest.NonContiguousTensor (0 ms) 1376s [ RUN ] MemoryOverlapTest.NonContiguousExpandedTensor 1376s [ OK ] MemoryOverlapTest.NonContiguousExpandedTensor (0 ms) 1376s [ RUN ] MemoryOverlapTest.ContiguousTensor 1376s [ OK ] MemoryOverlapTest.ContiguousTensor (0 ms) 1376s [ RUN ] MemoryOverlapTest.ContiguousExpandedTensor 1376s [ OK ] MemoryOverlapTest.ContiguousExpandedTensor (0 ms) 1376s [----------] 6 tests from MemoryOverlapTest (0 ms total) 1376s 1376s [----------] Global test environment tear-down 1376s [==========] 6 tests from 1 test suite ran. (0 ms total) 1376s [ PASSED ] 6 tests. 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1376s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1376s autopkgtest: DBG: testbed command exited with code 0 1377s autopkgtest [08:32:54]: test 80_of_104__cpptest__memory_overlapping_test: -----------------------] 1377s autopkgtest: DBG: testbed executing test finished with exit status 0 1377s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/80_of_104__cpptest__memory_overlapping_test-stdout 1377s autopkgtest: DBG: got reply from testbed: ok 1377s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/80_of_104__cpptest__memory_overlapping_test-stderr 1377s autopkgtest: DBG: got reply from testbed: ok 1377s autopkgtest [08:32:54]: test 80_of_104__cpptest__memory_overlapping_test: - - - - - - - - - - results - - - - - - - - - - 1377s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1377s 80_of_104__cpptest__memory_overlapping_test PASS 1377s autopkgtest: DBG: got reply from testbed: ok 1377s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/80_of_104__cpptest__memory_overlapping_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1377s autopkgtest: DBG: testbed command exited with code 0 1377s autopkgtest [08:32:54]: test 81_of_104__cpptest__mobile_memory_cleanup: preparing testbed 1377s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1377s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1377s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1377s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1377s autopkgtest: DBG: can use apt-get on testbed: True 1377s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1378s Reading package lists... 1378s Building dependency tree... 1378s Reading state information... 1378s Starting pkgProblemResolver with broken count: 0 1378s Starting 2 pkgProblemResolver with broken count: 0 1378s Done 1378s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1378s autopkgtest: DBG: testbed command exited with code 0 1378s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1378s autopkgtest: DBG: testbed command exited with code 0 1378s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1378s autopkgtest: DBG: testbed command exited with code 0 1378s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-packages.all"], kind short, sout raw, serr pipe, env [] 1379s autopkgtest: DBG: testbed command exited with code 0 1379s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-packages.all /tmp/autopkgtest-work.z8qos2ju/out/81_of_104__cpptest__mobile_memory_cleanup-packages.all 1379s autopkgtest: DBG: got reply from testbed: ok 1379s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1379s autopkgtest: DBG: testbed command exited with code 0 1379s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1379s autopkgtest [08:32:56]: test 81_of_104__cpptest__mobile_memory_cleanup: /usr/lib/libtorch-test/mobile_memory_cleanup 1379s autopkgtest [08:32:56]: test 81_of_104__cpptest__mobile_memory_cleanup: [----------------------- 1379s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stderr --stdout=/tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/mobile_memory_cleanup"], kind test, sout raw, serr raw, env [] 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-artifacts 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stderr 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stdout 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/mobile_memory_cleanup 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.f3F6zOPAf9/out to stdout and file: /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stdout 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.f3F6zOPAf9/err to standard error and file: /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stdout 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 14252 to /tmp/autopkgtest_script_pid 1379s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1379s [==========] Running 0 tests from 0 test suites. 1379s [==========] 0 tests from 0 test suites ran. (0 ms total) 1379s [ PASSED ] 0 tests. 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1379s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1379s autopkgtest: DBG: testbed command exited with code 0 1380s autopkgtest [08:32:57]: test 81_of_104__cpptest__mobile_memory_cleanup: -----------------------] 1380s autopkgtest: DBG: testbed executing test finished with exit status 0 1380s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stdout /tmp/autopkgtest-work.z8qos2ju/out/81_of_104__cpptest__mobile_memory_cleanup-stdout 1380s autopkgtest: DBG: got reply from testbed: ok 1380s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-stderr /tmp/autopkgtest-work.z8qos2ju/out/81_of_104__cpptest__mobile_memory_cleanup-stderr 1380s autopkgtest: DBG: got reply from testbed: ok 1380s 81_of_104__cpptest__mobile_memory_cleanup PASS 1380s autopkgtest [08:32:57]: test 81_of_104__cpptest__mobile_memory_cleanup: - - - - - - - - - - results - - - - - - - - - - 1380s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1380s autopkgtest: DBG: got reply from testbed: ok 1380s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/81_of_104__cpptest__mobile_memory_cleanup-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1380s autopkgtest: DBG: testbed command exited with code 0 1380s autopkgtest [08:32:57]: test 82_of_104__cpptest__native_test: preparing testbed 1380s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1380s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1380s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1380s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1380s autopkgtest: DBG: can use apt-get on testbed: True 1380s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1381s Reading package lists... 1381s Building dependency tree... 1381s Reading state information... 1381s Starting pkgProblemResolver with broken count: 0 1381s Starting 2 pkgProblemResolver with broken count: 0 1381s Done 1381s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1381s autopkgtest: DBG: testbed command exited with code 0 1381s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1381s autopkgtest: DBG: testbed command exited with code 0 1381s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1381s autopkgtest: DBG: testbed command exited with code 0 1381s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-packages.all"], kind short, sout raw, serr pipe, env [] 1381s autopkgtest: DBG: testbed command exited with code 0 1381s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/82_of_104__cpptest__native_test-packages.all 1382s autopkgtest: DBG: got reply from testbed: ok 1382s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1382s autopkgtest: DBG: testbed command exited with code 0 1382s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1382s autopkgtest [08:32:59]: test 82_of_104__cpptest__native_test: /usr/lib/libtorch-test/native_test 1382s autopkgtest [08:32:59]: test 82_of_104__cpptest__native_test: [----------------------- 1382s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/82_of_104__cpptest__native_test-stderr --stdout=/tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/native_test"], kind test, sout raw, serr raw, env [] 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-artifacts 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stderr 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stdout 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/native_test 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.3Zn2VNpap2/out to stdout and file: /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stdout 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.3Zn2VNpap2/err to standard error and file: /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stdout 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 14405 to /tmp/autopkgtest_script_pid 1382s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1382s [==========] Running 2 tests from 1 test suite. 1382s [----------] Global test environment set-up. 1382s [----------] 2 tests from TestNative 1382s [ RUN ] TestNative.NativeTestCPU 1382s [W219 08:32:59.153976121 TensorCompare.cpp:529] Warning: where received a uint8 condition tensor. This behavior is deprecated and will be removed in a future version of PyTorch. Use a boolean condition instead. (function operator()) 1382s [ OK ] TestNative.NativeTestCPU (1 ms) 1382s [ RUN ] TestNative.NativeTestGPU 1382s [ OK ] TestNative.NativeTestGPU (0 ms) 1382s [----------] 2 tests from TestNative (1 ms total) 1382s 1382s [----------] Global test environment tear-down 1382s [==========] 2 tests from 1 test suite ran. (1 ms total) 1382s [ PASSED ] 2 tests. 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1382s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1382s autopkgtest: DBG: testbed command exited with code 0 1382s autopkgtest [08:32:59]: test 82_of_104__cpptest__native_test: -----------------------] 1382s autopkgtest: DBG: testbed executing test finished with exit status 0 1382s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/82_of_104__cpptest__native_test-stdout 1383s autopkgtest: DBG: got reply from testbed: ok 1383s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/82_of_104__cpptest__native_test-stderr 1383s autopkgtest: DBG: got reply from testbed: ok 1383s 82_of_104__cpptest__native_test PASS 1383s autopkgtest [08:33:00]: test 82_of_104__cpptest__native_test: - - - - - - - - - - results - - - - - - - - - - 1383s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1383s autopkgtest: DBG: got reply from testbed: ok 1383s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/82_of_104__cpptest__native_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1383s autopkgtest: DBG: testbed command exited with code 0 1383s autopkgtest [08:33:00]: test 83_of_104__cpptest__op_allowlist_test: preparing testbed 1383s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1383s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1383s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1383s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1383s autopkgtest: DBG: can use apt-get on testbed: True 1383s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1383s Reading package lists... 1384s Building dependency tree... 1384s Reading state information... 1384s Starting pkgProblemResolver with broken count: 0 1384s Starting 2 pkgProblemResolver with broken count: 0 1384s Done 1384s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1384s autopkgtest: DBG: testbed command exited with code 0 1384s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1384s autopkgtest: DBG: testbed command exited with code 0 1384s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1384s autopkgtest: DBG: testbed command exited with code 0 1384s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-packages.all"], kind short, sout raw, serr pipe, env [] 1384s autopkgtest: DBG: testbed command exited with code 0 1384s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/83_of_104__cpptest__op_allowlist_test-packages.all 1385s autopkgtest: DBG: got reply from testbed: ok 1385s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1385s autopkgtest: DBG: testbed command exited with code 0 1385s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1385s autopkgtest [08:33:02]: test 83_of_104__cpptest__op_allowlist_test: /usr/lib/libtorch-test/op_allowlist_test 1385s autopkgtest [08:33:02]: test 83_of_104__cpptest__op_allowlist_test: [----------------------- 1385s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/83_of_104__cpptest__op_allowlist_test-stderr --stdout=/tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/op_allowlist_test"], kind test, sout raw, serr raw, env [] 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-artifacts 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stderr 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stdout 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/op_allowlist_test 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.qJ4ssvfSL8/out to stdout and file: /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stdout 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.qJ4ssvfSL8/err to standard error and file: /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stdout 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 14558 to /tmp/autopkgtest_script_pid 1385s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1385s [==========] Running 0 tests from 0 test suites. 1385s [==========] 0 tests from 0 test suites ran. (0 ms total) 1385s [ PASSED ] 0 tests. 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1385s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1385s autopkgtest: DBG: testbed command exited with code 0 1385s autopkgtest [08:33:02]: test 83_of_104__cpptest__op_allowlist_test: -----------------------] 1385s autopkgtest: DBG: testbed executing test finished with exit status 0 1385s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/83_of_104__cpptest__op_allowlist_test-stdout 1386s autopkgtest: DBG: got reply from testbed: ok 1386s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/83_of_104__cpptest__op_allowlist_test-stderr 1386s autopkgtest: DBG: got reply from testbed: ok 1386s 83_of_104__cpptest__op_allowlist_test PASS 1386s autopkgtest [08:33:03]: test 83_of_104__cpptest__op_allowlist_test: - - - - - - - - - - results - - - - - - - - - - 1386s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1386s autopkgtest: DBG: got reply from testbed: ok 1386s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/83_of_104__cpptest__op_allowlist_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1386s autopkgtest: DBG: testbed command exited with code 0 1386s autopkgtest [08:33:03]: test 84_of_104__cpptest__op_registration_test: preparing testbed 1386s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1386s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1386s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1386s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1386s autopkgtest: DBG: can use apt-get on testbed: True 1386s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1386s Reading package lists... 1387s Building dependency tree... 1387s Reading state information... 1387s Starting pkgProblemResolver with broken count: 0 1387s Starting 2 pkgProblemResolver with broken count: 0 1387s Done 1387s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1387s autopkgtest: DBG: testbed command exited with code 0 1387s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1387s autopkgtest: DBG: testbed command exited with code 0 1387s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1387s autopkgtest: DBG: testbed command exited with code 0 1387s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-packages.all"], kind short, sout raw, serr pipe, env [] 1387s autopkgtest: DBG: testbed command exited with code 0 1387s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/84_of_104__cpptest__op_registration_test-packages.all 1387s autopkgtest: DBG: got reply from testbed: ok 1387s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1388s autopkgtest: DBG: testbed command exited with code 0 1388s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1388s autopkgtest [08:33:05]: test 84_of_104__cpptest__op_registration_test: /usr/lib/libtorch-test/op_registration_test 1388s autopkgtest [08:33:05]: test 84_of_104__cpptest__op_registration_test: [----------------------- 1388s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/84_of_104__cpptest__op_registration_test-stderr --stdout=/tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/op_registration_test"], kind test, sout raw, serr raw, env [] 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-artifacts 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stderr 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stdout 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/op_registration_test 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.OYq6BVB3Zx/out to stdout and file: /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stdout 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.OYq6BVB3Zx/err to standard error and file: /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stdout 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 14711 to /tmp/autopkgtest_script_pid 1388s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1388s [==========] Running 79 tests from 2 test suites. 1388s [----------] Global test environment set-up. 1388s [----------] 51 tests from OperatorRegistrationTest 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringWithSchemaBeforeKernelInOptionsObject_thenCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringWithSchemaBeforeKernelInOptionsObject_thenCanBeCalled (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringWithSchemaAfterKernelInOptionsObject_thenCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringWithSchemaAfterKernelInOptionsObject_thenCanBeCalled (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringWithNameBeforeKernelInOptionsObject_thenCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringWithNameBeforeKernelInOptionsObject_thenCanBeCalled (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringWithNameAfterKernelInOptionsObject_thenCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringWithNameAfterKernelInOptionsObject_thenCanBeCalled (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringWithoutSchema_thenFails 1388s [ OK ] OperatorRegistrationTest.whenRegisteringWithoutSchema_thenFails (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenCallingOpWithWrongDispatchKey_thenFails 1388s [ OK ] OperatorRegistrationTest.whenCallingOpWithWrongDispatchKey_thenFails (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithCatchallKernel_whenCallingOp_thenCallsCatchallKernel 1388s [ OK ] OperatorRegistrationTest.givenOpWithCatchallKernel_whenCallingOp_thenCallsCatchallKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithDispatchedKernelOutOfScope_whenRegisteringCatchallKernelAndCallingOp_thenCallsCatchallKernel 1388s [ OK ] OperatorRegistrationTest.givenOpWithDispatchedKernelOutOfScope_whenRegisteringCatchallKernelAndCallingOp_thenCallsCatchallKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithCatchallKernelOutOfScope_whenRegisteringDispatchedKernelAndCallingOp_thenCallsCatchallKernel 1388s [ OK ] OperatorRegistrationTest.givenOpWithCatchallKernelOutOfScope_whenRegisteringDispatchedKernelAndCallingOp_thenCallsCatchallKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithoutKernels_whenRegisteringWithSchema_thenOnlyRegistersSchema 1388s [ OK ] OperatorRegistrationTest.givenOpWithoutKernels_whenRegisteringWithSchema_thenOnlyRegistersSchema (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithoutKernels_whenRegisteringWithoutSchema_thenFails 1388s [ OK ] OperatorRegistrationTest.givenOpWithoutKernels_whenRegisteringWithoutSchema_thenFails (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithoutKernels_whenRunningOutOfScope_thenSchemaIsGone 1388s [ OK ] OperatorRegistrationTest.givenOpWithoutKernels_whenRunningOutOfScope_thenSchemaIsGone (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenOpWithoutKernelsWithoutTensorInputs_whenRegistering_thenRegisters 1388s [ OK ] OperatorRegistrationTest.givenOpWithoutKernelsWithoutTensorInputs_whenRegistering_thenRegisters (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenMultipleKernelsWithSameDispatchKey_whenRegisteringInSameOpCall_thenFails 1388s [ OK ] OperatorRegistrationTest.givenMultipleKernelsWithSameDispatchKey_whenRegisteringInSameOpCall_thenFails (0 ms) 1388s [ RUN ] OperatorRegistrationTest.givenMultipleCatchallKernels_whenRegisteringInSameOpCall_thenFails 1388s [ OK ] OperatorRegistrationTest.givenMultipleCatchallKernels_whenRegisteringInSameOpCall_thenFails (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringCPUTensorType_thenCanOnlyCallUnboxedWithCPUDispatchKey 1388s [ OK ] OperatorRegistrationTest.whenRegisteringCPUTensorType_thenCanOnlyCallUnboxedWithCPUDispatchKey (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringMultipleKernelsInSameOpCallAndCalling_thenCallsCorrectKernel 1388s [ OK ] OperatorRegistrationTest.whenRegisteringMultipleKernelsInSameOpCallAndCalling_thenCallsCorrectKernel (2 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringMultipleKernelsByNameAndNoneCanInferSchema_thenFails 1388s [ OK ] OperatorRegistrationTest.whenRegisteringMultipleKernelsByNameAndNoneCanInferSchema_thenFails (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringMultipleKernelsBySchemaAndNoneCanInferSchema_thenSucceeds 1388s [ OK ] OperatorRegistrationTest.whenRegisteringMultipleKernelsBySchemaAndNoneCanInferSchema_thenSucceeds (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringMultipleKernelsByNameAndOnlyOneCanInferSchema_thenSucceeds 1388s [ OK ] OperatorRegistrationTest.whenRegisteringMultipleKernelsByNameAndOnlyOneCanInferSchema_thenSucceeds (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringMultipleKernelsBySchemaAndOnlyOneCanInferSchema_thenSucceeds 1388s [ OK ] OperatorRegistrationTest.whenRegisteringMultipleKernelsBySchemaAndOnlyOneCanInferSchema_thenSucceeds (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringMismatchingKernelsInSameOpCall_thenFails 1388s [ OK ] OperatorRegistrationTest.whenRegisteringMismatchingKernelsInSameOpCall_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernel_thenCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernel_thenCanBeCalled (1 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelForWrongBackend_thenCannotBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelForWrongBackend_thenCannotBeCalled (2 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndRegularKernelForDifferentBackend_thenRegularKernelCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndRegularKernelForDifferentBackend_thenRegularKernelCanBeCalled (1 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndRegularKernelForDifferentBackend_thenFallbackKernelCanBeCalled 1388s [ OK ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndRegularKernelForDifferentBackend_thenFallbackKernelCanBeCalled (1 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndRegularKernelForSameBackend_thenCallsRegularKernel 1388s [ OK ] OperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndRegularKernelForSameBackend_thenCallsRegularKernel (1 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringAutogradKernel_thenCanCallAutogradKernel 1388s [ OK ] OperatorRegistrationTest.whenRegisteringAutogradKernel_thenCanCallAutogradKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringAutogradKernelWithRegularKernel_thenCanCallAutogradKernel 1388s [ OK ] OperatorRegistrationTest.whenRegisteringAutogradKernelWithRegularKernel_thenCanCallAutogradKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisteringAutogradKernelWithCatchAllKernel_thenCanCallCatchallKernel 1388s [ OK ] OperatorRegistrationTest.whenRegisteringAutogradKernelWithCatchAllKernel_thenCanCallCatchallKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.AutogradBackendOverridesAutogradKernel 1388s [ OK ] OperatorRegistrationTest.AutogradBackendOverridesAutogradKernel (1 ms) 1388s [ RUN ] OperatorRegistrationTest.AutogradXLAOverridesAutogradKernel 1388s [ OK ] OperatorRegistrationTest.AutogradXLAOverridesAutogradKernel (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisterWithXLAKernelAndCatchAll_AutogradXLAIsNotFilled 1388s [ OK ] OperatorRegistrationTest.whenRegisterWithXLAKernelAndCatchAll_AutogradXLAIsNotFilled (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenRegisterWithLazyKernelAndCatchAll_AutogradLazyIsNotFilled 1388s [ OK ] OperatorRegistrationTest.whenRegisterWithLazyKernelAndCatchAll_AutogradLazyIsNotFilled (0 ms) 1388s [ RUN ] OperatorRegistrationTest.whenregisteringwithinvalidoverloadname 1388s [ OK ] OperatorRegistrationTest.whenregisteringwithinvalidoverloadname (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenLambdaKernel_whenRegisteringWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenLambdaKernel_whenRegisteringWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenLambdaKernel_whenRegisteringCatchAllAndBackendWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenLambdaKernel_whenRegisteringCatchAllAndBackendWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenLambdaKernel_whenRegisteringBackendAndCatchAllWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenLambdaKernel_whenRegisteringBackendAndCatchAllWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenLambdaKernel_whenAccessingWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenLambdaKernel_whenAccessingWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenLambdaKernel_whenAccessingCatchAllWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenLambdaKernel_whenAccessingCatchAllWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenTorchLibrary_whenRegisteringWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenTorchLibrary_whenRegisteringWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenTorchLibrary_whenAccessingWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenTorchLibrary_whenAccessingWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.givenTorchLibrary_whenAccessingCatchAllWithMismatchingCppSignatures_thenFails 1388s [ OK ] OperatorRegistrationTest.givenTorchLibrary_whenAccessingCatchAllWithMismatchingCppSignatures_thenFails (1 ms) 1388s [ RUN ] OperatorRegistrationTest.testAvailableArgTypes 1388s [ OK ] OperatorRegistrationTest.testAvailableArgTypes (50 ms) 1388s [ RUN ] OperatorRegistrationTest.callKernelsWithDispatchKeySetConvention_call_redispatchesToLowerPriorityKernels 1388s [ OK ] OperatorRegistrationTest.callKernelsWithDispatchKeySetConvention_call_redispatchesToLowerPriorityKernels (0 ms) 1388s [ RUN ] OperatorRegistrationTest.callKernelsWithDispatchKeySetConvention_callBoxed_redispatchesToLowerPriorityKernels 1388s [ OK ] OperatorRegistrationTest.callKernelsWithDispatchKeySetConvention_callBoxed_redispatchesToLowerPriorityKernels (0 ms) 1388s [ RUN ] OperatorRegistrationTest.callKernelsWithDispatchKeySetConvention_mixedCallingConventions_redispatchesToLowerPriorityKernels 1388s [ OK ] OperatorRegistrationTest.callKernelsWithDispatchKeySetConvention_mixedCallingConventions_redispatchesToLowerPriorityKernels (0 ms) 1388s [ RUN ] OperatorRegistrationTest.getRegistrationsForDispatchKey 1388s [ OK ] OperatorRegistrationTest.getRegistrationsForDispatchKey (36 ms) 1388s [ RUN ] OperatorRegistrationTest.TestSymNonSymCompatibility 1388s [ OK ] OperatorRegistrationTest.TestSymNonSymCompatibility (1 ms) 1388s [ RUN ] OperatorRegistrationTest.TestSymSymCompatibility 1388s [ OK ] OperatorRegistrationTest.TestSymSymCompatibility (0 ms) 1388s [ RUN ] OperatorRegistrationTest.TestSymSymRefCompatibility 1388s [ OK ] OperatorRegistrationTest.TestSymSymRefCompatibility (1 ms) 1388s [----------] 51 tests from OperatorRegistrationTest (128 ms total) 1388s 1388s [----------] 28 tests from NewOperatorRegistrationTest 1388s [ RUN ] NewOperatorRegistrationTest.erroroutwithinvalidoverloadname 1388s [ OK ] NewOperatorRegistrationTest.erroroutwithinvalidoverloadname (2 ms) 1388s [ RUN ] NewOperatorRegistrationTest.testBasics 1388s [ OK ] NewOperatorRegistrationTest.testBasics (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.importTopLevel 1388s [ OK ] NewOperatorRegistrationTest.importTopLevel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.overload 1388s [ OK ] NewOperatorRegistrationTest.overload (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.importNamespace 1388s [ OK ] NewOperatorRegistrationTest.importNamespace (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.schema 1388s [ OK ] NewOperatorRegistrationTest.schema (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndCatchallKernelForSameBackend_thenCallsFallbackKernel 1388s [ OK ] NewOperatorRegistrationTest.whenRegisteringBackendFallbackKernelAndCatchallKernelForSameBackend_thenCallsFallbackKernel (1 ms) 1388s [ RUN ] NewOperatorRegistrationTest.whenRegisteringAutogradKernelWithRegularKernel_thenCanCallRegularKernel 1388s [ OK ] NewOperatorRegistrationTest.whenRegisteringAutogradKernelWithRegularKernel_thenCanCallRegularKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchWithCompositeImplicitAutogradKernel 1388s [ OK ] NewOperatorRegistrationTest.dispatchWithCompositeImplicitAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchWithCompositeImplicitAutogradAndAutogradKernel 1388s [W219 08:33:05.181719604 OperatorEntry.cpp:154] Warning: Warning only once for all operators, other operators may also be overridden. 1388s Overriding a previously registered kernel for the same operator and the same dispatch key 1388s operator: test::fn(Tensor _0) -> Tensor _0 1388s registered at ./aten/src/ATen/core/op_registration/op_registration_test.cpp:1457 1388s dispatch key: (catch all) 1388s previous kernel: registered at ./aten/src/ATen/core/op_registration/op_registration_test.cpp:1457 1388s new kernel: registered at ./aten/src/ATen/core/op_registration/op_registration_test.cpp:1457 (function operator()) 1388s [ OK ] NewOperatorRegistrationTest.dispatchWithCompositeImplicitAutogradAndAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchWithCompositeImplicitAutogradAndCatchAllKernel 1388s [ OK ] NewOperatorRegistrationTest.dispatchWithCompositeImplicitAutogradAndCatchAllKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.AutogradBackendOverridesCompositeImplicitAutogradKernel 1388s [ OK ] NewOperatorRegistrationTest.AutogradBackendOverridesCompositeImplicitAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.BackendOverridesCompositeImplicitAutogradKernel 1388s [ OK ] NewOperatorRegistrationTest.BackendOverridesCompositeImplicitAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchWithCompositeExplicitAutogradKernel 1388s [ OK ] NewOperatorRegistrationTest.dispatchWithCompositeExplicitAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchWithCompositeExplicitAutogradAndCompositeImplicitAutogradKernel 1388s [ OK ] NewOperatorRegistrationTest.dispatchWithCompositeExplicitAutogradAndCompositeImplicitAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.BackendOverridesCompositeExplicitAutogradKernel 1388s [ OK ] NewOperatorRegistrationTest.BackendOverridesCompositeExplicitAutogradKernel (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatch 1388s [ OK ] NewOperatorRegistrationTest.dispatch (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchAutogradPrecedence 1388s [ OK ] NewOperatorRegistrationTest.dispatchAutogradPrecedence (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.throwsWhenRegisterToBackendMapsToAutogradOther 1388s [ OK ] NewOperatorRegistrationTest.throwsWhenRegisterToBackendMapsToAutogradOther (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchMultipleTensors 1388s [ OK ] NewOperatorRegistrationTest.dispatchMultipleTensors (1 ms) 1388s [ RUN ] NewOperatorRegistrationTest.registerCompositeImplicitAutogradWithCPUKernel_andCallAutogradOtherKernel_callsComposite 1388s [ OK ] NewOperatorRegistrationTest.registerCompositeImplicitAutogradWithCPUKernel_andCallAutogradOtherKernel_callsComposite (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.dispatchMultiple 1388s [ OK ] NewOperatorRegistrationTest.dispatchMultiple (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.fallback 1388s [ OK ] NewOperatorRegistrationTest.fallback (1 ms) 1388s [ RUN ] NewOperatorRegistrationTest.BackendSelectRedispatchesToCPU 1388s [ OK ] NewOperatorRegistrationTest.BackendSelectRedispatchesToCPU (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.TorchLibraryTwiceIsError 1388s [ OK ] NewOperatorRegistrationTest.TorchLibraryTwiceIsError (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.CppFunction 1388s [ OK ] NewOperatorRegistrationTest.CppFunction (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.testDelayedListener 1388s [ OK ] NewOperatorRegistrationTest.testDelayedListener (0 ms) 1388s [ RUN ] NewOperatorRegistrationTest.testImplNoDefGetsCaught 1388s [ OK ] NewOperatorRegistrationTest.testImplNoDefGetsCaught (0 ms) 1388s [----------] 28 tests from NewOperatorRegistrationTest (14 ms total) 1388s 1388s [----------] Global test environment tear-down 1388s [==========] 79 tests from 2 test suites ran. (142 ms total) 1388s [ PASSED ] 79 tests. 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1388s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1388s autopkgtest: DBG: testbed command exited with code 0 1389s autopkgtest [08:33:06]: test 84_of_104__cpptest__op_registration_test: -----------------------] 1389s autopkgtest: DBG: testbed executing test finished with exit status 0 1389s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/84_of_104__cpptest__op_registration_test-stdout 1389s autopkgtest: DBG: got reply from testbed: ok 1389s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/84_of_104__cpptest__op_registration_test-stderr 1389s autopkgtest: DBG: got reply from testbed: ok 1389s autopkgtest [08:33:06]: test 84_of_104__cpptest__op_registration_test: - - - - - - - - - - results - - - - - - - - - - 1389s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1389s 84_of_104__cpptest__op_registration_test PASS 1389s autopkgtest: DBG: got reply from testbed: ok 1389s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/84_of_104__cpptest__op_registration_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1389s autopkgtest: DBG: testbed command exited with code 0 1389s autopkgtest [08:33:06]: test 85_of_104__cpptest__operator_name_test: preparing testbed 1389s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1389s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1389s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1389s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1389s autopkgtest: DBG: can use apt-get on testbed: True 1389s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1389s Reading package lists... 1390s Building dependency tree... 1390s Reading state information... 1390s Starting pkgProblemResolver with broken count: 0 1390s Starting 2 pkgProblemResolver with broken count: 0 1390s Done 1390s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1390s autopkgtest: DBG: testbed command exited with code 0 1390s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1390s autopkgtest: DBG: testbed command exited with code 0 1390s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1390s autopkgtest: DBG: testbed command exited with code 0 1390s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-packages.all"], kind short, sout raw, serr pipe, env [] 1390s autopkgtest: DBG: testbed command exited with code 0 1390s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/85_of_104__cpptest__operator_name_test-packages.all 1391s autopkgtest: DBG: got reply from testbed: ok 1391s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1391s autopkgtest: DBG: testbed command exited with code 0 1391s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1391s autopkgtest [08:33:08]: test 85_of_104__cpptest__operator_name_test: /usr/lib/libtorch-test/operator_name_test 1391s autopkgtest [08:33:08]: test 85_of_104__cpptest__operator_name_test: [----------------------- 1391s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/85_of_104__cpptest__operator_name_test-stderr --stdout=/tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/operator_name_test"], kind test, sout raw, serr raw, env [] 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-artifacts 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stderr 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stdout 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/operator_name_test 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.WQJIBH1YLP/out to stdout and file: /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stdout 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.WQJIBH1YLP/err to standard error and file: /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stdout 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 14864 to /tmp/autopkgtest_script_pid 1391s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1391s [==========] Running 2 tests from 1 test suite. 1391s [----------] Global test environment set-up. 1391s [----------] 2 tests from OperatorNameTest 1391s [ RUN ] OperatorNameTest.SetNamespaceIfNotSetWithoutExistingNamespace 1391s [ OK ] OperatorNameTest.SetNamespaceIfNotSetWithoutExistingNamespace (0 ms) 1391s [ RUN ] OperatorNameTest.SetNamespaceIfNotSetWithExistingNamespace 1391s [ OK ] OperatorNameTest.SetNamespaceIfNotSetWithExistingNamespace (0 ms) 1391s [----------] 2 tests from OperatorNameTest (0 ms total) 1391s 1391s [----------] Global test environment tear-down 1391s [==========] 2 tests from 1 test suite ran. (0 ms total) 1391s [ PASSED ] 2 tests. 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1391s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1391s autopkgtest: DBG: testbed command exited with code 0 1391s autopkgtest [08:33:08]: test 85_of_104__cpptest__operator_name_test: -----------------------] 1391s autopkgtest: DBG: testbed executing test finished with exit status 0 1391s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/85_of_104__cpptest__operator_name_test-stdout 1392s autopkgtest: DBG: got reply from testbed: ok 1392s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/85_of_104__cpptest__operator_name_test-stderr 1392s autopkgtest: DBG: got reply from testbed: ok 1392s autopkgtest [08:33:09]: test 85_of_104__cpptest__operator_name_test: - - - - - - - - - - results - - - - - - - - - - 1392s 85_of_104__cpptest__operator_name_test PASS 1392s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1392s autopkgtest: DBG: got reply from testbed: ok 1392s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/85_of_104__cpptest__operator_name_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1392s autopkgtest: DBG: testbed command exited with code 0 1392s autopkgtest [08:33:09]: test 86_of_104__cpptest__operators_test: preparing testbed 1392s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1392s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1392s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1392s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1392s autopkgtest: DBG: can use apt-get on testbed: True 1392s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1392s Reading package lists... 1393s Building dependency tree... 1393s Reading state information... 1393s Starting pkgProblemResolver with broken count: 0 1393s Starting 2 pkgProblemResolver with broken count: 0 1393s Done 1393s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1393s autopkgtest: DBG: testbed command exited with code 0 1393s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1393s autopkgtest: DBG: testbed command exited with code 0 1393s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1393s autopkgtest: DBG: testbed command exited with code 0 1393s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-packages.all"], kind short, sout raw, serr pipe, env [] 1393s autopkgtest: DBG: testbed command exited with code 0 1393s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/86_of_104__cpptest__operators_test-packages.all 1393s autopkgtest: DBG: got reply from testbed: ok 1393s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1394s autopkgtest: DBG: testbed command exited with code 0 1394s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1394s autopkgtest [08:33:11]: test 86_of_104__cpptest__operators_test: /usr/lib/libtorch-test/operators_test 1394s autopkgtest [08:33:11]: test 86_of_104__cpptest__operators_test: [----------------------- 1394s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/86_of_104__cpptest__operators_test-stderr --stdout=/tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/operators_test"], kind test, sout raw, serr raw, env [] 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-artifacts 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stderr 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stdout 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/operators_test 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.SUFMNKBLwu/out to stdout and file: /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stdout 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.SUFMNKBLwu/err to standard error and file: /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stdout 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15017 to /tmp/autopkgtest_script_pid 1394s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1394s [==========] Running 4 tests from 1 test suite. 1394s [----------] Global test environment set-up. 1394s [----------] 4 tests from OperatorsTest 1394s [ RUN ] OperatorsTest.TestFunctionDecltype 1394s [ OK ] OperatorsTest.TestFunctionDecltype (0 ms) 1394s [ RUN ] OperatorsTest.TestMethodOnlyDecltype 1394s [ OK ] OperatorsTest.TestMethodOnlyDecltype (0 ms) 1394s [ RUN ] OperatorsTest.Test_ATEN_FN 1394s [ OK ] OperatorsTest.Test_ATEN_FN (0 ms) 1394s [ RUN ] OperatorsTest.TestOutVariantIsFaithful 1394s [ OK ] OperatorsTest.TestOutVariantIsFaithful (0 ms) 1394s [----------] 4 tests from OperatorsTest (0 ms total) 1394s 1394s [----------] Global test environment tear-down 1394s [==========] 4 tests from 1 test suite ran. (0 ms total) 1394s [ PASSED ] 4 tests. 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1394s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1394s autopkgtest: DBG: testbed command exited with code 0 1394s autopkgtest [08:33:11]: test 86_of_104__cpptest__operators_test: -----------------------] 1394s autopkgtest: DBG: testbed executing test finished with exit status 0 1394s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/86_of_104__cpptest__operators_test-stdout 1395s autopkgtest: DBG: got reply from testbed: ok 1395s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/86_of_104__cpptest__operators_test-stderr 1395s autopkgtest: DBG: got reply from testbed: ok 1395s 86_of_104__cpptest__operators_test PASS 1395s autopkgtest [08:33:12]: test 86_of_104__cpptest__operators_test: - - - - - - - - - - results - - - - - - - - - - 1395s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1395s autopkgtest: DBG: got reply from testbed: ok 1395s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/86_of_104__cpptest__operators_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1395s autopkgtest: DBG: testbed command exited with code 0 1395s autopkgtest [08:33:12]: test 87_of_104__cpptest__packedtensoraccessor_test: preparing testbed 1395s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1395s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1395s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1395s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1395s autopkgtest: DBG: can use apt-get on testbed: True 1395s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1395s Reading package lists... 1395s Building dependency tree... 1395s Reading state information... 1396s Starting pkgProblemResolver with broken count: 0 1396s Starting 2 pkgProblemResolver with broken count: 0 1396s Done 1396s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1396s autopkgtest: DBG: testbed command exited with code 0 1396s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1396s autopkgtest: DBG: testbed command exited with code 0 1396s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1396s autopkgtest: DBG: testbed command exited with code 0 1396s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1396s autopkgtest: DBG: testbed command exited with code 0 1396s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/87_of_104__cpptest__packedtensoraccessor_test-packages.all 1396s autopkgtest: DBG: got reply from testbed: ok 1396s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1397s autopkgtest: DBG: testbed command exited with code 0 1397s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1397s autopkgtest [08:33:14]: test 87_of_104__cpptest__packedtensoraccessor_test: /usr/lib/libtorch-test/packedtensoraccessor_test 1397s autopkgtest [08:33:14]: test 87_of_104__cpptest__packedtensoraccessor_test: [----------------------- 1397s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/packedtensoraccessor_test"], kind test, sout raw, serr raw, env [] 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-artifacts 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stderr 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stdout 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/packedtensoraccessor_test 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.5bmIySBp7P/out to stdout and file: /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stdout 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.5bmIySBp7P/err to standard error and file: /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stdout 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15170 to /tmp/autopkgtest_script_pid 1397s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1397s [==========] Running 1 test from 1 test suite. 1397s [----------] Global test environment set-up. 1397s [----------] 1 test from PackedtensoraccessorTest 1397s [ RUN ] PackedtensoraccessorTest.TransposeTest 1397s [ OK ] PackedtensoraccessorTest.TransposeTest (0 ms) 1397s [----------] 1 test from PackedtensoraccessorTest (0 ms total) 1397s 1397s [----------] Global test environment tear-down 1397s [==========] 1 test from 1 test suite ran. (0 ms total) 1397s [ PASSED ] 1 test. 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1397s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1397s autopkgtest: DBG: testbed command exited with code 0 1397s autopkgtest [08:33:14]: test 87_of_104__cpptest__packedtensoraccessor_test: -----------------------] 1397s autopkgtest: DBG: testbed executing test finished with exit status 0 1397s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/87_of_104__cpptest__packedtensoraccessor_test-stdout 1397s autopkgtest: DBG: got reply from testbed: ok 1397s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/87_of_104__cpptest__packedtensoraccessor_test-stderr 1398s autopkgtest: DBG: got reply from testbed: ok 1398s 87_of_104__cpptest__packedtensoraccessor_test PASS 1398s autopkgtest [08:33:15]: test 87_of_104__cpptest__packedtensoraccessor_test: - - - - - - - - - - results - - - - - - - - - - 1398s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1398s autopkgtest: DBG: got reply from testbed: ok 1398s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/87_of_104__cpptest__packedtensoraccessor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1398s autopkgtest: DBG: testbed command exited with code 0 1398s autopkgtest [08:33:15]: test 88_of_104__cpptest__pow_test: preparing testbed 1398s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1398s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1398s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1398s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1398s autopkgtest: DBG: can use apt-get on testbed: True 1398s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1398s Reading package lists... 1398s Building dependency tree... 1398s Reading state information... 1398s Starting pkgProblemResolver with broken count: 0 1399s Starting 2 pkgProblemResolver with broken count: 0 1399s Done 1399s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1399s autopkgtest: DBG: testbed command exited with code 0 1399s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1399s autopkgtest: DBG: testbed command exited with code 0 1399s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1399s autopkgtest: DBG: testbed command exited with code 0 1399s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-packages.all"], kind short, sout raw, serr pipe, env [] 1399s autopkgtest: DBG: testbed command exited with code 0 1399s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/88_of_104__cpptest__pow_test-packages.all 1399s autopkgtest: DBG: got reply from testbed: ok 1399s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1399s autopkgtest: DBG: testbed command exited with code 0 1399s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1399s autopkgtest [08:33:16]: test 88_of_104__cpptest__pow_test: /usr/lib/libtorch-test/pow_test 1399s autopkgtest [08:33:16]: test 88_of_104__cpptest__pow_test: [----------------------- 1399s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/88_of_104__cpptest__pow_test-stderr --stdout=/tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/pow_test"], kind test, sout raw, serr raw, env [] 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-artifacts 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stderr 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stdout 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/pow_test 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.fFrtjpXXic/out to stdout and file: /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stdout 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.fFrtjpXXic/err to standard error and file: /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stdout 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15325 to /tmp/autopkgtest_script_pid 1400s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1400s [==========] Running 13 tests from 1 test suite. 1400s [----------] Global test environment set-up. 1400s [----------] 13 tests from PowTest 1400s [ RUN ] PowTest.IntTensorPowAllScalars 1400s [ OK ] PowTest.IntTensorPowAllScalars (7 ms) 1400s [ RUN ] PowTest.LongTensorPowAllScalars 1400s [ OK ] PowTest.LongTensorPowAllScalars (7 ms) 1400s [ RUN ] PowTest.FloatTensorPowAllScalars 1400s [ OK ] PowTest.FloatTensorPowAllScalars (9 ms) 1400s [ RUN ] PowTest.DoubleTensorPowAllScalars 1400s [ OK ] PowTest.DoubleTensorPowAllScalars (5 ms) 1400s [ RUN ] PowTest.IntScalarPowAllTensors 1400s [ OK ] PowTest.IntScalarPowAllTensors (2 ms) 1400s [ RUN ] PowTest.LongScalarPowAllTensors 1400s [ OK ] PowTest.LongScalarPowAllTensors (1 ms) 1400s [ RUN ] PowTest.FloatScalarPowAllTensors 1400s [ OK ] PowTest.FloatScalarPowAllTensors (1 ms) 1400s [ RUN ] PowTest.DoubleScalarPowAllTensors 1400s [ OK ] PowTest.DoubleScalarPowAllTensors (0 ms) 1400s [ RUN ] PowTest.IntTensorPowIntTensor 1400s [ OK ] PowTest.IntTensorPowIntTensor (0 ms) 1400s [ RUN ] PowTest.LongTensorPowLongTensor 1400s [ OK ] PowTest.LongTensorPowLongTensor (0 ms) 1400s [ RUN ] PowTest.FloatTensorPowFloatTensor 1400s [ OK ] PowTest.FloatTensorPowFloatTensor (0 ms) 1400s [ RUN ] PowTest.DoubleTensorPowDoubleTensor 1400s [ OK ] PowTest.DoubleTensorPowDoubleTensor (0 ms) 1400s [ RUN ] PowTest.TestIntegralPow 1400s [ OK ] PowTest.TestIntegralPow (0 ms) 1400s [----------] 13 tests from PowTest (39 ms total) 1400s 1400s [----------] Global test environment tear-down 1400s [==========] 13 tests from 1 test suite ran. (39 ms total) 1400s [ PASSED ] 13 tests. 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1400s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1400s autopkgtest: DBG: testbed command exited with code 0 1400s autopkgtest [08:33:17]: test 88_of_104__cpptest__pow_test: -----------------------] 1400s autopkgtest: DBG: testbed executing test finished with exit status 0 1400s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/88_of_104__cpptest__pow_test-stdout 1400s autopkgtest: DBG: got reply from testbed: ok 1400s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/88_of_104__cpptest__pow_test-stderr 1401s autopkgtest: DBG: got reply from testbed: ok 1401s 88_of_104__cpptest__pow_test PASS 1401s autopkgtest [08:33:18]: test 88_of_104__cpptest__pow_test: - - - - - - - - - - results - - - - - - - - - - 1401s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1401s autopkgtest: DBG: got reply from testbed: ok 1401s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/88_of_104__cpptest__pow_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1401s autopkgtest: DBG: testbed command exited with code 0 1401s autopkgtest [08:33:18]: test 89_of_104__cpptest__quantized_test: preparing testbed 1401s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1401s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1401s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1401s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1401s autopkgtest: DBG: can use apt-get on testbed: True 1401s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1401s Reading package lists... 1401s Building dependency tree... 1401s Reading state information... 1401s Starting pkgProblemResolver with broken count: 0 1401s Starting 2 pkgProblemResolver with broken count: 0 1401s Done 1402s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1402s autopkgtest: DBG: testbed command exited with code 0 1402s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1402s autopkgtest: DBG: testbed command exited with code 0 1402s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1402s autopkgtest: DBG: testbed command exited with code 0 1402s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-packages.all"], kind short, sout raw, serr pipe, env [] 1402s autopkgtest: DBG: testbed command exited with code 0 1402s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/89_of_104__cpptest__quantized_test-packages.all 1402s autopkgtest: DBG: got reply from testbed: ok 1402s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1402s autopkgtest: DBG: testbed command exited with code 0 1402s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1402s autopkgtest [08:33:19]: test 89_of_104__cpptest__quantized_test: /usr/lib/libtorch-test/quantized_test 1402s autopkgtest [08:33:19]: test 89_of_104__cpptest__quantized_test: [----------------------- 1402s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/89_of_104__cpptest__quantized_test-stderr --stdout=/tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/quantized_test"], kind test, sout raw, serr raw, env [] 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-artifacts 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stderr 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stdout 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/quantized_test 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.r9lvmYFWQr/out to stdout and file: /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stdout 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.r9lvmYFWQr/err to standard error and file: /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stdout 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15478 to /tmp/autopkgtest_script_pid 1403s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1403s [==========] Running 9 tests from 1 test suite. 1403s [----------] Global test environment set-up. 1403s [----------] 9 tests from TestQTensor 1403s [ RUN ] TestQTensor.QuantDequantAPIs 1403s [ OK ] TestQTensor.QuantDequantAPIs (0 ms) 1403s [ RUN ] TestQTensor.RoundingMode 1403s [ OK ] TestQTensor.RoundingMode (0 ms) 1403s [ RUN ] TestQTensor.Item 1403s [ OK ] TestQTensor.Item (0 ms) 1403s [ RUN ] TestQTensor.EmptyQuantized 1403s [ OK ] TestQTensor.EmptyQuantized (0 ms) 1403s [ RUN ] TestQTensor.EmptyPerchannelQuantized 1403s [ OK ] TestQTensor.EmptyPerchannelQuantized (0 ms) 1403s [ RUN ] TestQTensor.QuantizePerChannel4d 1403s [ OK ] TestQTensor.QuantizePerChannel4d (0 ms) 1403s [ RUN ] TestQTensor.QuantizePerChannel4dChannelsLast 1403s [ OK ] TestQTensor.QuantizePerChannel4dChannelsLast (9 ms) 1403s [ RUN ] TestQTensor.FromBlobQuantizedPerTensor 1403s [ OK ] TestQTensor.FromBlobQuantizedPerTensor (0 ms) 1403s [ RUN ] TestQTensor.FromBlobQuantizedPerChannel 1403s [ OK ] TestQTensor.FromBlobQuantizedPerChannel (0 ms) 1403s [----------] 9 tests from TestQTensor (10 ms total) 1403s 1403s [----------] Global test environment tear-down 1403s [==========] 9 tests from 1 test suite ran. (10 ms total) 1403s [ PASSED ] 9 tests. 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1403s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1403s autopkgtest: DBG: testbed command exited with code 0 1403s autopkgtest [08:33:20]: test 89_of_104__cpptest__quantized_test: -----------------------] 1403s autopkgtest: DBG: testbed executing test finished with exit status 0 1403s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/89_of_104__cpptest__quantized_test-stdout 1403s autopkgtest: DBG: got reply from testbed: ok 1403s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/89_of_104__cpptest__quantized_test-stderr 1403s autopkgtest: DBG: got reply from testbed: ok 1404s autopkgtest [08:33:21]: test 89_of_104__cpptest__quantized_test: - - - - - - - - - - results - - - - - - - - - - 1404s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1404s 89_of_104__cpptest__quantized_test PASS 1404s autopkgtest: DBG: got reply from testbed: ok 1404s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/89_of_104__cpptest__quantized_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1404s autopkgtest: DBG: testbed command exited with code 0 1404s autopkgtest [08:33:21]: test 90_of_104__cpptest__reduce_ops_test: preparing testbed 1404s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1404s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1404s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1404s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1404s autopkgtest: DBG: can use apt-get on testbed: True 1404s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1404s Reading package lists... 1404s Building dependency tree... 1404s Reading state information... 1404s Starting pkgProblemResolver with broken count: 0 1404s Starting 2 pkgProblemResolver with broken count: 0 1404s Done 1405s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1405s autopkgtest: DBG: testbed command exited with code 0 1405s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1405s autopkgtest: DBG: testbed command exited with code 0 1405s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1405s autopkgtest: DBG: testbed command exited with code 0 1405s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-packages.all"], kind short, sout raw, serr pipe, env [] 1405s autopkgtest: DBG: testbed command exited with code 0 1405s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/90_of_104__cpptest__reduce_ops_test-packages.all 1405s autopkgtest: DBG: got reply from testbed: ok 1405s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1405s autopkgtest: DBG: testbed command exited with code 0 1405s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1405s autopkgtest [08:33:22]: test 90_of_104__cpptest__reduce_ops_test: /usr/lib/libtorch-test/reduce_ops_test 1405s autopkgtest [08:33:22]: test 90_of_104__cpptest__reduce_ops_test: [----------------------- 1405s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/90_of_104__cpptest__reduce_ops_test-stderr --stdout=/tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/reduce_ops_test"], kind test, sout raw, serr raw, env [] 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-artifacts 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stderr 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stdout 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/reduce_ops_test 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ngq2tUTMCU/out to stdout and file: /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stdout 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ngq2tUTMCU/err to standard error and file: /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stdout 1405s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15631 to /tmp/autopkgtest_script_pid 1406s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1406s [==========] Running 1 test from 1 test suite. 1406s [----------] Global test environment set-up. 1406s [----------] 1 test from ReduceOpsTest 1406s [ RUN ] ReduceOpsTest.MaxValuesAndMinValues 1406s [ OK ] ReduceOpsTest.MaxValuesAndMinValues (0 ms) 1406s [----------] 1 test from ReduceOpsTest (0 ms total) 1406s 1406s [----------] Global test environment tear-down 1406s [==========] 1 test from 1 test suite ran. (0 ms total) 1406s [ PASSED ] 1 test. 1406s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1406s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1406s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1406s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1406s autopkgtest: DBG: testbed command exited with code 0 1406s autopkgtest [08:33:23]: test 90_of_104__cpptest__reduce_ops_test: -----------------------] 1406s autopkgtest: DBG: testbed executing test finished with exit status 0 1406s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/90_of_104__cpptest__reduce_ops_test-stdout 1406s autopkgtest: DBG: got reply from testbed: ok 1406s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/90_of_104__cpptest__reduce_ops_test-stderr 1406s autopkgtest: DBG: got reply from testbed: ok 1407s 90_of_104__cpptest__reduce_ops_test PASS 1407s autopkgtest [08:33:24]: test 90_of_104__cpptest__reduce_ops_test: - - - - - - - - - - results - - - - - - - - - - 1407s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1407s autopkgtest: DBG: got reply from testbed: ok 1407s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/90_of_104__cpptest__reduce_ops_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1407s autopkgtest: DBG: testbed command exited with code 0 1407s autopkgtest [08:33:24]: test 91_of_104__cpptest__reportMemoryUsage_test: preparing testbed 1407s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1407s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1407s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1407s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1407s autopkgtest: DBG: can use apt-get on testbed: True 1407s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1407s Reading package lists... 1407s Building dependency tree... 1407s Reading state information... 1407s Starting pkgProblemResolver with broken count: 0 1407s Starting 2 pkgProblemResolver with broken count: 0 1407s Done 1407s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1407s autopkgtest: DBG: testbed command exited with code 0 1407s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1408s autopkgtest: DBG: testbed command exited with code 0 1408s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1408s autopkgtest: DBG: testbed command exited with code 0 1408s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-packages.all"], kind short, sout raw, serr pipe, env [] 1408s autopkgtest: DBG: testbed command exited with code 0 1408s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/91_of_104__cpptest__reportMemoryUsage_test-packages.all 1408s autopkgtest: DBG: got reply from testbed: ok 1408s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1408s autopkgtest: DBG: testbed command exited with code 0 1408s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1408s autopkgtest [08:33:25]: test 91_of_104__cpptest__reportMemoryUsage_test: /usr/lib/libtorch-test/reportMemoryUsage_test 1408s autopkgtest [08:33:25]: test 91_of_104__cpptest__reportMemoryUsage_test: [----------------------- 1408s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stderr --stdout=/tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/reportMemoryUsage_test"], kind test, sout raw, serr raw, env [] 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-artifacts 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stderr 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stdout 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/reportMemoryUsage_test 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.SIzMXSq3cs/out to stdout and file: /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stdout 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.SIzMXSq3cs/err to standard error and file: /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stdout 1408s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15784 to /tmp/autopkgtest_script_pid 1409s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1409s [==========] Running 1 test from 1 test suite. 1409s [----------] Global test environment set-up. 1409s [----------] 1 test from DefaultCPUAllocator 1409s [ RUN ] DefaultCPUAllocator.check_reporter 1409s [ OK ] DefaultCPUAllocator.check_reporter (0 ms) 1409s [----------] 1 test from DefaultCPUAllocator (0 ms total) 1409s 1409s [----------] Global test environment tear-down 1409s [==========] 1 test from 1 test suite ran. (0 ms total) 1409s [ PASSED ] 1 test. 1409s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1409s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1409s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1409s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1409s autopkgtest: DBG: testbed command exited with code 0 1409s autopkgtest [08:33:26]: test 91_of_104__cpptest__reportMemoryUsage_test: -----------------------] 1409s autopkgtest: DBG: testbed executing test finished with exit status 0 1409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/91_of_104__cpptest__reportMemoryUsage_test-stdout 1409s autopkgtest: DBG: got reply from testbed: ok 1409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/91_of_104__cpptest__reportMemoryUsage_test-stderr 1409s autopkgtest: DBG: got reply from testbed: ok 1409s 91_of_104__cpptest__reportMemoryUsage_test PASS 1409s autopkgtest [08:33:26]: test 91_of_104__cpptest__reportMemoryUsage_test: - - - - - - - - - - results - - - - - - - - - - 1409s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1410s autopkgtest: DBG: got reply from testbed: ok 1410s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/91_of_104__cpptest__reportMemoryUsage_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1410s autopkgtest: DBG: testbed command exited with code 0 1410s autopkgtest [08:33:27]: test 92_of_104__cpptest__scalar_tensor_test: preparing testbed 1410s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1410s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1410s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1410s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1410s autopkgtest: DBG: can use apt-get on testbed: True 1410s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1410s Reading package lists... 1410s Building dependency tree... 1410s Reading state information... 1410s Starting pkgProblemResolver with broken count: 0 1410s Starting 2 pkgProblemResolver with broken count: 0 1410s Done 1410s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1410s autopkgtest: DBG: testbed command exited with code 0 1410s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1411s autopkgtest: DBG: testbed command exited with code 0 1411s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1411s autopkgtest: DBG: testbed command exited with code 0 1411s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1411s autopkgtest: DBG: testbed command exited with code 0 1411s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/92_of_104__cpptest__scalar_tensor_test-packages.all 1411s autopkgtest: DBG: got reply from testbed: ok 1411s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1411s autopkgtest: DBG: testbed command exited with code 0 1411s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1411s autopkgtest [08:33:28]: test 92_of_104__cpptest__scalar_tensor_test: /usr/lib/libtorch-test/scalar_tensor_test 1411s autopkgtest [08:33:28]: test 92_of_104__cpptest__scalar_tensor_test: [----------------------- 1411s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/92_of_104__cpptest__scalar_tensor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/scalar_tensor_test"], kind test, sout raw, serr raw, env [] 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-artifacts 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stderr 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stdout 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/scalar_tensor_test 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.msWoeSiG6u/out to stdout and file: /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stdout 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.msWoeSiG6u/err to standard error and file: /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stdout 1411s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 15937 to /tmp/autopkgtest_script_pid 1412s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1412s [==========] Running 3 tests from 1 test suite. 1412s [----------] Global test environment set-up. 1412s [----------] 3 tests from TestScalarTensor 1412s [ RUN ] TestScalarTensor.TestScalarTensorCPU 1412s [ OK ] TestScalarTensor.TestScalarTensorCPU (3 ms) 1412s [ RUN ] TestScalarTensor.TestScalarTensorCUDA 1412s [ OK ] TestScalarTensor.TestScalarTensorCUDA (0 ms) 1412s [ RUN ] TestScalarTensor.TestScalarTensorMPS 1412s [ OK ] TestScalarTensor.TestScalarTensorMPS (0 ms) 1412s [----------] 3 tests from TestScalarTensor (3 ms total) 1412s 1412s [----------] Global test environment tear-down 1412s [==========] 3 tests from 1 test suite ran. (3 ms total) 1412s [ PASSED ] 3 tests. 1412s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1412s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1412s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1412s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1412s autopkgtest: DBG: testbed command exited with code 0 1412s autopkgtest [08:33:29]: test 92_of_104__cpptest__scalar_tensor_test: -----------------------] 1412s autopkgtest: DBG: testbed executing test finished with exit status 0 1412s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/92_of_104__cpptest__scalar_tensor_test-stdout 1412s autopkgtest: DBG: got reply from testbed: ok 1412s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/92_of_104__cpptest__scalar_tensor_test-stderr 1412s autopkgtest: DBG: got reply from testbed: ok 1412s 92_of_104__cpptest__scalar_tensor_test PASS 1412s autopkgtest [08:33:29]: test 92_of_104__cpptest__scalar_tensor_test: - - - - - - - - - - results - - - - - - - - - - 1412s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1413s autopkgtest: DBG: got reply from testbed: ok 1413s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/92_of_104__cpptest__scalar_tensor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1413s autopkgtest: DBG: testbed command exited with code 0 1413s autopkgtest [08:33:30]: test 93_of_104__cpptest__scalar_test: preparing testbed 1413s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1413s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1413s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1413s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1413s autopkgtest: DBG: can use apt-get on testbed: True 1413s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1413s Reading package lists... 1413s Building dependency tree... 1413s Reading state information... 1413s Starting pkgProblemResolver with broken count: 0 1413s Starting 2 pkgProblemResolver with broken count: 0 1413s Done 1413s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1413s autopkgtest: DBG: testbed command exited with code 0 1413s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1414s autopkgtest: DBG: testbed command exited with code 0 1414s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1414s autopkgtest: DBG: testbed command exited with code 0 1414s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-packages.all"], kind short, sout raw, serr pipe, env [] 1414s autopkgtest: DBG: testbed command exited with code 0 1414s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/93_of_104__cpptest__scalar_test-packages.all 1414s autopkgtest: DBG: got reply from testbed: ok 1414s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1414s autopkgtest: DBG: testbed command exited with code 0 1414s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1414s autopkgtest [08:33:31]: test 93_of_104__cpptest__scalar_test: /usr/lib/libtorch-test/scalar_test 1414s autopkgtest [08:33:31]: test 93_of_104__cpptest__scalar_test: [----------------------- 1414s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/93_of_104__cpptest__scalar_test-stderr --stdout=/tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/scalar_test"], kind test, sout raw, serr raw, env [] 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-artifacts 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stderr 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stdout 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/scalar_test 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.YuxiVb3ZAJ/out to stdout and file: /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stdout 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.YuxiVb3ZAJ/err to standard error and file: /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stdout 1414s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 16090 to /tmp/autopkgtest_script_pid 1415s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1415s [==========] Running 4 tests from 1 test suite. 1415s [----------] Global test environment set-up. 1415s [----------] 4 tests from TestScalar 1415s [ RUN ] TestScalar.TestScalar 1415s H2: 3 257 3 1 1415s [ OK ] TestScalar.TestScalar (0 ms) 1415s [ RUN ] TestScalar.TestConj 1415s [ OK ] TestScalar.TestConj (0 ms) 1415s [ RUN ] TestScalar.TestEqual 1415s [ OK ] TestScalar.TestEqual (0 ms) 1415s [ RUN ] TestScalar.TestFormatting 1415s [ OK ] TestScalar.TestFormatting (0 ms) 1415s [----------] 4 tests from TestScalar (0 ms total) 1415s 1415s [----------] Global test environment tear-down 1415s [==========] 4 tests from 1 test suite ran. (0 ms total) 1415s [ PASSED ] 4 tests. 1415s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1415s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1415s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1415s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1415s autopkgtest: DBG: testbed command exited with code 0 1415s autopkgtest [08:33:32]: test 93_of_104__cpptest__scalar_test: -----------------------] 1415s autopkgtest: DBG: testbed executing test finished with exit status 0 1415s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/93_of_104__cpptest__scalar_test-stdout 1415s autopkgtest: DBG: got reply from testbed: ok 1415s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/93_of_104__cpptest__scalar_test-stderr 1415s autopkgtest: DBG: got reply from testbed: ok 1415s 93_of_104__cpptest__scalar_test PASS 1415s autopkgtest [08:33:32]: test 93_of_104__cpptest__scalar_test: - - - - - - - - - - results - - - - - - - - - - 1415s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1415s autopkgtest: DBG: got reply from testbed: ok 1415s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/93_of_104__cpptest__scalar_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1416s autopkgtest: DBG: testbed command exited with code 0 1416s autopkgtest [08:33:33]: test 94_of_104__cpptest__stride_properties_test: preparing testbed 1416s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1416s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1416s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1416s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1416s autopkgtest: DBG: can use apt-get on testbed: True 1416s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1416s Reading package lists... 1416s Building dependency tree... 1416s Reading state information... 1416s Starting pkgProblemResolver with broken count: 0 1416s Starting 2 pkgProblemResolver with broken count: 0 1416s Done 1416s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1416s autopkgtest: DBG: testbed command exited with code 0 1416s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1416s autopkgtest: DBG: testbed command exited with code 0 1416s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1417s autopkgtest: DBG: testbed command exited with code 0 1417s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-packages.all"], kind short, sout raw, serr pipe, env [] 1417s autopkgtest: DBG: testbed command exited with code 0 1417s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/94_of_104__cpptest__stride_properties_test-packages.all 1417s autopkgtest: DBG: got reply from testbed: ok 1417s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1417s autopkgtest: DBG: testbed command exited with code 0 1417s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1417s autopkgtest [08:33:34]: test 94_of_104__cpptest__stride_properties_test: /usr/lib/libtorch-test/stride_properties_test 1417s autopkgtest [08:33:34]: test 94_of_104__cpptest__stride_properties_test: [----------------------- 1417s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/94_of_104__cpptest__stride_properties_test-stderr --stdout=/tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/stride_properties_test"], kind test, sout raw, serr raw, env [] 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-artifacts 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stderr 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stdout 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/stride_properties_test 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.lbgfUKGQG4/out to stdout and file: /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stdout 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.lbgfUKGQG4/err to standard error and file: /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stdout 1417s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 16243 to /tmp/autopkgtest_script_pid 1417s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1417s [==========] Running 4 tests from 1 test suite. 1417s [----------] Global test environment set-up. 1417s [----------] 4 tests from StridePropertiesTest 1417s [ RUN ] StridePropertiesTest.StrideIndicesTest 1417s [ OK ] StridePropertiesTest.StrideIndicesTest (0 ms) 1417s [ RUN ] StridePropertiesTest.ZeroStrideIndicesEagerConsistencyTest 1417s [ OK ] StridePropertiesTest.ZeroStrideIndicesEagerConsistencyTest (0 ms) 1417s [ RUN ] StridePropertiesTest.ExpandedStrideIndicesTest 1417s [ OK ] StridePropertiesTest.ExpandedStrideIndicesTest (0 ms) 1417s [ RUN ] StridePropertiesTest.SlicedStrideIndicesTest 1417s [ OK ] StridePropertiesTest.SlicedStrideIndicesTest (0 ms) 1417s [----------] 4 tests from StridePropertiesTest (0 ms total) 1417s 1417s [----------] Global test environment tear-down 1417s [==========] 4 tests from 1 test suite ran. (0 ms total) 1417s [ PASSED ] 4 tests. 1418s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1418s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1418s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1418s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1418s autopkgtest: DBG: testbed command exited with code 0 1418s autopkgtest [08:33:35]: test 94_of_104__cpptest__stride_properties_test: -----------------------] 1418s autopkgtest: DBG: testbed executing test finished with exit status 0 1418s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/94_of_104__cpptest__stride_properties_test-stdout 1418s autopkgtest: DBG: got reply from testbed: ok 1418s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/94_of_104__cpptest__stride_properties_test-stderr 1418s autopkgtest: DBG: got reply from testbed: ok 1418s 94_of_104__cpptest__stride_properties_test PASS 1418s autopkgtest [08:33:35]: test 94_of_104__cpptest__stride_properties_test: - - - - - - - - - - results - - - - - - - - - - 1418s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1418s autopkgtest: DBG: got reply from testbed: ok 1418s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/94_of_104__cpptest__stride_properties_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1419s autopkgtest: DBG: testbed command exited with code 0 1419s autopkgtest [08:33:36]: test 95_of_104__cpptest__tensor_iterator_test: preparing testbed 1419s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1419s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1419s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1419s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1419s autopkgtest: DBG: can use apt-get on testbed: True 1419s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1419s Reading package lists... 1419s Building dependency tree... 1419s Reading state information... 1419s Starting pkgProblemResolver with broken count: 0 1419s Starting 2 pkgProblemResolver with broken count: 0 1419s Done 1419s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1419s autopkgtest: DBG: testbed command exited with code 0 1419s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1419s autopkgtest: DBG: testbed command exited with code 0 1419s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1420s autopkgtest: DBG: testbed command exited with code 0 1420s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-packages.all"], kind short, sout raw, serr pipe, env [] 1420s autopkgtest: DBG: testbed command exited with code 0 1420s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/95_of_104__cpptest__tensor_iterator_test-packages.all 1420s autopkgtest: DBG: got reply from testbed: ok 1420s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1420s autopkgtest: DBG: testbed command exited with code 0 1420s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1420s autopkgtest [08:33:37]: test 95_of_104__cpptest__tensor_iterator_test: /usr/lib/libtorch-test/tensor_iterator_test 1420s autopkgtest [08:33:37]: test 95_of_104__cpptest__tensor_iterator_test: [----------------------- 1420s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/95_of_104__cpptest__tensor_iterator_test-stderr --stdout=/tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/tensor_iterator_test"], kind test, sout raw, serr raw, env [] 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-artifacts 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stderr 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stdout 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/tensor_iterator_test 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.iSUH1ul3c2/out to stdout and file: /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stdout 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.iSUH1ul3c2/err to standard error and file: /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stdout 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 16396 to /tmp/autopkgtest_script_pid 1420s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1420s [==========] Running 66 tests from 1 test suite. 1420s [----------] Global test environment set-up. 1420s [----------] 66 tests from TensorIteratorTest 1420s [ RUN ] TensorIteratorTest.CPUScalar 1420s [ OK ] TensorIteratorTest.CPUScalar (0 ms) 1420s [ RUN ] TensorIteratorTest.CPUScalarInputs 1420s [ OK ] TensorIteratorTest.CPUScalarInputs (0 ms) 1420s [ RUN ] TensorIteratorTest.MixedDevices 1420s [ OK ] TensorIteratorTest.MixedDevices (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Byte 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Char 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Short 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Int 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Long 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Float 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnary_Double 1420s [ OK ] TensorIteratorTest.SerialLoopUnary_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Byte 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Char 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Short 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Int 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Long 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Float 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinary_Double 1420s [ OK ] TensorIteratorTest.SerialLoopBinary_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Byte 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Char 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Short 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Int 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Long 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Float 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPointwise_Double 1420s [ OK ] TensorIteratorTest.SerialLoopPointwise_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Byte 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Char 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Short 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Int 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Long 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Float 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopUnaryNoOutput_Double 1420s [ OK ] TensorIteratorTest.SerialLoopUnaryNoOutput_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Byte 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Char 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Short 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Int 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Long 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Float 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopBinaryNoOutput_Double 1420s [ OK ] TensorIteratorTest.SerialLoopBinaryNoOutput_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Byte 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Char 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Short 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Int 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Long 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Float 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Double 1420s [ OK ] TensorIteratorTest.SerialLoopPoinwiseNoOutput_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Byte 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Char 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Short 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Int 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Long 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Float 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Double 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Double (0 ms) 1420s [ RUN ] TensorIteratorTest.ComparisonLoopBinary_Bool 1420s [ OK ] TensorIteratorTest.ComparisonLoopBinary_Bool (0 ms) 1420s [ RUN ] TensorIteratorTest.SerialLoopSingleThread 1420s [ OK ] TensorIteratorTest.SerialLoopSingleThread (0 ms) 1420s [ RUN ] TensorIteratorTest.InputDType 1420s [ OK ] TensorIteratorTest.InputDType (0 ms) 1420s [ RUN ] TensorIteratorTest.ComputeCommonDTypeInputOnly 1420s [ OK ] TensorIteratorTest.ComputeCommonDTypeInputOnly (0 ms) 1420s [ RUN ] TensorIteratorTest.DoNotComputeCommonDTypeInputOnly 1420s [ OK ] TensorIteratorTest.DoNotComputeCommonDTypeInputOnly (0 ms) 1420s [ RUN ] TensorIteratorTest.FailNonPromotingBinaryOp 1420s [ OK ] TensorIteratorTest.FailNonPromotingBinaryOp (0 ms) 1420s [ RUN ] TensorIteratorTest.ForEachConstInput 1420s [ OK ] TensorIteratorTest.ForEachConstInput (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Byte 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Byte (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Char 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Char (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Short 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Short (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Int 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Int (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Long 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Long (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Float 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Float (0 ms) 1420s [ RUN ] TensorIteratorTest.CpuKernelMultipleOutputs_Double 1420s [ OK ] TensorIteratorTest.CpuKernelMultipleOutputs_Double (0 ms) 1420s [----------] 66 tests from TensorIteratorTest (2 ms total) 1420s 1420s [----------] Global test environment tear-down 1420s [==========] 66 tests from 1 test suite ran. (2 ms total) 1420s [ PASSED ] 66 tests. 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1420s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1420s autopkgtest: DBG: testbed command exited with code 0 1421s autopkgtest [08:33:38]: test 95_of_104__cpptest__tensor_iterator_test: -----------------------] 1421s autopkgtest: DBG: testbed executing test finished with exit status 0 1421s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/95_of_104__cpptest__tensor_iterator_test-stdout 1421s autopkgtest: DBG: got reply from testbed: ok 1421s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/95_of_104__cpptest__tensor_iterator_test-stderr 1421s autopkgtest: DBG: got reply from testbed: ok 1421s 95_of_104__cpptest__tensor_iterator_test PASS 1421s autopkgtest [08:33:38]: test 95_of_104__cpptest__tensor_iterator_test: - - - - - - - - - - results - - - - - - - - - - 1421s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1421s autopkgtest: DBG: got reply from testbed: ok 1421s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/95_of_104__cpptest__tensor_iterator_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1421s autopkgtest: DBG: testbed command exited with code 0 1421s autopkgtest [08:33:38]: test 96_of_104__cpptest__test_parallel: preparing testbed 1421s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1421s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1421s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1421s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1421s autopkgtest: DBG: can use apt-get on testbed: True 1421s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1422s Reading package lists... 1422s Building dependency tree... 1422s Reading state information... 1422s Starting pkgProblemResolver with broken count: 0 1422s Starting 2 pkgProblemResolver with broken count: 0 1422s Done 1422s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1422s autopkgtest: DBG: testbed command exited with code 0 1422s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1422s autopkgtest: DBG: testbed command exited with code 0 1422s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1422s autopkgtest: DBG: testbed command exited with code 0 1422s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-packages.all"], kind short, sout raw, serr pipe, env [] 1423s autopkgtest: DBG: testbed command exited with code 0 1423s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-packages.all /tmp/autopkgtest-work.z8qos2ju/out/96_of_104__cpptest__test_parallel-packages.all 1423s autopkgtest: DBG: got reply from testbed: ok 1423s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1423s autopkgtest: DBG: testbed command exited with code 0 1423s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1423s autopkgtest [08:33:40]: test 96_of_104__cpptest__test_parallel: /usr/lib/libtorch-test/test_parallel 1423s autopkgtest [08:33:40]: test 96_of_104__cpptest__test_parallel: [----------------------- 1423s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/96_of_104__cpptest__test_parallel-stderr --stdout=/tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/test_parallel"], kind test, sout raw, serr raw, env [] 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-artifacts 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stderr 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stdout 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/test_parallel 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.euQ6leRA07/out to stdout and file: /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stdout 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.euQ6leRA07/err to standard error and file: /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stdout 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 16550 to /tmp/autopkgtest_script_pid 1423s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1423s [==========] Running 5 tests from 1 test suite. 1423s [----------] Global test environment set-up. 1423s [----------] 5 tests from TestParallel 1423s [ RUN ] TestParallel.TestParallel 1423s [ OK ] TestParallel.TestParallel (0 ms) 1423s [ RUN ] TestParallel.NestedParallel 1423s [ OK ] TestParallel.NestedParallel (2 ms) 1423s [ RUN ] TestParallel.NestedParallelThreadId 1423s [ OK ] TestParallel.NestedParallelThreadId (0 ms) 1423s [ RUN ] TestParallel.Exceptions 1423s [ OK ] TestParallel.Exceptions (0 ms) 1423s [ RUN ] TestParallel.IntraOpLaunchFuture 1423s [ OK ] TestParallel.IntraOpLaunchFuture (0 ms) 1423s [----------] 5 tests from TestParallel (3 ms total) 1423s 1423s [----------] Global test environment tear-down 1423s [==========] 5 tests from 1 test suite ran. (3 ms total) 1423s [ PASSED ] 5 tests. 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1423s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1423s autopkgtest: DBG: testbed command exited with code 0 1424s autopkgtest [08:33:41]: test 96_of_104__cpptest__test_parallel: -----------------------] 1424s autopkgtest: DBG: testbed executing test finished with exit status 0 1424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stdout /tmp/autopkgtest-work.z8qos2ju/out/96_of_104__cpptest__test_parallel-stdout 1424s autopkgtest: DBG: got reply from testbed: ok 1424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-stderr /tmp/autopkgtest-work.z8qos2ju/out/96_of_104__cpptest__test_parallel-stderr 1424s autopkgtest: DBG: got reply from testbed: ok 1424s autopkgtest [08:33:41]: test 96_of_104__cpptest__test_parallel: - - - - - - - - - - results - - - - - - - - - - 1424s 96_of_104__cpptest__test_parallel PASS 1424s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1424s autopkgtest: DBG: got reply from testbed: ok 1424s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/96_of_104__cpptest__test_parallel-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1424s autopkgtest: DBG: testbed command exited with code 0 1424s autopkgtest [08:33:41]: test 97_of_104__cpptest__thread_init_test: preparing testbed 1424s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1424s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1424s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1424s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1424s autopkgtest: DBG: can use apt-get on testbed: True 1424s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1425s Reading package lists... 1425s Building dependency tree... 1425s Reading state information... 1425s Starting pkgProblemResolver with broken count: 0 1425s Starting 2 pkgProblemResolver with broken count: 0 1425s Done 1425s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1425s autopkgtest: DBG: testbed command exited with code 0 1425s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1425s autopkgtest: DBG: testbed command exited with code 0 1425s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1425s autopkgtest: DBG: testbed command exited with code 0 1425s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-packages.all"], kind short, sout raw, serr pipe, env [] 1426s autopkgtest: DBG: testbed command exited with code 0 1426s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/97_of_104__cpptest__thread_init_test-packages.all 1426s autopkgtest: DBG: got reply from testbed: ok 1426s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1426s autopkgtest: DBG: testbed command exited with code 0 1426s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1426s autopkgtest [08:33:43]: test 97_of_104__cpptest__thread_init_test: /usr/lib/libtorch-test/thread_init_test 1426s autopkgtest [08:33:43]: test 97_of_104__cpptest__thread_init_test: [----------------------- 1426s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/97_of_104__cpptest__thread_init_test-stderr --stdout=/tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/thread_init_test"], kind test, sout raw, serr raw, env [] 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-artifacts 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stderr 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stdout 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/thread_init_test 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4UFcMsTeVl/out to stdout and file: /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stdout 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.4UFcMsTeVl/err to standard error and file: /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stdout 1426s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 16704 to /tmp/autopkgtest_script_pid 1427s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1427s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1427s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1427s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1427s autopkgtest: DBG: testbed command exited with code 0 1428s autopkgtest [08:33:45]: test 97_of_104__cpptest__thread_init_test: -----------------------] 1428s autopkgtest: DBG: testbed executing test finished with exit status 0 1428s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/97_of_104__cpptest__thread_init_test-stdout 1428s autopkgtest: DBG: got reply from testbed: ok 1428s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/97_of_104__cpptest__thread_init_test-stderr 1428s autopkgtest: DBG: got reply from testbed: ok 1428s 97_of_104__cpptest__thread_init_test PASS 1428s autopkgtest [08:33:45]: test 97_of_104__cpptest__thread_init_test: - - - - - - - - - - results - - - - - - - - - - 1428s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1428s autopkgtest: DBG: got reply from testbed: ok 1428s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/97_of_104__cpptest__thread_init_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1428s autopkgtest: DBG: testbed command exited with code 0 1428s autopkgtest [08:33:45]: test 98_of_104__cpptest__type_ptr_test: preparing testbed 1428s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1428s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1428s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1428s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1428s autopkgtest: DBG: can use apt-get on testbed: True 1428s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1429s Reading package lists... 1429s Building dependency tree... 1429s Reading state information... 1429s Starting pkgProblemResolver with broken count: 0 1429s Starting 2 pkgProblemResolver with broken count: 0 1429s Done 1429s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1429s autopkgtest: DBG: testbed command exited with code 0 1429s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1429s autopkgtest: DBG: testbed command exited with code 0 1429s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1429s autopkgtest: DBG: testbed command exited with code 0 1429s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-packages.all"], kind short, sout raw, serr pipe, env [] 1429s autopkgtest: DBG: testbed command exited with code 0 1429s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/98_of_104__cpptest__type_ptr_test-packages.all 1430s autopkgtest: DBG: got reply from testbed: ok 1430s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1430s autopkgtest: DBG: testbed command exited with code 0 1430s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1430s autopkgtest [08:33:47]: test 98_of_104__cpptest__type_ptr_test: /usr/lib/libtorch-test/type_ptr_test 1430s autopkgtest [08:33:47]: test 98_of_104__cpptest__type_ptr_test: [----------------------- 1430s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/98_of_104__cpptest__type_ptr_test-stderr --stdout=/tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/type_ptr_test"], kind test, sout raw, serr raw, env [] 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-artifacts 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stderr 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stdout 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/type_ptr_test 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.sqqpx5uQjh/out to stdout and file: /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stdout 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.sqqpx5uQjh/err to standard error and file: /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stdout 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 16864 to /tmp/autopkgtest_script_pid 1430s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1430s [==========] Running 4 tests from 1 test suite. 1430s [----------] Global test environment set-up. 1430s [----------] 4 tests from SingletonOrSharedTypePtr 1430s [ RUN ] SingletonOrSharedTypePtr.Empty 1430s [ OK ] SingletonOrSharedTypePtr.Empty (0 ms) 1430s [ RUN ] SingletonOrSharedTypePtr.NonEmpty 1430s [ OK ] SingletonOrSharedTypePtr.NonEmpty (0 ms) 1430s [ RUN ] SingletonOrSharedTypePtr.Comparison 1430s [ OK ] SingletonOrSharedTypePtr.Comparison (0 ms) 1430s [ RUN ] SingletonOrSharedTypePtr.SingletonComparison 1430s [ OK ] SingletonOrSharedTypePtr.SingletonComparison (0 ms) 1430s [----------] 4 tests from SingletonOrSharedTypePtr (0 ms total) 1430s 1430s [----------] Global test environment tear-down 1430s [==========] 4 tests from 1 test suite ran. (0 ms total) 1430s [ PASSED ] 4 tests. 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1430s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1430s autopkgtest: DBG: testbed command exited with code 0 1430s autopkgtest [08:33:47]: test 98_of_104__cpptest__type_ptr_test: -----------------------] 1430s autopkgtest: DBG: testbed executing test finished with exit status 0 1430s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/98_of_104__cpptest__type_ptr_test-stdout 1431s autopkgtest: DBG: got reply from testbed: ok 1431s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/98_of_104__cpptest__type_ptr_test-stderr 1431s autopkgtest: DBG: got reply from testbed: ok 1431s 98_of_104__cpptest__type_ptr_test PASS 1431s autopkgtest [08:33:48]: test 98_of_104__cpptest__type_ptr_test: - - - - - - - - - - results - - - - - - - - - - 1431s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1431s autopkgtest: DBG: got reply from testbed: ok 1431s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/98_of_104__cpptest__type_ptr_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1431s autopkgtest: DBG: testbed command exited with code 0 1431s autopkgtest [08:33:48]: test 99_of_104__cpptest__type_test: preparing testbed 1431s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1431s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1431s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1431s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1431s autopkgtest: DBG: can use apt-get on testbed: True 1431s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1431s Reading package lists... 1432s Building dependency tree... 1432s Reading state information... 1432s Starting pkgProblemResolver with broken count: 0 1432s Starting 2 pkgProblemResolver with broken count: 0 1432s Done 1432s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1432s autopkgtest: DBG: testbed command exited with code 0 1432s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1432s autopkgtest: DBG: testbed command exited with code 0 1432s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1432s autopkgtest: DBG: testbed command exited with code 0 1432s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-packages.all"], kind short, sout raw, serr pipe, env [] 1432s autopkgtest: DBG: testbed command exited with code 0 1432s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/99_of_104__cpptest__type_test-packages.all 1432s autopkgtest: DBG: got reply from testbed: ok 1432s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1433s autopkgtest: DBG: testbed command exited with code 0 1433s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1433s autopkgtest [08:33:50]: test 99_of_104__cpptest__type_test: /usr/lib/libtorch-test/type_test 1433s autopkgtest [08:33:50]: test 99_of_104__cpptest__type_test: [----------------------- 1433s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/99_of_104__cpptest__type_test-stderr --stdout=/tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/type_test"], kind test, sout raw, serr raw, env [] 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-artifacts 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stderr 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stdout 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/type_test 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.fmjH5KxFk7/out to stdout and file: /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stdout 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.fmjH5KxFk7/err to standard error and file: /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stdout 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 17017 to /tmp/autopkgtest_script_pid 1433s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1433s [==========] Running 9 tests from 2 test suites. 1433s [----------] Global test environment set-up. 1433s [----------] 3 tests from TypeCustomPrinter 1433s [ RUN ] TypeCustomPrinter.Basic 1433s [ OK ] TypeCustomPrinter.Basic (0 ms) 1433s [ RUN ] TypeCustomPrinter.ContainedTypes 1433s [ OK ] TypeCustomPrinter.ContainedTypes (0 ms) 1433s [ RUN ] TypeCustomPrinter.NamedTuples 1433s [ OK ] TypeCustomPrinter.NamedTuples (0 ms) 1433s [----------] 3 tests from TypeCustomPrinter (0 ms total) 1433s 1433s [----------] 6 tests from TypeEquality 1433s [ RUN ] TypeEquality.ClassBasic 1433s [ OK ] TypeEquality.ClassBasic (4 ms) 1433s [ RUN ] TypeEquality.ClassInequality 1433s [ OK ] TypeEquality.ClassInequality (0 ms) 1433s [ RUN ] TypeEquality.InterfaceEquality 1433s [ OK ] TypeEquality.InterfaceEquality (0 ms) 1433s [ RUN ] TypeEquality.InterfaceInequality 1433s [ OK ] TypeEquality.InterfaceInequality (0 ms) 1433s [ RUN ] TypeEquality.TupleEquality 1433s [ OK ] TypeEquality.TupleEquality (0 ms) 1433s [ RUN ] TypeEquality.NamedTupleEquality 1433s [ OK ] TypeEquality.NamedTupleEquality (0 ms) 1433s [----------] 6 tests from TypeEquality (4 ms total) 1433s 1433s [----------] Global test environment tear-down 1433s [==========] 9 tests from 2 test suites ran. (4 ms total) 1433s [ PASSED ] 9 tests. 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1433s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1433s autopkgtest: DBG: testbed command exited with code 0 1433s autopkgtest [08:33:50]: test 99_of_104__cpptest__type_test: -----------------------] 1433s autopkgtest: DBG: testbed executing test finished with exit status 0 1433s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/99_of_104__cpptest__type_test-stdout 1434s autopkgtest: DBG: got reply from testbed: ok 1434s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/99_of_104__cpptest__type_test-stderr 1434s autopkgtest: DBG: got reply from testbed: ok 1434s autopkgtest [08:33:51]: test 99_of_104__cpptest__type_test: - - - - - - - - - - results - - - - - - - - - - 1434s 99_of_104__cpptest__type_test PASS 1434s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1434s autopkgtest: DBG: got reply from testbed: ok 1434s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/99_of_104__cpptest__type_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1434s autopkgtest: DBG: testbed command exited with code 0 1434s autopkgtest [08:33:51]: test 100_of_104__cpptest__undefined_tensor_test: preparing testbed 1434s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1434s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1434s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1434s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1434s autopkgtest: DBG: can use apt-get on testbed: True 1434s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1434s Reading package lists... 1434s Building dependency tree... 1434s Reading state information... 1435s Starting pkgProblemResolver with broken count: 0 1435s Starting 2 pkgProblemResolver with broken count: 0 1435s Done 1435s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1435s autopkgtest: DBG: testbed command exited with code 0 1435s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1435s autopkgtest: DBG: testbed command exited with code 0 1435s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1435s autopkgtest: DBG: testbed command exited with code 0 1435s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1435s autopkgtest: DBG: testbed command exited with code 0 1435s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/100_of_104__cpptest__undefined_tensor_test-packages.all 1435s autopkgtest: DBG: got reply from testbed: ok 1435s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1436s autopkgtest: DBG: testbed command exited with code 0 1436s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1436s autopkgtest [08:33:53]: test 100_of_104__cpptest__undefined_tensor_test: /usr/lib/libtorch-test/undefined_tensor_test 1436s autopkgtest [08:33:53]: test 100_of_104__cpptest__undefined_tensor_test: [----------------------- 1436s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/100_of_104__cpptest__undefined_tensor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/undefined_tensor_test"], kind test, sout raw, serr raw, env [] 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-artifacts 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stderr 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stdout 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/undefined_tensor_test 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.xqwj5BPrkq/out to stdout and file: /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stdout 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.xqwj5BPrkq/err to standard error and file: /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stdout 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 17170 to /tmp/autopkgtest_script_pid 1436s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1436s [==========] Running 1 test from 1 test suite. 1436s [----------] Global test environment set-up. 1436s [----------] 1 test from TestUndefined 1436s [ RUN ] TestUndefined.UndefinedTest 1436s [ OK ] TestUndefined.UndefinedTest (0 ms) 1436s [----------] 1 test from TestUndefined (0 ms total) 1436s 1436s [----------] Global test environment tear-down 1436s [==========] 1 test from 1 test suite ran. (0 ms total) 1436s [ PASSED ] 1 test. 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1436s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1436s autopkgtest: DBG: testbed command exited with code 0 1436s autopkgtest [08:33:53]: test 100_of_104__cpptest__undefined_tensor_test: -----------------------] 1436s autopkgtest: DBG: testbed executing test finished with exit status 0 1436s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/100_of_104__cpptest__undefined_tensor_test-stdout 1436s autopkgtest: DBG: got reply from testbed: ok 1436s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/100_of_104__cpptest__undefined_tensor_test-stderr 1437s autopkgtest: DBG: got reply from testbed: ok 1437s autopkgtest [08:33:54]: test 100_of_104__cpptest__undefined_tensor_test: - - - - - - - - - - results - - - - - - - - - - 1437s 100_of_104__cpptest__undefined_tensor_test PASS 1437s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1437s autopkgtest: DBG: got reply from testbed: ok 1437s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/100_of_104__cpptest__undefined_tensor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1437s autopkgtest: DBG: testbed command exited with code 0 1437s autopkgtest [08:33:54]: test 101_of_104__cpptest__verify_api_visibility: preparing testbed 1437s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1437s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1437s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1437s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1437s autopkgtest: DBG: can use apt-get on testbed: True 1437s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1437s Reading package lists... 1437s Building dependency tree... 1437s Reading state information... 1437s Starting pkgProblemResolver with broken count: 0 1437s Starting 2 pkgProblemResolver with broken count: 0 1437s Done 1438s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1438s autopkgtest: DBG: testbed command exited with code 0 1438s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1438s autopkgtest: DBG: testbed command exited with code 0 1438s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1438s autopkgtest: DBG: testbed command exited with code 0 1438s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-packages.all"], kind short, sout raw, serr pipe, env [] 1438s autopkgtest: DBG: testbed command exited with code 0 1438s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-packages.all /tmp/autopkgtest-work.z8qos2ju/out/101_of_104__cpptest__verify_api_visibility-packages.all 1438s autopkgtest: DBG: got reply from testbed: ok 1438s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1438s autopkgtest: DBG: testbed command exited with code 0 1438s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1438s autopkgtest [08:33:55]: test 101_of_104__cpptest__verify_api_visibility: /usr/lib/libtorch-test/verify_api_visibility 1438s autopkgtest [08:33:55]: test 101_of_104__cpptest__verify_api_visibility: [----------------------- 1438s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/101_of_104__cpptest__verify_api_visibility-stderr --stdout=/tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/verify_api_visibility"], kind test, sout raw, serr raw, env [] 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-artifacts 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stderr 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stdout 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/verify_api_visibility 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Nc4p3mGVZu/out to stdout and file: /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stdout 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.Nc4p3mGVZu/err to standard error and file: /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stdout 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 17323 to /tmp/autopkgtest_script_pid 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1439s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1439s autopkgtest: DBG: testbed command exited with code 0 1439s autopkgtest [08:33:56]: test 101_of_104__cpptest__verify_api_visibility: -----------------------] 1439s autopkgtest: DBG: testbed executing test finished with exit status 0 1439s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stdout /tmp/autopkgtest-work.z8qos2ju/out/101_of_104__cpptest__verify_api_visibility-stdout 1439s autopkgtest: DBG: got reply from testbed: ok 1439s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-stderr /tmp/autopkgtest-work.z8qos2ju/out/101_of_104__cpptest__verify_api_visibility-stderr 1440s autopkgtest: DBG: got reply from testbed: ok 1440s 101_of_104__cpptest__verify_api_visibility PASSautopkgtest [08:33:57]: test 101_of_104__cpptest__verify_api_visibility: - - - - - - - - - - results - - - - - - - - - - 1440s 1440s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1440s autopkgtest: DBG: got reply from testbed: ok 1440s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/101_of_104__cpptest__verify_api_visibility-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1440s autopkgtest: DBG: testbed command exited with code 0 1440s autopkgtest [08:33:57]: test 102_of_104__cpptest__weakref_test: preparing testbed 1440s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1440s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1440s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1440s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1440s autopkgtest: DBG: can use apt-get on testbed: True 1440s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1440s Reading package lists... 1440s Building dependency tree... 1440s Reading state information... 1440s Starting pkgProblemResolver with broken count: 0 1440s Starting 2 pkgProblemResolver with broken count: 0 1440s Done 1441s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1441s autopkgtest: DBG: testbed command exited with code 0 1441s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1441s autopkgtest: DBG: testbed command exited with code 0 1441s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1441s autopkgtest: DBG: testbed command exited with code 0 1441s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-packages.all"], kind short, sout raw, serr pipe, env [] 1441s autopkgtest: DBG: testbed command exited with code 0 1441s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/102_of_104__cpptest__weakref_test-packages.all 1441s autopkgtest: DBG: got reply from testbed: ok 1441s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1441s autopkgtest: DBG: testbed command exited with code 0 1441s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1441s autopkgtest [08:33:58]: test 102_of_104__cpptest__weakref_test: /usr/lib/libtorch-test/weakref_test 1441s autopkgtest [08:33:58]: test 102_of_104__cpptest__weakref_test: [----------------------- 1441s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/102_of_104__cpptest__weakref_test-stderr --stdout=/tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/weakref_test"], kind test, sout raw, serr raw, env [] 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-artifacts 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stderr 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stdout 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/weakref_test 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.vVaiY3dpzG/out to stdout and file: /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stdout 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.vVaiY3dpzG/err to standard error and file: /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stdout 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 17476 to /tmp/autopkgtest_script_pid 1442s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1442s [==========] Running 3 tests from 1 test suite. 1442s [----------] Global test environment set-up. 1442s [----------] 3 tests from TestWeakPointer 1442s [ RUN ] TestWeakPointer.WeakPointerGetsInvalidated 1442s [ OK ] TestWeakPointer.WeakPointerGetsInvalidated (0 ms) 1442s [ RUN ] TestWeakPointer.WeakPointerLock 1442s [ OK ] TestWeakPointer.WeakPointerLock (0 ms) 1442s [ RUN ] TestWeakPointer.WeakUpdatesRefcountsTest 1442s [ OK ] TestWeakPointer.WeakUpdatesRefcountsTest (0 ms) 1442s [----------] 3 tests from TestWeakPointer (0 ms total) 1442s 1442s [----------] Global test environment tear-down 1442s [==========] 3 tests from 1 test suite ran. (0 ms total) 1442s [ PASSED ] 3 tests. 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1442s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1442s autopkgtest: DBG: testbed command exited with code 0 1442s autopkgtest [08:33:59]: test 102_of_104__cpptest__weakref_test: -----------------------] 1442s autopkgtest: DBG: testbed executing test finished with exit status 0 1442s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/102_of_104__cpptest__weakref_test-stdout 1442s autopkgtest: DBG: got reply from testbed: ok 1442s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/102_of_104__cpptest__weakref_test-stderr 1442s autopkgtest: DBG: got reply from testbed: ok 1443s autopkgtest [08:34:00]: test 102_of_104__cpptest__weakref_test: - - - - - - - - - - results - - - - - - - - - - 1443s 102_of_104__cpptest__weakref_test PASS 1443s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1443s autopkgtest: DBG: got reply from testbed: ok 1443s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/102_of_104__cpptest__weakref_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1443s autopkgtest: DBG: testbed command exited with code 0 1443s autopkgtest [08:34:00]: test 103_of_104__cpptest__wrapdim_test: preparing testbed 1443s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1443s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1443s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1443s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1443s autopkgtest: DBG: can use apt-get on testbed: True 1443s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1443s Reading package lists... 1443s Building dependency tree... 1443s Reading state information... 1443s Starting pkgProblemResolver with broken count: 0 1443s Starting 2 pkgProblemResolver with broken count: 0 1443s Done 1444s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1444s autopkgtest: DBG: testbed command exited with code 0 1444s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1444s autopkgtest: DBG: testbed command exited with code 0 1444s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1444s autopkgtest: DBG: testbed command exited with code 0 1444s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-packages.all"], kind short, sout raw, serr pipe, env [] 1444s autopkgtest: DBG: testbed command exited with code 0 1444s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/103_of_104__cpptest__wrapdim_test-packages.all 1444s autopkgtest: DBG: got reply from testbed: ok 1444s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1444s autopkgtest: DBG: testbed command exited with code 0 1444s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1444s autopkgtest [08:34:01]: test 103_of_104__cpptest__wrapdim_test: /usr/lib/libtorch-test/wrapdim_test 1444s autopkgtest [08:34:01]: test 103_of_104__cpptest__wrapdim_test: [----------------------- 1444s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/103_of_104__cpptest__wrapdim_test-stderr --stdout=/tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/wrapdim_test"], kind test, sout raw, serr raw, env [] 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-artifacts 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stderr 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stdout 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/wrapdim_test 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.lwAw6I7rr2/out to stdout and file: /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stdout 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.lwAw6I7rr2/err to standard error and file: /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stdout 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 17629 to /tmp/autopkgtest_script_pid 1445s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1445s [==========] Running 1 test from 1 test suite. 1445s [----------] Global test environment set-up. 1445s [----------] 1 test from TestWrapdim 1445s [ RUN ] TestWrapdim.TestWrapdim 1445s [ OK ] TestWrapdim.TestWrapdim (0 ms) 1445s [----------] 1 test from TestWrapdim (0 ms total) 1445s 1445s [----------] Global test environment tear-down 1445s [==========] 1 test from 1 test suite ran. (0 ms total) 1445s [ PASSED ] 1 test. 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1445s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1445s autopkgtest: DBG: testbed command exited with code 0 1445s autopkgtest [08:34:02]: test 103_of_104__cpptest__wrapdim_test: -----------------------] 1445s autopkgtest: DBG: testbed executing test finished with exit status 0 1445s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/103_of_104__cpptest__wrapdim_test-stdout 1445s autopkgtest: DBG: got reply from testbed: ok 1445s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/103_of_104__cpptest__wrapdim_test-stderr 1445s autopkgtest: DBG: got reply from testbed: ok 1446s autopkgtest [08:34:03]: test 103_of_104__cpptest__wrapdim_test: - - - - - - - - - - results - - - - - - - - - - 1446s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1446s 103_of_104__cpptest__wrapdim_test PASS 1446s autopkgtest: DBG: got reply from testbed: ok 1446s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/103_of_104__cpptest__wrapdim_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1446s autopkgtest: DBG: testbed command exited with code 0 1446s autopkgtest [08:34:03]: test 104_of_104__cpptest__xla_tensor_test: preparing testbed 1446s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'], deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1446s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 1446s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'ninja-build', 'libtorch-dev', 'libtorch-test'] 1446s autopkgtest: DBG: install-deps: satisfying build-essential, ninja-build, libtorch-dev, libtorch-test 1446s autopkgtest: DBG: can use apt-get on testbed: True 1446s 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', 'build-essential, ninja-build, libtorch-dev, libtorch-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 1446s Reading package lists... 1446s Building dependency tree... 1446s Reading state information... 1446s Starting pkgProblemResolver with broken count: 0 1446s Starting 2 pkgProblemResolver with broken count: 0 1446s Done 1447s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1447s autopkgtest: DBG: testbed command exited with code 0 1447s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-dev'], kind short, sout pipe, serr pipe, env [] 1447s autopkgtest: DBG: testbed command exited with code 0 1447s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libtorch-test'], kind short, sout pipe, serr pipe, env [] 1447s autopkgtest: DBG: testbed command exited with code 0 1447s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-packages.all"], kind short, sout raw, serr pipe, env [] 1447s autopkgtest: DBG: testbed command exited with code 0 1447s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-packages.all /tmp/autopkgtest-work.z8qos2ju/out/104_of_104__cpptest__xla_tensor_test-packages.all 1447s autopkgtest: DBG: got reply from testbed: ok 1447s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.wFE02M/build.E4h/src'], kind short, sout raw, serr raw, env [] 1447s autopkgtest: DBG: testbed command exited with code 0 1447s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.wFE02M/build.E4h/src already exists 1447s autopkgtest [08:34:04]: test 104_of_104__cpptest__xla_tensor_test: /usr/lib/libtorch-test/xla_tensor_test 1447s autopkgtest [08:34:04]: test 104_of_104__cpptest__xla_tensor_test: [----------------------- 1447s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.wFE02M/wrapper.sh --debug --artifacts=/tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-artifacts --chdir=/tmp/autopkgtest.wFE02M/build.E4h/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.wFE02M/104_of_104__cpptest__xla_tensor_test-stderr --stdout=/tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stdout --tmp=/tmp/autopkgtest.wFE02M/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1' -- bash -ec /usr/lib/libtorch-test/xla_tensor_test"], kind test, sout raw, serr raw, env [] 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-artifacts 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: changing to directory: /tmp/autopkgtest.wFE02M/build.E4h/src 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: LANG=C.UTF-8 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LANGUAGE 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ADDRESS 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_ALL 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_COLLATE 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_CTYPE 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_IDENTIFICATION 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MEASUREMENT 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MESSAGES 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_MONETARY 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NAME 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_NUMERIC 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_PAPER 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TELEPHONE 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: unsetting environment: LC_TIME 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: pretending to be a login shell 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: will write standard error to /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stderr 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: will write stdout to /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stdout 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.wFE02M/autopkgtest_tmp 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 openmpi/5.0.7-1 pytorch/2.6.0+dfsg-1 xnnpack/0.0~git20241108.4ea82e5-1 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: command to run: bash -ec /usr/lib/libtorch-test/xla_tensor_test 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ntHjCXM0fn/out to stdout and file: /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stdout 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: copying /tmp/tmp.ntHjCXM0fn/err to standard error and file: /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stdout 1447s /tmp/autopkgtest.wFE02M/wrapper.sh: writing script pid 17782 to /tmp/autopkgtest_script_pid 1448s Running main() from ./third_party/googletest/googletest/src/gtest_main.cc 1448s [==========] Running 2 tests from 1 test suite. 1448s [----------] Global test environment set-up. 1448s [----------] 2 tests from XlaTensorTest 1448s [ RUN ] XlaTensorTest.TestNoStorage 1448s [ OK ] XlaTensorTest.TestNoStorage (0 ms) 1448s [ RUN ] XlaTensorTest.test_allocator_clone 1448s [ OK ] XlaTensorTest.test_allocator_clone (0 ms) 1448s [----------] 2 tests from XlaTensorTest (0 ms total) 1448s 1448s [----------] Global test environment tear-down 1448s [==========] 2 tests from 1 test suite ran. (0 ms total) 1448s [ PASSED ] 2 tests. 1448s /tmp/autopkgtest.wFE02M/wrapper.sh: checking for leaked background processes... 1448s /tmp/autopkgtest.wFE02M/wrapper.sh: waiting for tee/cat subprocesses... 1448s /tmp/autopkgtest.wFE02M/wrapper.sh: cleaning up... 1448s /tmp/autopkgtest.wFE02M/wrapper.sh: Exit status: 0 1448s autopkgtest: DBG: testbed command exited with code 0 1448s autopkgtest [08:34:05]: test 104_of_104__cpptest__xla_tensor_test: -----------------------] 1448s autopkgtest: DBG: testbed executing test finished with exit status 0 1448s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stdout /tmp/autopkgtest-work.z8qos2ju/out/104_of_104__cpptest__xla_tensor_test-stdout 1448s autopkgtest: DBG: got reply from testbed: ok 1448s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-stderr /tmp/autopkgtest-work.z8qos2ju/out/104_of_104__cpptest__xla_tensor_test-stderr 1448s autopkgtest: DBG: got reply from testbed: ok 1448s autopkgtest [08:34:05]: test 104_of_104__cpptest__xla_tensor_test: - - - - - - - - - - results - - - - - - - - - - 1448s 104_of_104__cpptest__xla_tensor_test PASS 1448s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-artifacts/ /tmp/autopkgtest-work.z8qos2ju/out/artifacts/ 1449s autopkgtest: DBG: got reply from testbed: ok 1449s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.wFE02M/104_of_104__cpptest__xla_tensor_test-artifacts', '/tmp/autopkgtest.wFE02M/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1449s autopkgtest: DBG: testbed command exited with code 0 1449s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 1449s autopkgtest [08:34:06]: @@@@@@@@@@@@@@@@@@@@ summary 1449s py_import_and_version PASS 1449s py_blas_openblas FAIL non-zero exit status 1 1449s py_blas_blis PASS 1449s py_sequential PASS 1449s show_dangling_symlink_if_any PASS 1449s 1_of_104__cpptest__CppSignature_test PASS 1449s 2_of_104__cpptest__Dict_test PASS 1449s 3_of_104__cpptest__Dimname_test PASS 1449s 4_of_104__cpptest__IListRef_test PASS 1449s 5_of_104__cpptest__KernelFunction_test PASS 1449s 6_of_104__cpptest__List_test PASS 1449s 7_of_104__cpptest__MaybeOwned_test PASS 1449s 8_of_104__cpptest__NamedTensor_test PASS 1449s 9_of_104__cpptest__StorageUtils_test PASS 1449s 10_of_104__cpptest__apply_utils_test PASS 1449s 11_of_104__cpptest__atest PASS 1449s 12_of_104__cpptest__backend_fallback_test PASS 1449s 13_of_104__cpptest__basic PASS 1449s 14_of_104__cpptest__broadcast_test PASS 1449s 15_of_104__cpptest__c10_Bitset_test PASS 1449s 16_of_104__cpptest__c10_CompileTimeFunctionPointer_test PASS 1449s 17_of_104__cpptest__c10_ConstexprCrc_test PASS 1449s 18_of_104__cpptest__c10_DeadlockDetection_test PASS 1449s 19_of_104__cpptest__c10_DeviceGuard_test PASS 1449s 20_of_104__cpptest__c10_Device_test PASS 1449s 21_of_104__cpptest__c10_DispatchKeySet_test PASS 1449s 22_of_104__cpptest__c10_Half_test PASS 1449s 23_of_104__cpptest__c10_InlineDeviceGuard_test PASS 1449s 24_of_104__cpptest__c10_InlineStreamGuard_test PASS 1449s 25_of_104__cpptest__c10_LeftRight_test PASS 1449s 26_of_104__cpptest__c10_Metaprogramming_test PASS 1449s 27_of_104__cpptest__c10_NetworkFlow_test PASS 1449s 28_of_104__cpptest__c10_Scalar_test PASS 1449s 29_of_104__cpptest__c10_SizesAndStrides_test PASS 1449s 30_of_104__cpptest__c10_StreamGuard_test PASS 1449s 31_of_104__cpptest__c10_SymInt_test PASS 1449s 32_of_104__cpptest__c10_Synchronized_test PASS 1449s 33_of_104__cpptest__c10_ThreadLocal_test PASS 1449s 34_of_104__cpptest__c10_TypeIndex_test PASS 1449s 35_of_104__cpptest__c10_TypeList_test PASS 1449s 36_of_104__cpptest__c10_TypeTraits_test PASS 1449s 37_of_104__cpptest__c10_accumulate_test PASS 1449s 38_of_104__cpptest__c10_bfloat16_test PASS 1449s 39_of_104__cpptest__c10_bit_cast_test PASS 1449s 40_of_104__cpptest__c10_complex_math_test PASS 1449s 41_of_104__cpptest__c10_complex_test PASS 1449s 42_of_104__cpptest__c10_cow_test PASS 1449s 43_of_104__cpptest__c10_exception_test PASS 1449s 44_of_104__cpptest__c10_flags_test PASS 1449s 45_of_104__cpptest__c10_generic_math_test PASS 1449s 46_of_104__cpptest__c10_intrusive_ptr_benchmark PASS 1449s 47_of_104__cpptest__c10_intrusive_ptr_test PASS 1449s 48_of_104__cpptest__c10_irange_test PASS 1449s 49_of_104__cpptest__c10_lazy_test PASS 1449s 50_of_104__cpptest__c10_logging_test PASS 1449s 51_of_104__cpptest__c10_optional_test PASS 1449s 52_of_104__cpptest__c10_ordered_preserving_dict_test PASS 1449s 53_of_104__cpptest__c10_registry_test PASS 1449s 54_of_104__cpptest__c10_small_vector_test PASS 1449s 55_of_104__cpptest__c10_ssize_test PASS 1449s 56_of_104__cpptest__c10_string_util_test PASS 1449s 57_of_104__cpptest__c10_string_view_test PASS 1449s 58_of_104__cpptest__c10_tempfile_test PASS 1449s 59_of_104__cpptest__c10_typeid_test PASS 1449s 60_of_104__cpptest__cpu_allocator_test PASS 1449s 61_of_104__cpptest__cpu_generator_test PASS 1449s 62_of_104__cpptest__cpu_profiling_allocator_test PASS 1449s 63_of_104__cpptest__cpu_rng_test PASS 1449s 64_of_104__cpptest__dispatch_key_set_test PASS 1449s 65_of_104__cpptest__dlconvertor_test PASS 1449s 66_of_104__cpptest__extension_backend_test PASS 1449s 67_of_104__cpptest__half_test PASS 1449s 68_of_104__cpptest__inline_container_test PASS 1449s 69_of_104__cpptest__ivalue_test PASS 1449s 70_of_104__cpptest__kernel_function_legacy_test PASS 1449s 71_of_104__cpptest__kernel_function_test PASS 1449s 72_of_104__cpptest__kernel_lambda_legacy_test PASS 1449s 73_of_104__cpptest__kernel_lambda_test PASS 1449s 74_of_104__cpptest__kernel_stackbased_test PASS 1449s 75_of_104__cpptest__lazy_tensor_test PASS 1449s 76_of_104__cpptest__legacy_vmap_test PASS 1449s 77_of_104__cpptest__make_boxed_from_unboxed_functor_test PASS 1449s 78_of_104__cpptest__math_kernel_test PASS 1449s 79_of_104__cpptest__memory_format_test PASS 1449s 80_of_104__cpptest__memory_overlapping_test PASS 1449s 81_of_104__cpptest__mobile_memory_cleanup PASS 1449s 82_of_104__cpptest__native_test PASS 1449s 83_of_104__cpptest__op_allowlist_test PASS 1449s 84_of_104__cpptest__op_registration_test PASS 1449s 85_of_104__cpptest__operator_name_test PASS 1449s 86_of_104__cpptest__operators_test PASS 1449s 87_of_104__cpptest__packedtensoraccessor_test PASS 1449s 88_of_104__cpptest__pow_test PASS 1449s 89_of_104__cpptest__quantized_test PASS 1449s 90_of_104__cpptest__reduce_ops_test PASS 1449s 91_of_104__cpptest__reportMemoryUsage_test PASS 1449s 92_of_104__cpptest__scalar_tensor_test PASS 1449s 93_of_104__cpptest__scalar_test PASS 1449s 94_of_104__cpptest__stride_properties_test PASS 1449s 95_of_104__cpptest__tensor_iterator_test PASS 1449s 96_of_104__cpptest__test_parallel PASS 1449s 97_of_104__cpptest__thread_init_test PASS 1449s 98_of_104__cpptest__type_ptr_test PASS 1449s 99_of_104__cpptest__type_test PASS 1449s 100_of_104__cpptest__undefined_tensor_test PASS 1449s 101_of_104__cpptest__verify_api_visibility PASS 1449s 102_of_104__cpptest__weakref_test PASS 1449s 103_of_104__cpptest__wrapdim_test PASS 1449s 104_of_104__cpptest__xla_tensor_test PASS 1449s autopkgtest: DBG: testbed stop 1449s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.wFE02M 1449s autopkgtest: DBG: sending command to testbed: close 1465s autopkgtest: DBG: got reply from testbed: ok 1465s autopkgtest: DBG: sending command to testbed: quit 1465s nova [W] Using flock in prodstack6-s390x 1465s Creating nova instance adt-plucky-s390x-pytorch-20250219-080957-juju-7f2275-prod-proposed-migration-environment-15-bab8a12d-5cb0-4342-a973-2c3930adbbc6 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 1465s nova [W] Timed out waiting for 3e1da6ed-e30d-46e3-b080-06e499de1a16 to get deleted. 1465s nova [W] Using flock in prodstack6-s390x 1465s Creating nova instance adt-plucky-s390x-pytorch-20250219-080957-juju-7f2275-prod-proposed-migration-environment-15-bab8a12d-5cb0-4342-a973-2c3930adbbc6 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 1465s nova [W] Timed out waiting for 644419b4-295b-4a93-8b70-c6bca56a1d27 to get deleted. 1465s nova [W] Using flock in prodstack6-s390x 1465s Creating nova instance adt-plucky-s390x-pytorch-20250219-080957-juju-7f2275-prod-proposed-migration-environment-15-bab8a12d-5cb0-4342-a973-2c3930adbbc6 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 1465s nova [W] Timed out waiting for 5976f19d-8921-4a2e-8f0e-2385d0476b1b to get deleted. 1465s nova [W] Using flock in prodstack6-s390x 1465s Creating nova instance adt-plucky-s390x-pytorch-20250219-080957-juju-7f2275-prod-proposed-migration-environment-15-bab8a12d-5cb0-4342-a973-2c3930adbbc6 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 1465s nova [W] Timed out waiting for 28d07681-3ebc-4a6a-96e0-d5216a6f5dcb to get deleted.