0s autopkgtest: DBG: testbed init 0s autopkgtest [00:45:17]: starting date and time: 2025-02-16 00:45:17+0000 0s autopkgtest [00:45:17]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [00:45:17]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.o0rqdblv/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade libvpx --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-2.secgroup --name adt-plucky-s390x-libvpx-20250216-004517-juju-7f2275-prod-proposed-migration-environment-15-376bc2f5-37b5-4369-9acf-a9b5c8560501 --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 101s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.JJ5B33 101s autopkgtest: DBG: sending command to testbed: print-execute-command 101s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.z6n98s7_/runcmd 101s autopkgtest: DBG: sending command to testbed: capabilities 101s autopkgtest: DBG: got reply from testbed: ok revert reboot revert-full-system isolation-machine suggested-normal-user=ubuntu root-on-testbed 101s autopkgtest: DBG: testbed capabilities: ['revert', 'reboot', 'revert-full-system', 'isolation-machine', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 101s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.JJ5B33'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.JJ5B33/wrapper.sh 102s autopkgtest: DBG: got reply from testbed: ok 102s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.JJ5B33/wrapper.sh'], kind short, sout raw, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [00:46:59]: testbed dpkg architecture: s390x 102s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [00:46:59]: testbed apt version: 2.9.28 102s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed has eatmydata 102s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [00:47:00]: @@@@@@@@@@@@@@@@@@@@ test bed setup 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [00:47:00]: testbed release detected to be: None 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: adding APT source: Types: deb deb-src 103s URIs: http://ftpmaster.internal/ubuntu/ 103s Suites: plucky-proposed 103s Components: main restricted universe multiverse 103s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 103s Package: * 103s Pin: release plucky-proposed 103s Pin-Priority: 500 103s 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 [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [00:47:00]: updating testbed package index (apt update) 103s 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'] 104s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 104s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 104s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 104s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 104s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 104s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 104s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 104s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 104s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 104s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 104s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 104s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 105s Fetched 2062 kB in 1s (2052 kB/s) 105s Reading package lists... 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 100 105s 105s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 105s Pin: release plucky-proposed 105s Pin-Priority: 995 105s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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.JJ5B33/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s 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'] 106s + lsb_release --codename --short 106s + RELEASE=plucky 106s + cat 106s + [ plucky != trusty ] 106s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 106s Reading package lists... 106s Building dependency tree... 106s Reading state information... 106s Calculating upgrade... 106s The following packages were automatically installed and are no longer required: 106s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 106s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 106s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 106s linux-tools-6.11.0-8-generic 106s Use 'sudo apt autoremove' to remove them. 106s The following packages will be upgraded: 106s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 106s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 106s Need to get 1155 kB of archives. 106s After this operation, 16.4 kB of additional disk space will be used. 106s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 107s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 107s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 107s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 107s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 107s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 107s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 107s Preconfiguring packages ... 107s Fetched 1155 kB in 1s (1775 kB/s) 107s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 107s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 107s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 107s Setting up dash (0.5.12-12ubuntu1) ... 107s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 107s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 107s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 107s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 108s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 108s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 108s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 108s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 108s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 108s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 108s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 108s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 108s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 108s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 108s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 108s Setting up libtasn1-6:s390x (4.20.0-2) ... 108s Processing triggers for libc-bin (2.40-4ubuntu1) ... 108s Processing triggers for man-db (2.13.0-1) ... 108s Processing triggers for debianutils (5.21) ... 108s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 108s + /usr/lib/apt/apt-helper analyze-pattern ?true 108s + uname -r 108s + sed s/\./\\./g 108s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 108s + apt list ?obsolete 108s + tail -n+2 108s + cut -d/ -f1 108s + grep -v ^linux-.*6\.12\.0-15-generic.* 108s + true 108s + obsolete_pkgs= 108s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 108s Reading package lists... 109s Building dependency tree... 109s Reading state information... 109s The following packages will be REMOVED: 109s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 109s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 109s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 109s linux-tools-6.11.0-8-generic* 110s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 110s After this operation, 167 MB disk space will be freed. 110s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 110s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 110s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 110s Removing libpython3.12t64:s390x (3.12.9-1) ... 110s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 110s Removing libnsl2:s390x (1.3.0-3build3) ... 110s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 110s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 110s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 110s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 110s Processing triggers for libc-bin (2.40-4ubuntu1) ... 110s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 110s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 110s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 110s + grep -q trusty /etc/lsb-release 110s + [ ! -d /usr/share/doc/unattended-upgrades ] 110s + [ ! -d /usr/share/doc/lxd ] 110s + [ ! -d /usr/share/doc/lxd-client ] 110s + [ ! -d /usr/share/doc/snapd ] 110s + type iptables 110s + cat 110s + chmod 755 /etc/rc.local 110s + . /etc/rc.local 110s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 110s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 110s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 110s + uname -m 110s + [ s390x = ppc64le ] 110s + [ -d /run/systemd/system ] 110s + systemd-detect-virt --quiet --vm 110s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 110s + cat 110s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 110s + echo COMPRESS=lz4 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [00:47:07]: upgrading testbed (apt dist-upgrade and autopurge) 110s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 111s Starting 2 pkgProblemResolver with broken count: 0 111s Done 111s Entering ResolveByKeep 111s 111s The following packages will be upgraded: 111s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 112s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 10.7 MB of archives. 112s After this operation, 305 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 112s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 112s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 112s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 112s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 112s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 113s Preconfiguring packages ... 113s Fetched 10.7 MB in 1s (11.1 MB/s) 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 113s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 113s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 113s Checking for services that may need to be restarted... 113s Checking init scripts... 113s Checking for services that may need to be restarted... 113s Checking init scripts... 113s Stopping some services possibly affected by the upgrade (will be restarted later): 113s cron: stopping...done. 113s 113s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Setting up libc6:s390x (2.41-1ubuntu1) ... 113s Checking for services that may need to be restarted... 113s Checking init scripts... 113s Restarting services possibly affected by the upgrade: 113s cron: restarting...done. 113s 113s Services restarted successfully. 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 113s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Setting up libc-bin (2.41-1ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 113s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 113s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 114s Setting up iproute2 (6.13.0-1ubuntu1) ... 114s Setting up locales (2.41-1ubuntu1) ... 114s Installing new version of config file /etc/locale.alias ... 114s Generating locales (this might take a while)... 115s en_US.UTF-8... done 115s Generation complete. 115s Setting up libc-dev-bin (2.41-1ubuntu1) ... 115s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 115s Processing triggers for man-db (2.13.0-1) ... 116s Processing triggers for systemd (257.2-3ubuntu1) ... 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s Starting pkgProblemResolver with broken count: 0 117s Starting 2 pkgProblemResolver with broken count: 0 117s Done 117s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: testbed command ['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.JJ5B33/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 117s autopkgtest: DBG: testbed command exited with code 1 117s autopkgtest [00:47:14]: rebooting testbed after setup commands that affected boot 117s autopkgtest: DBG: sending command to testbed: reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.JJ5B33'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.JJ5B33/autopkgtest-reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.JJ5B33'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.JJ5B33/autopkgtest-reboot-prepare 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [00:47:34]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 137s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.JJ5B33/testbed-packages"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/testbed-packages /tmp/autopkgtest-work.o0rqdblv/out/testbed-packages 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.JJ5B33'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.JJ5B33/autopkgtest-reboot 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.JJ5B33'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.JJ5B33/autopkgtest-reboot-prepare 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.JJ5B33/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: Binaries: initialising 139s autopkgtest [00:47:36]: @@@@@@@@@@@@@@@@@@@@ apt-source libvpx 139s autopkgtest: DBG: blame += libvpx 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 139s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'libvpx'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^vpx-tools$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'vpx-tools=1.15.0-1ubuntu1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libvpx-doc$'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libvpx-doc=1.15.0-1ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libvpx-dev$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libvpx-dev=1.15.0-1ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libvpx9$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libvpx9=1.15.0-1ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: install_deps: deps_new=[] 141s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.JJ5B33/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source libvpx=1.15.0-1ubuntu1 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 libvpx_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 142s + cd / 142s + mktemp -d /tmp/autopkgtest.JJ5B33/build.XXX 142s + builddir=/tmp/autopkgtest.JJ5B33/build.C3N 142s + cd /tmp/autopkgtest.JJ5B33/build.C3N 142s + apt-get source -d -q --only-source libvpx=1.15.0-1ubuntu1 144s + OUT=Reading package lists... 144s NOTICE: 'libvpx' packaging is maintained in the 'Git' version control system at: 144s https://salsa.debian.org/multimedia-team/libvpx.git 144s Please use: 144s git clone https://salsa.debian.org/multimedia-team/libvpx.git 144s to retrieve the latest (possibly unreleased) updates to the package. 144s Need to get 4410 kB of source archives. 144s Get:1 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (dsc) [2253 B] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (tar) [4395 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (diff) [13.3 kB] 144s Fetched 4410 kB in 2s (2610 kB/s) 144s Download complete and in download only mode 144s + [ -n ] 144s + echo Reading package lists... 144s NOTICE: 'libvpx' packaging is maintained in the 'Git' version control system at: 144s https://salsa.debian.org/multimedia-team/libvpx.git 144s Please use: 144s git clone https://salsa.debian.org/multimedia-team/libvpx.git 144s to retrieve the latest (possibly unreleased) updates to the package. 144s Need to get 4410 kB of source archives. 144s Get:1 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (dsc) [2253 B] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (tar) [4395 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (diff) [13.3 kB] 144s Fetched 4410 kB in 2s (2610 kB/s) 144s Download complete and in download only mode 144s + grep ^Get: 144s Get:1 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (dsc) [2253 B] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (tar) [4395 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/main libvpx 1.15.0-1ubuntu1 (diff) [13.3 kB] 144s + dpkg-source -x libvpx_1.15.0-1ubuntu1.dsc src 144s gpgv: Signature made Mon Dec 16 06:39:44 2024 UTC 144s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 144s gpgv: Can't check signature: No public key 144s dpkg-source: warning: cannot verify inline signature for ./libvpx_1.15.0-1ubuntu1.dsc: no acceptable signature found 144s + chmod -R a+rX . 144s + cd src/. 144s + pwd 144s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [00:47:41]: testing package libvpx version 1.15.0-1ubuntu1 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/build.C3N/src/debian/ /tmp/autopkgtest-work.o0rqdblv/out/pkg/debian/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: processing dependency ffmpeg 144s autopkgtest: DBG: processing dependency vpx-tools 144s autopkgtest: DBG: marked alternatives ['vpx-tools'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name encode-testimage path debian/tests/encode-testimage command "None" restrictions ['allow-stderr'] features [] depends ['ffmpeg', 'vpx-tools'] 144s autopkgtest [00:47:41]: build not needed 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/build.C3N/src/ /tmp/autopkgtest-work.o0rqdblv/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency ffmpeg 146s autopkgtest: DBG: processing dependency vpx-tools 146s autopkgtest: DBG: marked alternatives ['vpx-tools'] as a synthesised dependency 146s autopkgtest: DBG: Test defined: name encode-testimage path debian/tests/encode-testimage command "None" restrictions ['allow-stderr'] features [] depends ['ffmpeg', 'vpx-tools'] 146s autopkgtest [00:47:43]: test encode-testimage: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['ffmpeg', 'vpx-tools'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['ffmpeg', 'vpx-tools'] 146s autopkgtest: DBG: install-deps: satisfying ffmpeg, vpx-tools 146s autopkgtest: DBG: can use apt-get on testbed: True 146s 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', 'ffmpeg, vpx-tools'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 146s Reading package lists... 146s Building dependency tree... 146s Reading state information... 146s Starting pkgProblemResolver with broken count: 0 146s Starting 2 pkgProblemResolver with broken count: 0 146s Done 147s The following NEW packages will be installed: 147s ffmpeg fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono 147s libaom3 libasound2-data libasound2t64 libass9 libasyncns0 libavc1394-0 147s libavcodec61 libavdevice61 libavfilter10 libavformat61 libavutil59 147s libbluray2 libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2t64 147s libcdio-paranoia2t64 libcdio19t64 libchromaprint1 libcjson1 libcodec2-1.2 147s libdatrie1 libdav1d7 libdc1394-25 libdecor-0-0 libdeflate0 libdrm-radeon1 147s libdvdnav4 libdvdread8t64 libfftw3-double3 libflac12t64 libflite1 147s libfontconfig1 libfreetype6 libgbm1 libgdk-pixbuf-2.0-0 147s libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 147s libglx-mesa0 libglx0 libgme0 libgomp1 libgraphite2-3 libgsm1 libharfbuzz0b 147s libiec61883-0 libjack-jackd2-0 libjbig0 libjpeg-turbo8 libjpeg8 libjxl0.11 147s liblcms2-2 liblilv-0-0 libmbedcrypto16 libmp3lame0 libmpg123-0t64 libmysofa1 147s libnorm1t64 libogg0 libopenal-data libopenal1 libopenjp2-7 libopenmpt0t64 147s libopus0 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 147s libpgm-5.3-0t64 libpixman-1-0 libplacebo349 libpostproc58 libpulse0 147s librabbitmq4 librav1e0.7 libraw1394-11 librist4 librsvg2-2 librubberband2 147s libsamplerate0 libsdl2-2.0-0 libserd-0-0 libsharpyuv0 libshine3 libsnappy1v5 147s libsndfile1 libsodium23 libsord-0-0 libsoxr0 libspeex1 libsratom-0-0 147s libsrt1.5-gnutls libssh-4 libsvtav1enc2 libswresample5 libswscale8 147s libthai-data libthai0 libtheoradec1 libtheoraenc1 libtiff6 libtwolame0 147s libudfread0 libunibreak6 libva-drm2 libva-x11-2 libva2 libvdpau1 147s libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx9 libvulkan1 147s libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 147s libwebp7 libwebpmux3 libx11-xcb1 libx264-164 libx265-215 libxcb-dri3-0 147s libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 147s libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcursor1 libxfixes3 libxi6 147s libxrandr2 libxrender1 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1 147s libzimg2 libzix-0-0 libzmq5 libzvbi-common libzvbi0t64 mesa-libgallium 147s ocl-icd-libopencl1 vpx-tools x11-common 147s 0 upgraded, 159 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 83.6 MB of archives. 147s After this operation, 219 MB of additional disk space will be used. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x libva2 s390x 2.22.0-2 [74.8 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-drm2 s390x 2.22.0-2 [7030 B] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-x11-2 s390x 2.22.0-2 [12.5 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libvdpau1 s390x 1.5-3 [28.2 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x libavutil59 s390x 7:7.1-3ubuntu3 [452 kB] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 148s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 148s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 148s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 148s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 148s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 148s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 149s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libcodec2-1.2 s390x 1.2.0-3 [9027 kB] 150s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 150s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libgsm1 s390x 1.0.22-1build1 [32.7 kB] 150s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 150s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 150s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 150s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 150s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 150s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 150s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 150s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 150s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 150s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 150s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 150s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 150s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 150s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 150s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 150s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 150s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 150s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 150s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 150s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 150s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 150s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 150s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 150s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 150s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 150s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 150s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x libshine3 s390x 3.1.1-2build1 [45.7 kB] 150s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 150s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libspeex1 s390x 1.2.1-3 [70.7 kB] 150s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 150s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 150s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x libsoxr0 s390x 0.1.3-4build3 [69.5 kB] 150s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x libswresample5 s390x 7:7.1-3ubuntu3 [63.2 kB] 150s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoradec1 s390x 1.2.0~alpha1+dfsg-5 [68.5 kB] 150s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 150s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoraenc1 s390x 1.2.0~alpha1+dfsg-5 [142 kB] 150s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libtwolame0 s390x 0.4.0-2build3 [56.4 kB] 150s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 150s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 151s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libvpx9 s390x 1.15.0-1ubuntu1 [1604 kB] 151s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 151s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libx264-164 s390x 2:0.164.3108+git31e19f9-2build1 [592 kB] 151s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libx265-215 s390x 4.1-2 [904 kB] 151s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libxvidcore4 s390x 2:1.3.7-1build1 [214 kB] 151s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi-common all 0.2.43-2ubuntu1 [42.7 kB] 151s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi0t64 s390x 0.2.43-2ubuntu1 [275 kB] 151s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libavcodec61 s390x 7:7.1-3ubuntu3 [8121 kB] 151s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 151s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 151s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libraw1394-11 s390x 2.1.2-2build3 [28.3 kB] 151s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libavc1394-0 s390x 0.5.4-5build3 [15.8 kB] 151s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libunibreak6 s390x 6.1-2 [26.1 kB] 151s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libass9 s390x 1:0.17.3-1 [110 kB] 151s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libudfread0 s390x 1.1.2-1build1 [18.5 kB] 151s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libbluray2 s390x 1:1.3.4-1build1 [173 kB] 151s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libchromaprint1 s390x 1.5.1-7 [34.2 kB] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdread8t64 s390x 6.1.3-2 [54.6 kB] 151s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdnav4 s390x 6.1.1-3build1 [40.3 kB] 151s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x libgme0 s390x 0.6.3-7build1 [150 kB] 151s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 151s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 151s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenmpt0t64 s390x 0.7.13-1 [732 kB] 151s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x librabbitmq4 s390x 0.15.0-1 [37.9 kB] 151s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libcjson1 s390x 1.7.18-3 [22.9 kB] 151s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x libmbedcrypto16 s390x 3.6.2-3ubuntu1 [261 kB] 151s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librist4 s390x 0.2.11+dfsg-1 [77.5 kB] 151s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libsrt1.5-gnutls s390x 1.5.4-1 [345 kB] 151s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libssh-4 s390x 0.11.1-1 [203 kB] 151s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 151s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 151s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 151s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 151s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libavformat61 s390x 7:7.1-3ubuntu3 [1315 kB] 151s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libbs2b0 s390x 3.1.0+dfsg-8 [10.8 kB] 151s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 152s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libserd-0-0 s390x 0.32.4-1 [44.1 kB] 152s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x libzix-0-0 s390x 0.6.2-1 [27.1 kB] 152s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libsord-0-0 s390x 0.16.18-1 [15.8 kB] 152s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libsratom-0-0 s390x 0.6.18-1 [17.0 kB] 152s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x liblilv-0-0 s390x 0.24.26-1 [41.4 kB] 152s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x libmysofa1 s390x 1.3.2+dfsg-2ubuntu2 [1160 kB] 152s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 152s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x libplacebo349 s390x 7.349.0-3 [3077 kB] 153s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x libpostproc58 s390x 7:7.1-3ubuntu3 [69.4 kB] 153s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 153s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libsamplerate0 s390x 0.2.2-4build1 [1344 kB] 153s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librubberband2 s390x 3.3.0+dfsg-2build2 [139 kB] 153s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x libswscale8 s390x 7:7.1-3ubuntu3 [216 kB] 153s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libvidstab1.1 s390x 1.1.0-2build1 [45.8 kB] 153s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libzimg2 s390x 3.0.5+ds1-1build1 [86.6 kB] 153s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x libavfilter10 s390x 7:7.1-3ubuntu3 [4868 kB] 153s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libcaca0 s390x 0.99.beta20-5 [215 kB] 153s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio19t64 s390x 2.2.0-1~exp1 [64.4 kB] 153s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio-cdda2t64 s390x 10.2+2.0.2-1 [17.6 kB] 153s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libcdio-paranoia2t64 s390x 10.2+2.0.2-1 [18.8 kB] 153s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libdc1394-25 s390x 2.2.6-4build1 [101 kB] 153s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 153s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 153s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 153s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 153s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 153s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 153s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 153s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 153s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 153s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 153s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 153s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 153s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 153s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 153s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 153s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 153s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 153s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libiec61883-0 s390x 1.2.0-7 [26.1 kB] 153s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libjack-jackd2-0 s390x 1.9.22~dfsg-4 [292 kB] 153s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenal-data all 1:1.24.2-1 [162 kB] 153s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenal1 s390x 1:1.24.2-1 [708 kB] 153s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libasyncns0 s390x 0.8-6build4 [11.4 kB] 153s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 153s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 153s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x libpulse0 s390x 1:17.0+dfsg1-2ubuntu1 [312 kB] 153s Get:145 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 153s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x libdecor-0-0 s390x 0.2.2-2 [16.2 kB] 153s Get:147 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 153s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 153s Get:149 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 153s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 153s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 153s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 153s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 153s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x libsdl2-2.0-0 s390x 2.32.0+dfsg-1 [776 kB] 153s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 153s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libxv1 s390x 2:1.0.11-1.1build1 [11.3 kB] 153s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x libavdevice61 s390x 7:7.1-3ubuntu3 [83.6 kB] 153s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x ffmpeg s390x 7:7.1-3ubuntu3 [1990 kB] 154s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x vpx-tools s390x 1.15.0-1ubuntu1 [302 kB] 154s Fetched 83.6 MB in 7s (12.3 MB/s) 154s Selecting previously unselected package libaom3:s390x. 154s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 154s Preparing to unpack .../000-libaom3_3.12.0-1_s390x.deb ... 154s Unpacking libaom3:s390x (3.12.0-1) ... 154s Selecting previously unselected package libva2:s390x. 154s Preparing to unpack .../001-libva2_2.22.0-2_s390x.deb ... 154s Unpacking libva2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libva-drm2:s390x. 154s Preparing to unpack .../002-libva-drm2_2.22.0-2_s390x.deb ... 154s Unpacking libva-drm2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libx11-xcb1:s390x. 154s Preparing to unpack .../003-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 154s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 154s Selecting previously unselected package libxcb-dri3-0:s390x. 154s Preparing to unpack .../004-libxcb-dri3-0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxfixes3:s390x. 154s Preparing to unpack .../005-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 154s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 154s Selecting previously unselected package libva-x11-2:s390x. 154s Preparing to unpack .../006-libva-x11-2_2.22.0-2_s390x.deb ... 154s Unpacking libva-x11-2:s390x (2.22.0-2) ... 154s Selecting previously unselected package libvdpau1:s390x. 154s Preparing to unpack .../007-libvdpau1_1.5-3_s390x.deb ... 154s Unpacking libvdpau1:s390x (1.5-3) ... 154s Selecting previously unselected package ocl-icd-libopencl1:s390x. 154s Preparing to unpack .../008-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 154s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 154s Selecting previously unselected package libavutil59:s390x. 154s Preparing to unpack .../009-libavutil59_7%3a7.1-3ubuntu3_s390x.deb ... 154s Unpacking libavutil59:s390x (7:7.1-3ubuntu3) ... 154s Selecting previously unselected package libfreetype6:s390x. 154s Preparing to unpack .../010-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 154s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 154s Selecting previously unselected package fonts-dejavu-mono. 154s Preparing to unpack .../011-fonts-dejavu-mono_2.37-8_all.deb ... 154s Unpacking fonts-dejavu-mono (2.37-8) ... 154s Selecting previously unselected package fonts-dejavu-core. 154s Preparing to unpack .../012-fonts-dejavu-core_2.37-8_all.deb ... 154s Unpacking fonts-dejavu-core (2.37-8) ... 154s Selecting previously unselected package fontconfig-config. 154s Preparing to unpack .../013-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package libfontconfig1:s390x. 154s Preparing to unpack .../014-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 154s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 154s Selecting previously unselected package libpixman-1-0:s390x. 154s Preparing to unpack .../015-libpixman-1-0_0.44.0-3_s390x.deb ... 154s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 154s Selecting previously unselected package libxcb-render0:s390x. 154s Preparing to unpack .../016-libxcb-render0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-render0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxcb-shm0:s390x. 154s Preparing to unpack .../017-libxcb-shm0_1.17.0-2_s390x.deb ... 154s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 154s Selecting previously unselected package libxrender1:s390x. 154s Preparing to unpack .../018-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 154s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 155s Selecting previously unselected package libcairo2:s390x. 155s Preparing to unpack .../019-libcairo2_1.18.2-2_s390x.deb ... 155s Unpacking libcairo2:s390x (1.18.2-2) ... 155s Selecting previously unselected package libcodec2-1.2:s390x. 155s Preparing to unpack .../020-libcodec2-1.2_1.2.0-3_s390x.deb ... 155s Unpacking libcodec2-1.2:s390x (1.2.0-3) ... 155s Selecting previously unselected package libdav1d7:s390x. 155s Preparing to unpack .../021-libdav1d7_1.5.1-1_s390x.deb ... 155s Unpacking libdav1d7:s390x (1.5.1-1) ... 155s Selecting previously unselected package libgsm1:s390x. 155s Preparing to unpack .../022-libgsm1_1.0.22-1build1_s390x.deb ... 155s Unpacking libgsm1:s390x (1.0.22-1build1) ... 155s Selecting previously unselected package liblcms2-2:s390x. 155s Preparing to unpack .../023-liblcms2-2_2.16-2_s390x.deb ... 155s Unpacking liblcms2-2:s390x (2.16-2) ... 155s Selecting previously unselected package libjxl0.11:s390x. 155s Preparing to unpack .../024-libjxl0.11_0.11.1-1_s390x.deb ... 155s Unpacking libjxl0.11:s390x (0.11.1-1) ... 155s Selecting previously unselected package libmp3lame0:s390x. 155s Preparing to unpack .../025-libmp3lame0_3.100-6build1_s390x.deb ... 155s Unpacking libmp3lame0:s390x (3.100-6build1) ... 155s Selecting previously unselected package libopenjp2-7:s390x. 155s Preparing to unpack .../026-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 155s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 155s Selecting previously unselected package libopus0:s390x. 155s Preparing to unpack .../027-libopus0_1.5.2-2_s390x.deb ... 155s Unpacking libopus0:s390x (1.5.2-2) ... 155s Selecting previously unselected package librav1e0.7:s390x. 155s Preparing to unpack .../028-librav1e0.7_0.7.1-9_s390x.deb ... 155s Unpacking librav1e0.7:s390x (0.7.1-9) ... 155s Selecting previously unselected package libcairo-gobject2:s390x. 155s Preparing to unpack .../029-libcairo-gobject2_1.18.2-2_s390x.deb ... 155s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 155s Selecting previously unselected package libgdk-pixbuf2.0-common. 155s Preparing to unpack .../030-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 155s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 155s Selecting previously unselected package libjpeg-turbo8:s390x. 155s Preparing to unpack .../031-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 155s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 155s Selecting previously unselected package libjpeg8:s390x. 155s Preparing to unpack .../032-libjpeg8_8c-2ubuntu11_s390x.deb ... 155s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 155s Selecting previously unselected package libdeflate0:s390x. 155s Preparing to unpack .../033-libdeflate0_1.23-1_s390x.deb ... 155s Unpacking libdeflate0:s390x (1.23-1) ... 155s Selecting previously unselected package libjbig0:s390x. 155s Preparing to unpack .../034-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 155s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 155s Selecting previously unselected package libsharpyuv0:s390x. 155s Preparing to unpack .../035-libsharpyuv0_1.5.0-0.1_s390x.deb ... 155s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libwebp7:s390x. 155s Preparing to unpack .../036-libwebp7_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebp7:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libtiff6:s390x. 155s Preparing to unpack .../037-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 155s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 155s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 155s Preparing to unpack .../038-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 155s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 155s Selecting previously unselected package fontconfig. 155s Preparing to unpack .../039-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 155s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 155s Selecting previously unselected package libgraphite2-3:s390x. 155s Preparing to unpack .../040-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 155s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 155s Selecting previously unselected package libharfbuzz0b:s390x. 155s Preparing to unpack .../041-libharfbuzz0b_10.2.0-1_s390x.deb ... 155s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 155s Selecting previously unselected package libthai-data. 155s Preparing to unpack .../042-libthai-data_0.1.29-2build1_all.deb ... 155s Unpacking libthai-data (0.1.29-2build1) ... 155s Selecting previously unselected package libdatrie1:s390x. 155s Preparing to unpack .../043-libdatrie1_0.2.13-3build1_s390x.deb ... 155s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 155s Selecting previously unselected package libthai0:s390x. 155s Preparing to unpack .../044-libthai0_0.1.29-2build1_s390x.deb ... 155s Unpacking libthai0:s390x (0.1.29-2build1) ... 155s Selecting previously unselected package libpango-1.0-0:s390x. 155s Preparing to unpack .../045-libpango-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package libpangoft2-1.0-0:s390x. 155s Preparing to unpack .../046-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package libpangocairo-1.0-0:s390x. 155s Preparing to unpack .../047-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 155s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 155s Selecting previously unselected package librsvg2-2:s390x. 155s Preparing to unpack .../048-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 155s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 155s Selecting previously unselected package libshine3:s390x. 155s Preparing to unpack .../049-libshine3_3.1.1-2build1_s390x.deb ... 155s Unpacking libshine3:s390x (3.1.1-2build1) ... 155s Selecting previously unselected package libsnappy1v5:s390x. 155s Preparing to unpack .../050-libsnappy1v5_1.2.1-1_s390x.deb ... 155s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 155s Selecting previously unselected package libspeex1:s390x. 155s Preparing to unpack .../051-libspeex1_1.2.1-3_s390x.deb ... 155s Unpacking libspeex1:s390x (1.2.1-3) ... 155s Selecting previously unselected package libsvtav1enc2:s390x. 155s Preparing to unpack .../052-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 155s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 155s Selecting previously unselected package libgomp1:s390x. 155s Preparing to unpack .../053-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package libsoxr0:s390x. 155s Preparing to unpack .../054-libsoxr0_0.1.3-4build3_s390x.deb ... 155s Unpacking libsoxr0:s390x (0.1.3-4build3) ... 155s Selecting previously unselected package libswresample5:s390x. 155s Preparing to unpack .../055-libswresample5_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libswresample5:s390x (7:7.1-3ubuntu3) ... 155s Selecting previously unselected package libtheoradec1:s390x. 155s Preparing to unpack .../056-libtheoradec1_1.2.0~alpha1+dfsg-5_s390x.deb ... 155s Unpacking libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 155s Selecting previously unselected package libogg0:s390x. 155s Preparing to unpack .../057-libogg0_1.3.5-3build1_s390x.deb ... 155s Unpacking libogg0:s390x (1.3.5-3build1) ... 155s Selecting previously unselected package libtheoraenc1:s390x. 155s Preparing to unpack .../058-libtheoraenc1_1.2.0~alpha1+dfsg-5_s390x.deb ... 155s Unpacking libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 155s Selecting previously unselected package libtwolame0:s390x. 155s Preparing to unpack .../059-libtwolame0_0.4.0-2build3_s390x.deb ... 155s Unpacking libtwolame0:s390x (0.4.0-2build3) ... 155s Selecting previously unselected package libvorbis0a:s390x. 155s Preparing to unpack .../060-libvorbis0a_1.3.7-2_s390x.deb ... 155s Unpacking libvorbis0a:s390x (1.3.7-2) ... 155s Selecting previously unselected package libvorbisenc2:s390x. 155s Preparing to unpack .../061-libvorbisenc2_1.3.7-2_s390x.deb ... 155s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 155s Selecting previously unselected package libvpx9:s390x. 155s Preparing to unpack .../062-libvpx9_1.15.0-1ubuntu1_s390x.deb ... 155s Unpacking libvpx9:s390x (1.15.0-1ubuntu1) ... 155s Selecting previously unselected package libwebpmux3:s390x. 155s Preparing to unpack .../063-libwebpmux3_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libx264-164:s390x. 155s Preparing to unpack .../064-libx264-164_2%3a0.164.3108+git31e19f9-2build1_s390x.deb ... 155s Unpacking libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 155s Selecting previously unselected package libx265-215:s390x. 155s Preparing to unpack .../065-libx265-215_4.1-2_s390x.deb ... 155s Unpacking libx265-215:s390x (4.1-2) ... 155s Selecting previously unselected package libxvidcore4:s390x. 155s Preparing to unpack .../066-libxvidcore4_2%3a1.3.7-1build1_s390x.deb ... 155s Unpacking libxvidcore4:s390x (2:1.3.7-1build1) ... 155s Selecting previously unselected package libzvbi-common. 155s Preparing to unpack .../067-libzvbi-common_0.2.43-2ubuntu1_all.deb ... 155s Unpacking libzvbi-common (0.2.43-2ubuntu1) ... 155s Selecting previously unselected package libzvbi0t64:s390x. 155s Preparing to unpack .../068-libzvbi0t64_0.2.43-2ubuntu1_s390x.deb ... 155s Unpacking libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 155s Selecting previously unselected package libavcodec61:s390x. 155s Preparing to unpack .../069-libavcodec61_7%3a7.1-3ubuntu3_s390x.deb ... 155s Unpacking libavcodec61:s390x (7:7.1-3ubuntu3) ... 155s Selecting previously unselected package libasound2-data. 155s Preparing to unpack .../070-libasound2-data_1.2.13-1build1_all.deb ... 155s Unpacking libasound2-data (1.2.13-1build1) ... 155s Selecting previously unselected package libasound2t64:s390x. 155s Preparing to unpack .../071-libasound2t64_1.2.13-1build1_s390x.deb ... 155s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 155s Selecting previously unselected package libraw1394-11:s390x. 155s Preparing to unpack .../072-libraw1394-11_2.1.2-2build3_s390x.deb ... 155s Unpacking libraw1394-11:s390x (2.1.2-2build3) ... 155s Selecting previously unselected package libavc1394-0:s390x. 155s Preparing to unpack .../073-libavc1394-0_0.5.4-5build3_s390x.deb ... 155s Unpacking libavc1394-0:s390x (0.5.4-5build3) ... 155s Selecting previously unselected package libunibreak6:s390x. 155s Preparing to unpack .../074-libunibreak6_6.1-2_s390x.deb ... 155s Unpacking libunibreak6:s390x (6.1-2) ... 155s Selecting previously unselected package libass9:s390x. 155s Preparing to unpack .../075-libass9_1%3a0.17.3-1_s390x.deb ... 155s Unpacking libass9:s390x (1:0.17.3-1) ... 155s Selecting previously unselected package libudfread0:s390x. 155s Preparing to unpack .../076-libudfread0_1.1.2-1build1_s390x.deb ... 155s Unpacking libudfread0:s390x (1.1.2-1build1) ... 155s Selecting previously unselected package libbluray2:s390x. 155s Preparing to unpack .../077-libbluray2_1%3a1.3.4-1build1_s390x.deb ... 155s Unpacking libbluray2:s390x (1:1.3.4-1build1) ... 155s Selecting previously unselected package libchromaprint1:s390x. 155s Preparing to unpack .../078-libchromaprint1_1.5.1-7_s390x.deb ... 155s Unpacking libchromaprint1:s390x (1.5.1-7) ... 156s Selecting previously unselected package libdvdread8t64:s390x. 156s Preparing to unpack .../079-libdvdread8t64_6.1.3-2_s390x.deb ... 156s Unpacking libdvdread8t64:s390x (6.1.3-2) ... 156s Selecting previously unselected package libdvdnav4:s390x. 156s Preparing to unpack .../080-libdvdnav4_6.1.1-3build1_s390x.deb ... 156s Unpacking libdvdnav4:s390x (6.1.1-3build1) ... 156s Selecting previously unselected package libgme0:s390x. 156s Preparing to unpack .../081-libgme0_0.6.3-7build1_s390x.deb ... 156s Unpacking libgme0:s390x (0.6.3-7build1) ... 156s Selecting previously unselected package libmpg123-0t64:s390x. 156s Preparing to unpack .../082-libmpg123-0t64_1.32.10-1_s390x.deb ... 156s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 156s Selecting previously unselected package libvorbisfile3:s390x. 156s Preparing to unpack .../083-libvorbisfile3_1.3.7-2_s390x.deb ... 156s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 156s Selecting previously unselected package libopenmpt0t64:s390x. 156s Preparing to unpack .../084-libopenmpt0t64_0.7.13-1_s390x.deb ... 156s Unpacking libopenmpt0t64:s390x (0.7.13-1) ... 156s Selecting previously unselected package librabbitmq4:s390x. 156s Preparing to unpack .../085-librabbitmq4_0.15.0-1_s390x.deb ... 156s Unpacking librabbitmq4:s390x (0.15.0-1) ... 156s Selecting previously unselected package libcjson1:s390x. 156s Preparing to unpack .../086-libcjson1_1.7.18-3_s390x.deb ... 156s Unpacking libcjson1:s390x (1.7.18-3) ... 156s Selecting previously unselected package libmbedcrypto16:s390x. 156s Preparing to unpack .../087-libmbedcrypto16_3.6.2-3ubuntu1_s390x.deb ... 156s Unpacking libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 156s Selecting previously unselected package librist4:s390x. 156s Preparing to unpack .../088-librist4_0.2.11+dfsg-1_s390x.deb ... 156s Unpacking librist4:s390x (0.2.11+dfsg-1) ... 156s Selecting previously unselected package libsrt1.5-gnutls:s390x. 156s Preparing to unpack .../089-libsrt1.5-gnutls_1.5.4-1_s390x.deb ... 156s Unpacking libsrt1.5-gnutls:s390x (1.5.4-1) ... 156s Selecting previously unselected package libssh-4:s390x. 156s Preparing to unpack .../090-libssh-4_0.11.1-1_s390x.deb ... 156s Unpacking libssh-4:s390x (0.11.1-1) ... 156s Selecting previously unselected package libnorm1t64:s390x. 156s Preparing to unpack .../091-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 156s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 156s Selecting previously unselected package libpgm-5.3-0t64:s390x. 156s Preparing to unpack .../092-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 156s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 156s Selecting previously unselected package libsodium23:s390x. 156s Preparing to unpack .../093-libsodium23_1.0.18-1build3_s390x.deb ... 156s Unpacking libsodium23:s390x (1.0.18-1build3) ... 156s Selecting previously unselected package libzmq5:s390x. 156s Preparing to unpack .../094-libzmq5_4.3.5-1build2_s390x.deb ... 156s Unpacking libzmq5:s390x (4.3.5-1build2) ... 156s Selecting previously unselected package libavformat61:s390x. 156s Preparing to unpack .../095-libavformat61_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libavformat61:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libbs2b0:s390x. 156s Preparing to unpack .../096-libbs2b0_3.1.0+dfsg-8_s390x.deb ... 156s Unpacking libbs2b0:s390x (3.1.0+dfsg-8) ... 156s Selecting previously unselected package libflite1:s390x. 156s Preparing to unpack .../097-libflite1_2.2-7_s390x.deb ... 156s Unpacking libflite1:s390x (2.2-7) ... 156s Selecting previously unselected package libserd-0-0:s390x. 156s Preparing to unpack .../098-libserd-0-0_0.32.4-1_s390x.deb ... 156s Unpacking libserd-0-0:s390x (0.32.4-1) ... 156s Selecting previously unselected package libzix-0-0:s390x. 156s Preparing to unpack .../099-libzix-0-0_0.6.2-1_s390x.deb ... 156s Unpacking libzix-0-0:s390x (0.6.2-1) ... 156s Selecting previously unselected package libsord-0-0:s390x. 156s Preparing to unpack .../100-libsord-0-0_0.16.18-1_s390x.deb ... 156s Unpacking libsord-0-0:s390x (0.16.18-1) ... 156s Selecting previously unselected package libsratom-0-0:s390x. 156s Preparing to unpack .../101-libsratom-0-0_0.6.18-1_s390x.deb ... 156s Unpacking libsratom-0-0:s390x (0.6.18-1) ... 156s Selecting previously unselected package liblilv-0-0:s390x. 156s Preparing to unpack .../102-liblilv-0-0_0.24.26-1_s390x.deb ... 156s Unpacking liblilv-0-0:s390x (0.24.26-1) ... 156s Selecting previously unselected package libmysofa1:s390x. 156s Preparing to unpack .../103-libmysofa1_1.3.2+dfsg-2ubuntu2_s390x.deb ... 156s Unpacking libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 156s Selecting previously unselected package libvulkan1:s390x. 156s Preparing to unpack .../104-libvulkan1_1.4.304.0-1_s390x.deb ... 156s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 156s Selecting previously unselected package libplacebo349:s390x. 156s Preparing to unpack .../105-libplacebo349_7.349.0-3_s390x.deb ... 156s Unpacking libplacebo349:s390x (7.349.0-3) ... 156s Selecting previously unselected package libpostproc58:s390x. 156s Preparing to unpack .../106-libpostproc58_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libpostproc58:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libfftw3-double3:s390x. 156s Preparing to unpack .../107-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 156s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 156s Selecting previously unselected package libsamplerate0:s390x. 156s Preparing to unpack .../108-libsamplerate0_0.2.2-4build1_s390x.deb ... 156s Unpacking libsamplerate0:s390x (0.2.2-4build1) ... 156s Selecting previously unselected package librubberband2:s390x. 156s Preparing to unpack .../109-librubberband2_3.3.0+dfsg-2build2_s390x.deb ... 156s Unpacking librubberband2:s390x (3.3.0+dfsg-2build2) ... 156s Selecting previously unselected package libswscale8:s390x. 156s Preparing to unpack .../110-libswscale8_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libswscale8:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libvidstab1.1:s390x. 156s Preparing to unpack .../111-libvidstab1.1_1.1.0-2build1_s390x.deb ... 156s Unpacking libvidstab1.1:s390x (1.1.0-2build1) ... 156s Selecting previously unselected package libzimg2:s390x. 156s Preparing to unpack .../112-libzimg2_3.0.5+ds1-1build1_s390x.deb ... 156s Unpacking libzimg2:s390x (3.0.5+ds1-1build1) ... 156s Selecting previously unselected package libavfilter10:s390x. 156s Preparing to unpack .../113-libavfilter10_7%3a7.1-3ubuntu3_s390x.deb ... 156s Unpacking libavfilter10:s390x (7:7.1-3ubuntu3) ... 156s Selecting previously unselected package libcaca0:s390x. 156s Preparing to unpack .../114-libcaca0_0.99.beta20-5_s390x.deb ... 156s Unpacking libcaca0:s390x (0.99.beta20-5) ... 156s Selecting previously unselected package libcdio19t64:s390x. 156s Preparing to unpack .../115-libcdio19t64_2.2.0-1~exp1_s390x.deb ... 156s Unpacking libcdio19t64:s390x (2.2.0-1~exp1) ... 156s Selecting previously unselected package libcdio-cdda2t64:s390x. 156s Preparing to unpack .../116-libcdio-cdda2t64_10.2+2.0.2-1_s390x.deb ... 156s Unpacking libcdio-cdda2t64:s390x (10.2+2.0.2-1) ... 156s Selecting previously unselected package libcdio-paranoia2t64:s390x. 156s Preparing to unpack .../117-libcdio-paranoia2t64_10.2+2.0.2-1_s390x.deb ... 156s Unpacking libcdio-paranoia2t64:s390x (10.2+2.0.2-1) ... 156s Selecting previously unselected package libdc1394-25:s390x. 156s Preparing to unpack .../118-libdc1394-25_2.2.6-4build1_s390x.deb ... 156s Unpacking libdc1394-25:s390x (2.2.6-4build1) ... 156s Selecting previously unselected package libglvnd0:s390x. 156s Preparing to unpack .../119-libglvnd0_1.7.0-1build1_s390x.deb ... 156s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 156s Selecting previously unselected package libglapi-mesa:s390x. 156s Preparing to unpack .../120-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 156s Selecting previously unselected package libxcb-glx0:s390x. 156s Preparing to unpack .../121-libxcb-glx0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-present0:s390x. 156s Preparing to unpack .../122-libxcb-present0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-present0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-xfixes0:s390x. 156s Preparing to unpack .../123-libxcb-xfixes0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxxf86vm1:s390x. 156s Preparing to unpack .../124-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 156s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 156s Selecting previously unselected package libdrm-radeon1:s390x. 156s Preparing to unpack .../125-libdrm-radeon1_2.4.123-1_s390x.deb ... 156s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 156s Selecting previously unselected package libxcb-randr0:s390x. 156s Preparing to unpack .../126-libxcb-randr0_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxcb-sync1:s390x. 156s Preparing to unpack .../127-libxcb-sync1_1.17.0-2_s390x.deb ... 156s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 156s Selecting previously unselected package libxshmfence1:s390x. 156s Preparing to unpack .../128-libxshmfence1_1.3-1build5_s390x.deb ... 156s Unpacking libxshmfence1:s390x (1.3-1build5) ... 156s Selecting previously unselected package mesa-libgallium:s390x. 156s Preparing to unpack .../129-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 156s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 157s Selecting previously unselected package libwayland-server0:s390x. 157s Preparing to unpack .../130-libwayland-server0_1.23.1-1_s390x.deb ... 157s Unpacking libwayland-server0:s390x (1.23.1-1) ... 157s Selecting previously unselected package libgbm1:s390x. 157s Preparing to unpack .../131-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 157s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 157s Selecting previously unselected package libgl1-mesa-dri:s390x. 157s Preparing to unpack .../132-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 157s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 157s Selecting previously unselected package libglx-mesa0:s390x. 157s Preparing to unpack .../133-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 157s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 157s Selecting previously unselected package libglx0:s390x. 157s Preparing to unpack .../134-libglx0_1.7.0-1build1_s390x.deb ... 157s Unpacking libglx0:s390x (1.7.0-1build1) ... 157s Selecting previously unselected package libgl1:s390x. 157s Preparing to unpack .../135-libgl1_1.7.0-1build1_s390x.deb ... 157s Unpacking libgl1:s390x (1.7.0-1build1) ... 157s Selecting previously unselected package libiec61883-0:s390x. 157s Preparing to unpack .../136-libiec61883-0_1.2.0-7_s390x.deb ... 157s Unpacking libiec61883-0:s390x (1.2.0-7) ... 157s Selecting previously unselected package libjack-jackd2-0:s390x. 157s Preparing to unpack .../137-libjack-jackd2-0_1.9.22~dfsg-4_s390x.deb ... 157s Unpacking libjack-jackd2-0:s390x (1.9.22~dfsg-4) ... 157s Selecting previously unselected package libopenal-data. 157s Preparing to unpack .../138-libopenal-data_1%3a1.24.2-1_all.deb ... 157s Unpacking libopenal-data (1:1.24.2-1) ... 157s Selecting previously unselected package libopenal1:s390x. 157s Preparing to unpack .../139-libopenal1_1%3a1.24.2-1_s390x.deb ... 157s Unpacking libopenal1:s390x (1:1.24.2-1) ... 157s Selecting previously unselected package libasyncns0:s390x. 157s Preparing to unpack .../140-libasyncns0_0.8-6build4_s390x.deb ... 157s Unpacking libasyncns0:s390x (0.8-6build4) ... 157s Selecting previously unselected package libflac12t64:s390x. 157s Preparing to unpack .../141-libflac12t64_1.4.3+ds-4_s390x.deb ... 157s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 157s Selecting previously unselected package libsndfile1:s390x. 157s Preparing to unpack .../142-libsndfile1_1.2.2-2_s390x.deb ... 157s Unpacking libsndfile1:s390x (1.2.2-2) ... 157s Selecting previously unselected package libpulse0:s390x. 157s Preparing to unpack .../143-libpulse0_1%3a17.0+dfsg1-2ubuntu1_s390x.deb ... 157s Unpacking libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 157s Selecting previously unselected package libwayland-client0:s390x. 157s Preparing to unpack .../144-libwayland-client0_1.23.1-1_s390x.deb ... 157s Unpacking libwayland-client0:s390x (1.23.1-1) ... 157s Selecting previously unselected package libdecor-0-0:s390x. 157s Preparing to unpack .../145-libdecor-0-0_0.2.2-2_s390x.deb ... 157s Unpacking libdecor-0-0:s390x (0.2.2-2) ... 157s Selecting previously unselected package libwayland-cursor0:s390x. 157s Preparing to unpack .../146-libwayland-cursor0_1.23.1-1_s390x.deb ... 157s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 157s Selecting previously unselected package libwayland-egl1:s390x. 157s Preparing to unpack .../147-libwayland-egl1_1.23.1-1_s390x.deb ... 157s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 157s Selecting previously unselected package libxcursor1:s390x. 157s Preparing to unpack .../148-libxcursor1_1%3a1.2.3-1_s390x.deb ... 157s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 157s Selecting previously unselected package libxi6:s390x. 157s Preparing to unpack .../149-libxi6_2%3a1.8.2-1_s390x.deb ... 157s Unpacking libxi6:s390x (2:1.8.2-1) ... 157s Selecting previously unselected package libxrandr2:s390x. 157s Preparing to unpack .../150-libxrandr2_2%3a1.5.4-1_s390x.deb ... 157s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 157s Selecting previously unselected package x11-common. 157s Preparing to unpack .../151-x11-common_1%3a7.7+23ubuntu3_all.deb ... 157s Unpacking x11-common (1:7.7+23ubuntu3) ... 157s Selecting previously unselected package libxss1:s390x. 157s Preparing to unpack .../152-libxss1_1%3a1.2.3-1build3_s390x.deb ... 157s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 157s Selecting previously unselected package libsdl2-2.0-0:s390x. 157s Preparing to unpack .../153-libsdl2-2.0-0_2.32.0+dfsg-1_s390x.deb ... 157s Unpacking libsdl2-2.0-0:s390x (2.32.0+dfsg-1) ... 157s Selecting previously unselected package libxcb-shape0:s390x. 157s Preparing to unpack .../154-libxcb-shape0_1.17.0-2_s390x.deb ... 157s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 157s Selecting previously unselected package libxv1:s390x. 157s Preparing to unpack .../155-libxv1_2%3a1.0.11-1.1build1_s390x.deb ... 157s Unpacking libxv1:s390x (2:1.0.11-1.1build1) ... 157s Selecting previously unselected package libavdevice61:s390x. 157s Preparing to unpack .../156-libavdevice61_7%3a7.1-3ubuntu3_s390x.deb ... 157s Unpacking libavdevice61:s390x (7:7.1-3ubuntu3) ... 157s Selecting previously unselected package ffmpeg. 157s Preparing to unpack .../157-ffmpeg_7%3a7.1-3ubuntu3_s390x.deb ... 157s Unpacking ffmpeg (7:7.1-3ubuntu3) ... 157s Selecting previously unselected package vpx-tools. 157s Preparing to unpack .../158-vpx-tools_1.15.0-1ubuntu1_s390x.deb ... 157s Unpacking vpx-tools (1.15.0-1ubuntu1) ... 157s Setting up libgme0:s390x (0.6.3-7build1) ... 157s Setting up libchromaprint1:s390x (1.5.1-7) ... 157s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 157s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 157s Setting up liblcms2-2:s390x (2.16-2) ... 157s Setting up libpixman-1-0:s390x (0.44.0-3) ... 157s Setting up libdvdread8t64:s390x (6.1.3-2) ... 157s Setting up libudfread0:s390x (1.1.2-1build1) ... 157s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 157s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 157s Setting up libwayland-server0:s390x (1.23.1-1) ... 157s Setting up libaom3:s390x (3.12.0-1) ... 157s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 157s Setting up librabbitmq4:s390x (0.15.0-1) ... 157s Setting up libraw1394-11:s390x (2.1.2-2build3) ... 157s Setting up libsodium23:s390x (1.0.18-1build3) ... 157s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 157s Setting up libogg0:s390x (1.3.5-3build1) ... 157s Setting up libspeex1:s390x (1.2.1-3) ... 157s Setting up libshine3:s390x (3.1.1-2build1) ... 157s Setting up libcaca0:s390x (0.99.beta20-5) ... 157s Setting up libxi6:s390x (2:1.8.2-1) ... 157s Setting up libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 157s Setting up libtwolame0:s390x (0.4.0-2build3) ... 157s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 157s Setting up libdatrie1:s390x (0.2.13-3build1) ... 157s Setting up libgsm1:s390x (1.0.22-1build1) ... 157s Setting up libxcb-render0:s390x (1.17.0-2) ... 157s Setting up libzix-0-0:s390x (0.6.2-1) ... 157s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 157s Setting up libglvnd0:s390x (1.7.0-1build1) ... 157s Setting up libcodec2-1.2:s390x (1.2.0-3) ... 157s Setting up libxcb-glx0:s390x (1.17.0-2) ... 157s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 157s Setting up libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 157s Setting up libxcb-shape0:s390x (1.17.0-2) ... 157s Setting up x11-common (1:7.7+23ubuntu3) ... 157s Setting up libcdio19t64:s390x (2.2.0-1~exp1) ... 157s Setting up libdeflate0:s390x (1.23-1) ... 157s Setting up libxcb-shm0:s390x (1.17.0-2) ... 157s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 157s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 157s Setting up libcjson1:s390x (1.7.18-3) ... 157s Setting up libxvidcore4:s390x (2:1.3.7-1build1) ... 157s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 157s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 157s Setting up libsnappy1v5:s390x (1.2.1-1) ... 157s Setting up libcdio-cdda2t64:s390x (10.2+2.0.2-1) ... 157s Setting up libxcb-present0:s390x (1.17.0-2) ... 157s Setting up libasound2-data (1.2.13-1build1) ... 157s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 157s Setting up libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 157s Setting up libasound2t64:s390x (1.2.13-1build1) ... 157s Setting up libva2:s390x (2.22.0-2) ... 157s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 157s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 157s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 157s Setting up libxcb-sync1:s390x (1.17.0-2) ... 157s Setting up libopus0:s390x (1.5.2-2) ... 157s Setting up libcdio-paranoia2t64:s390x (10.2+2.0.2-1) ... 157s Setting up libdc1394-25:s390x (2.2.6-4build1) ... 157s Setting up libxv1:s390x (2:1.0.11-1.1build1) ... 157s Setting up fonts-dejavu-mono (2.37-8) ... 157s Setting up libvorbis0a:s390x (1.3.7-2) ... 157s Setting up libxrandr2:s390x (2:1.5.4-1) ... 157s Setting up fonts-dejavu-core (2.37-8) ... 157s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 157s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 157s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 157s Setting up libssh-4:s390x (0.11.1-1) ... 157s Setting up libvulkan1:s390x (1.4.304.0-1) ... 157s Setting up libwebp7:s390x (1.5.0-0.1) ... 157s Setting up libvidstab1.1:s390x (1.1.0-2build1) ... 157s Setting up libvpx9:s390x (1.15.0-1ubuntu1) ... 157s Setting up libsrt1.5-gnutls:s390x (1.5.4-1) ... 157s Setting up libflite1:s390x (2.2-7) ... 157s Setting up libdav1d7:s390x (1.5.1-1) ... 157s Setting up libva-drm2:s390x (2.22.0-2) ... 157s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 157s Setting up libasyncns0:s390x (0.8-6build4) ... 157s Setting up libxshmfence1:s390x (1.3-1build5) ... 157s Setting up libvdpau1:s390x (1.5-3) ... 157s Setting up libbs2b0:s390x (3.1.0+dfsg-8) ... 157s Setting up libxcb-randr0:s390x (1.17.0-2) ... 157s Setting up librav1e0.7:s390x (0.7.1-9) ... 157s Setting up libzimg2:s390x (3.0.5+ds1-1build1) ... 157s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 157s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 157s Setting up libopenal-data (1:1.24.2-1) ... 157s Setting up libthai-data (0.1.29-2build1) ... 157s Setting up libunibreak6:s390x (6.1-2) ... 157s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 157s Setting up libwayland-egl1:s390x (1.23.1-1) ... 157s Setting up libxss1:s390x (1:1.2.3-1build3) ... 157s Setting up libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 157s Setting up libx265-215:s390x (4.1-2) ... 157s Setting up libsamplerate0:s390x (0.2.2-4build1) ... 157s Setting up libva-x11-2:s390x (2.22.0-2) ... 157s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 157s Setting up libjxl0.11:s390x (0.11.1-1) ... 157s Setting up libzvbi-common (0.2.43-2ubuntu1) ... 157s Setting up libmp3lame0:s390x (3.100-6build1) ... 157s Setting up libvorbisenc2:s390x (1.3.7-2) ... 157s Setting up libdvdnav4:s390x (6.1.1-3build1) ... 157s Setting up libiec61883-0:s390x (1.2.0-7) ... 157s Setting up libserd-0-0:s390x (0.32.4-1) ... 157s Setting up libwayland-client0:s390x (1.23.1-1) ... 157s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 157s Setting up libavc1394-0:s390x (0.5.4-5build3) ... 157s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 157s Setting up libzmq5:s390x (4.3.5-1build2) ... 157s Setting up libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 157s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 157s Setting up libsoxr0:s390x (0.1.3-4build3) ... 157s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 157s Setting up libxcursor1:s390x (1:1.2.3-1) ... 157s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 157s Setting up libopenal1:s390x (1:1.24.2-1) ... 157s Setting up libavutil59:s390x (7:7.1-3ubuntu3) ... 157s Setting up libpostproc58:s390x (7:7.1-3ubuntu3) ... 157s Setting up librist4:s390x (0.2.11+dfsg-1) ... 157s Setting up libthai0:s390x (0.1.29-2build1) ... 157s Setting up libvorbisfile3:s390x (1.3.7-2) ... 157s Setting up libswresample5:s390x (7:7.1-3ubuntu3) ... 157s Setting up libswscale8:s390x (7:7.1-3ubuntu3) ... 157s Setting up libplacebo349:s390x (7.349.0-3) ... 157s Setting up vpx-tools (1.15.0-1ubuntu1) ... 157s Setting up librubberband2:s390x (3.3.0+dfsg-2build2) ... 157s Setting up libjack-jackd2-0:s390x (1.9.22~dfsg-4) ... 157s Setting up libsord-0-0:s390x (0.16.18-1) ... 157s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 157s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 157s Setting up libsratom-0-0:s390x (0.6.18-1) ... 157s Setting up libdecor-0-0:s390x (0.2.2-2) ... 157s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 157s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 157s Setting up libsndfile1:s390x (1.2.2-2) ... 157s Setting up libbluray2:s390x (1:1.3.4-1build1) ... 157s Setting up liblilv-0-0:s390x (0.24.26-1) ... 157s Setting up libopenmpt0t64:s390x (0.7.13-1) ... 157s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 159s Regenerating fonts cache... done. 159s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 159s Setting up libglx0:s390x (1.7.0-1build1) ... 159s Setting up libpulse0:s390x (1:17.0+dfsg1-2ubuntu1) ... 159s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 159s Setting up libcairo2:s390x (1.18.2-2) ... 159s Setting up libgl1:s390x (1.7.0-1build1) ... 159s Setting up libass9:s390x (1:0.17.3-1) ... 159s Setting up libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 159s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 159s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 159s Setting up libsdl2-2.0-0:s390x (2.32.0+dfsg-1) ... 159s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 159s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 159s Setting up libavcodec61:s390x (7:7.1-3ubuntu3) ... 159s Setting up libavformat61:s390x (7:7.1-3ubuntu3) ... 159s Setting up libavfilter10:s390x (7:7.1-3ubuntu3) ... 159s Setting up libavdevice61:s390x (7:7.1-3ubuntu3) ... 159s Setting up ffmpeg (7:7.1-3ubuntu3) ... 159s Processing triggers for man-db (2.13.0-1) ... 160s Processing triggers for libc-bin (2.41-1ubuntu1) ... 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'vpx-tools'], kind short, sout pipe, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.JJ5B33/encode-testimage-packages.all"], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/encode-testimage-packages.all /tmp/autopkgtest-work.o0rqdblv/out/encode-testimage-packages.all 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.JJ5B33/build.C3N/src'], kind short, sout raw, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.JJ5B33/build.C3N/src already exists 161s autopkgtest [00:47:58]: test encode-testimage: [----------------------- 161s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.JJ5B33/wrapper.sh --debug --artifacts=/tmp/autopkgtest.JJ5B33/encode-testimage-artifacts --chdir=/tmp/autopkgtest.JJ5B33/build.C3N/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.JJ5B33/encode-testimage-stderr --stdout=/tmp/autopkgtest.JJ5B33/encode-testimage-stdout --tmp=/tmp/autopkgtest.JJ5B33/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.JJ5B33/build.C3N/src/debian/tests/encode-testimage -- /tmp/autopkgtest.JJ5B33/build.C3N/src/debian/tests/encode-testimage"], kind test, sout raw, serr raw, env [] 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.JJ5B33/encode-testimage-artifacts 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: changing to directory: /tmp/autopkgtest.JJ5B33/build.C3N/src 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: setting environment: LANG=C.UTF-8 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LANGUAGE 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_ADDRESS 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_ALL 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_COLLATE 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_CTYPE 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_IDENTIFICATION 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_MEASUREMENT 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_MESSAGES 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_MONETARY 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_NAME 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_NUMERIC 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_PAPER 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_TELEPHONE 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: unsetting environment: LC_TIME 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: pretending to be a login shell 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: will write standard error to /tmp/autopkgtest.JJ5B33/encode-testimage-stderr 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: will write stdout to /tmp/autopkgtest.JJ5B33/encode-testimage-stdout 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.JJ5B33/autopkgtest_tmp 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: marking as executable: /tmp/autopkgtest.JJ5B33/build.C3N/src/debian/tests/encode-testimage 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: command to run: /tmp/autopkgtest.JJ5B33/build.C3N/src/debian/tests/encode-testimage 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: copying /tmp/tmp.juBnZHLEAA/out to stdout and file: /tmp/autopkgtest.JJ5B33/encode-testimage-stdout 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: copying /tmp/tmp.juBnZHLEAA/err to standard error and file: /tmp/autopkgtest.JJ5B33/encode-testimage-stdout 161s /tmp/autopkgtest.JJ5B33/wrapper.sh: writing script pid 3203 to /tmp/autopkgtest_script_pid 161s ffmpeg version 7.1-3ubuntu3 Copyright (c) 2000-2024 the FFmpeg developers 161s built with gcc 13 (Ubuntu 13.3.0-12ubuntu1) 161s configuration: --prefix=/usr --extra-version=3ubuntu3 --toolchain=hardened --libdir=/usr/lib/s390x-linux-gnu --incdir=/usr/include/s390x-linux-gnu --arch=s390x --enable-gpl --disable-stripping --disable-libmfx --disable-omx --enable-gnutls --enable-libaom --enable-libass --enable-libbs2b --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libglslang --enable-libgme --enable-libgsm --enable-libharfbuzz --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-openal --enable-opencl --enable-opengl --disable-sndio --disable-libvpl --cc=gcc-13 --cxx=g++-13 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-ladspa --enable-libbluray --enable-libcaca --enable-libdvdnav --enable-libdvdread --enable-libjack --enable-libpulse --enable-librabbitmq --enable-librist --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libx264 --enable-libzmq --enable-libzvbi --enable-lv2 --enable-sdl2 --enable-libplacebo --enable-librav1e --disable-pocketsphinx --enable-librsvg --enable-libjxl --ignore-tests='hapenc-hap-none,hapenc-hapa-none,hapenc-hapq-none' --ignore-tests=filter-overlay_yuv420p10 --enable-shared 161s libavutil 59. 39.100 / 59. 39.100 161s libavcodec 61. 19.100 / 61. 19.100 161s libavformat 61. 7.100 / 61. 7.100 161s libavdevice 61. 3.100 / 61. 3.100 161s libavfilter 10. 4.100 / 10. 4.100 161s libswscale 8. 3.100 / 8. 3.100 161s libswresample 5. 3.100 / 5. 3.100 161s libpostproc 58. 3.100 / 58. 3.100 161s Stream mapping: 161s testsrc:default -> Stream #0:0 (wrapped_avframe) 161s Press [q] to stop, [?] for help 161s Output #0, yuv4mpegpipe, to 'in.y4m': 161s Metadata: 161s encoder : Lavf61.7.100 161s Stream #0:0: Video: wrapped_avframe, yuv420p(progressive), 320x240 [SAR 1:1 DAR 4:3], q=2-31, 200 kb/s, 25 fps, 25 tbn 161s Metadata: 161s encoder : Lavc61.19.100 wrapped_avframe 161s [out#0/yuv4mpegpipe @ 0x2aa29af2ec0] video:107KiB audio:0KiB subtitle:0KiB other streams:0KiB global headers:0KiB muxing overhead: 26083.234545% 161s frame= 250 fps=0.0 q=-0.0 Lsize= 28127KiB time=00:00:10.00 bitrate=23041.2kbits/s speed=37.7x 162s Pass 1/2 frame 1/0 0B 0 us 0.00 fpm [ETA unknown]  Pass 1/2 frame 2/1 216B 3060 us 653.59 fps [ETA 0:00:00]  Pass 1/2 frame 3/2 432B 7286 us 411.75 fps [ETA 0:00:00]  Pass 1/2 frame 4/3 648B 12746 us 313.82 fps [ETA 0:00:00]  Pass 1/2 frame 5/4 864B 18162 us 275.30 fps [ETA 0:00:00]  Pass 1/2 frame 6/5 1080B 21928 us 273.62 fps [ETA 0:00:00]  Pass 1/2 frame 7/6 1296B 25134 us 278.51 fps [ETA 0:00:00]  Pass 1/2 frame 8/7 1512B 28336 us 282.33 fps [ETA 0:00:00]  Pass 1/2 frame 9/8 1728B 31580 us 284.99 fps [ETA 0:00:00]  Pass 1/2 frame 10/9 1944B 34762 us 287.67 fps [ETA 0:00:00]  Pass 1/2 frame 11/10 2160B 37965 us 289.74 fps [ETA 0:00:00]  Pass 1/2 frame 12/11 2376B 41190 us 291.33 fps [ETA 0:00:00]  Pass 1/2 frame 13/12 2592B 44413 us 292.71 fps [ETA 0:00:00]  Pass 1/2 frame 14/13 2808B 47602 us 294.11 fps [ETA 0:00:00]  Pass 1/2 frame 15/14 3024B 50830 us 295.10 fps [ETA 0:00:00]  Pass 1/2 frame 16/15 3240B 53994 us 296.33 fps [ETA 0:00:00]  Pass 1/2 frame 17/16 3456B 57176 us 297.33 fps [ETA 0:00:00]  Pass 1/2 frame 18/17 3672B 60332 us 298.35 fps [ETA 0:00:00]  Pass 1/2 frame 19/18 3888B 63501 us 299.21 fps [ETA 0:00:00]  Pass 1/2 frame 20/19 4104B 66690 us 299.90 fps [ETA 0:00:00]  Pass 1/2 frame 21/20 4320B 70014 us 299.94 fps [ETA 0:00:00]  Pass 1/2 frame 22/21 4536B 73166 us 300.69 fps [ETA 0:00:00]  Pass 1/2 frame 23/22 4752B 76341 us 301.28 fps [ETA 0:00:00]  Pass 1/2 frame 24/23 4968B 79508 us 301.86 fps [ETA 0:00:00]  Pass 1/2 frame 25/24 5184B 82649 us 302.48 fps [ETA 0:00:00]  Pass 1/2 frame 26/25 5400B 85822 us 302.95 fps [ETA 0:00:00]  Pass 1/2 frame 27/26 5616B 89413 us 301.97 fps [ETA 0:00:00]  Pass 1/2 frame 28/27 5832B 92564 us 302.49 fps [ETA 0:00:00]  Pass 1/2 frame 29/28 6048B 95689 us 303.07 fps [ETA 0:00:00]  Pass 1/2 frame 30/29 6264B 99089 us 302.76 fps [ETA 0:00:00]  Pass 1/2 frame 31/30 6480B 102279 us 303.09 fps [ETA 0:00:00]  Pass 1/2 frame 32/31 6696B 105510 us 303.29 fps [ETA 0:00:00]  Pass 1/2 frame 33/32 6912B 108717 us 303.54 fps [ETA 0:00:00]  Pass 1/2 frame 34/33 7128B 111930 us 303.76 fps [ETA 0:00:00]  Pass 1/2 frame 35/34 7344B 115137 us 303.99 fps [ETA 0:00:00]  Pass 1/2 frame 36/35 7560B 118393 us 304.07 fps [ETA 0:00:00]  Pass 1/2 frame 37/36 7776B 121609 us 304.25 fps [ETA 0:00:00]  Pass 1/2 frame 38/37 7992B 124883 us 304.28 fps [ETA 0:00:00]  Pass 1/2 frame 39/38 8208B 128145 us 304.34 fps [ETA 0:00:00]  Pass 1/2 frame 40/39 8424B 131433 us 304.34 fps [ETA 0:00:00]  Pass 1/2 frame 41/40 8640B 134683 us 304.42 fps [ETA 0:00:00]  Pass 1/2 frame 42/41 8856B 137945 us 304.47 fps [ETA 0:00:00]  Pass 1/2 frame 43/42 9072B 141203 us 304.53 fps [ETA 0:00:00]  Pass 1/2 frame 44/43 9288B 144455 us 304.59 fps [ETA 0:00:00]  Pass 1/2 frame 45/44 9504B 147673 us 304.73 fps [ETA 0:00:00]  Pass 1/2 frame 46/45 9720B 150901 us 304.84 fps [ETA 0:00:00]  Pass 1/2 frame 47/46 9936B 154176 us 304.85 fps [ETA 0:00:00]  Pass 1/2 frame 48/47 10152B 157469 us 304.82 fps [ETA 0:00:00]  Pass 1/2 frame 49/48 10368B 160666 us 304.98 fps [ETA 0:00:00]  Pass 1/2 frame 50/49 10584B 163822 us 305.21 fps [ETA 0:00:00]  Pass 1/2 frame 51/50 10800B 167048 us 305.30 fps [ETA 0:00:00]  Pass 1/2 frame 52/51 11016B 170537 us 304.92 fps [ETA 0:00:00]  Pass 1/2 frame 53/52 11232B 173753 us 305.03 fps [ETA 0:00:00]  Pass 1/2 frame 54/53 11448B 176969 us 305.14 fps [ETA 0:00:00]  Pass 1/2 frame 55/54 11664B 180151 us 305.30 fps [ETA 0:00:00]  Pass 1/2 frame 56/55 11880B 183518 us 305.15 fps [ETA 0:00:00]  Pass 1/2 frame 57/56 12096B 187294 us 304.33 fps [ETA 0:00:00]  Pass 1/2 frame 58/57 12312B 190555 us 304.37 fps [ETA 0:00:00]  Pass 1/2 frame 59/58 12528B 194058 us 304.03 fps [ETA 0:00:00]  Pass 1/2 frame 60/59 12744B 197883 us 303.21 fps [ETA 0:00:00]  Pass 1/2 frame 61/60 12960B 201734 us 302.38 fps [ETA 0:00:00]  Pass 1/2 frame 62/61 13176B 205370 us 301.89 fps [ETA 0:00:00]  Pass 1/2 frame 63/62 13392B 209337 us 300.95 fps [ETA 0:00:00]  Pass 1/2 frame 64/63 13608B 213102 us 300.33 fps [ETA 0:00:00]  Pass 1/2 frame 65/64 13824B 216445 us 300.31 fps [ETA 0:00:00]  Pass 1/2 frame 66/65 14040B 219601 us 300.55 fps [ETA 0:00:00]  Pass 1/2 frame 67/66 14256B 222837 us 300.67 fps [ETA 0:00:00]  Pass 1/2 frame 68/67 14472B 226304 us 300.48 fps [ETA 0:00:00]  Pass 1/2 frame 69/68 14688B 230088 us 299.89 fps [ETA 0:00:00]  Pass 1/2 frame 70/69 14904B 233563 us 299.71 fps [ETA 0:00:00]  Pass 1/2 frame 71/70 15120B 236967 us 299.62 fps [ETA 0:00:00]  Pass 1/2 frame 72/71 15336B 240458 us 299.43 fps [ETA 0:00:00]  Pass 1/2 frame 73/72 15552B 243888 us 299.32 fps [ETA 0:00:00]  Pass 1/2 frame 74/73 15768B 247511 us 298.98 fps [ETA 0:00:00]  Pass 1/2 frame 75/74 15984B 251243 us 298.52 fps [ETA 0:00:00]  Pass 1/2 frame 76/75 16200B 254946 us 298.10 fps [ETA 0:00:00]  Pass 1/2 frame 77/76 16416B 258500 us 297.87 fps [ETA 0:00:00]  Pass 1/2 frame 78/77 16632B 262072 us 297.63 fps [ETA 0:00:00]  Pass 1/2 frame 79/78 16848B 265866 us 297.14 fps [ETA 0:00:00]  Pass 1/2 frame 80/79 17064B 270065 us 296.22 fps [ETA 0:00:00]  Pass 1/2 frame 81/80 17280B 274170 us 295.44 fps [ETA 0:00:00]  Pass 1/2 frame 82/81 17496B 277644 us 295.34 fps [ETA 0:00:00]  Pass 1/2 frame 83/82 17712B 280861 us 295.52 fps [ETA 0:00:00]  Pass 1/2 frame 84/83 17928B 284218 us 295.55 fps [ETA 0:00:00]  Pass 1/2 frame 85/84 18144B 287461 us 295.69 fps [ETA 0:00:00]  Pass 1/2 frame 86/85 18360B 290740 us 295.80 fps [ETA 0:00:00]  Pass 1/2 frame 87/86 18576B 293862 us 296.06 fps [ETA 0:00:00]  Pass 1/2 frame 88/87 18792B 297159 us 296.14 fps [ETA 0:00:00]  Pass 1/2 frame 89/88 19008B 300393 us 296.28 fps [ETA 0:00:00]  Pass 1/2 frame 90/89 19224B 303610 us 296.43 fps [ETA 0:00:00]  Pass 1/2 frame 91/90 19440B 306846 us 296.57 fps [ETA 0:00:00]  Pass 1/2 frame 92/91 19656B 310020 us 296.76 fps [ETA 0:00:00]  Pass 1/2 frame 93/92 19872B 313206 us 296.93 fps [ETA 0:00:00]  Pass 1/2 frame 94/93 20088B 316441 us 297.05 fps [ETA 0:00:00]  Pass 1/2 frame 95/94 20304B 319617 us 297.23 fps [ETA 0:00:00]  Pass 1/2 frame 96/95 20520B 322755 us 297.44 fps [ETA 0:00:00]  Pass 1/2 frame 97/96 20736B 325959 us 297.58 fps [ETA 0:00:00]  Pass 1/2 frame 98/97 20952B 329160 us 297.73 fps [ETA 0:00:00]  Pass 1/2 frame 99/98 21168B 332335 us 297.89 fps [ETA 0:00:00]  Pass 1/2 frame 100/99 21384B 335540 us 298.03 fps [ETA 0:00:00]  Pass 1/2 frame 101/100 21600B 338696 us 298.20 fps [ETA 0:00:00]  Pass 1/2 frame 102/101 21816B 342242 us 298.03 fps [ETA 0:00:00]  Pass 1/2 frame 103/102 22032B 345618 us 298.02 fps [ETA 0:00:00]  Pass 1/2 frame 104/103 22248B 348805 us 298.16 fps [ETA 0:00:00]  Pass 1/2 frame 105/104 22464B 352155 us 298.16 fps [ETA 0:00:00]  Pass 1/2 frame 106/105 22680B 355975 us 297.77 fps [ETA 0:00:00]  Pass 1/2 frame 107/106 22896B 359463 us 297.67 fps [ETA 0:00:00]  Pass 1/2 frame 108/107 23112B 363898 us 296.79 fps [ETA 0:00:00]  Pass 1/2 frame 109/108 23328B 367449 us 296.64 fps [ETA 0:00:00]  Pass 1/2 frame 110/109 23544B 370722 us 296.72 fps [ETA 0:00:00]  Pass 1/2 frame 111/110 23760B 373993 us 296.80 fps [ETA 0:00:00]  Pass 1/2 frame 112/111 23976B 377175 us 296.94 fps [ETA 0:00:00]  Pass 1/2 frame 113/112 24192B 380394 us 297.06 fps [ETA 0:00:00]  Pass 1/2 frame 114/113 24408B 383604 us 297.18 fps [ETA 0:00:00]  Pass 1/2 frame 115/114 24624B 386944 us 297.20 fps [ETA 0:00:00]  Pass 1/2 frame 116/115 24840B 390260 us 297.24 fps [ETA 0:00:00]  Pass 1/2 frame 117/116 25056B 393454 us 297.37 fps [ETA 0:00:00]  Pass 1/2 frame 118/117 25272B 396632 us 297.51 fps [ETA 0:00:00]  Pass 1/2 frame 119/118 25488B 399965 us 297.53 fps [ETA 0:00:00]  Pass 1/2 frame 120/119 25704B 403715 us 297.24 fps [ETA 0:00:00]  Pass 1/2 frame 121/120 25920B 408510 us 296.20 fps [ETA 0:00:00]  Pass 1/2 frame 122/121 26136B 412550 us 295.72 fps [ETA 0:00:00]  Pass 1/2 frame 123/122 26352B 417029 us 294.94 fps [ETA 0:00:00]  Pass 1/2 frame 124/123 26568B 421229 us 294.38 fps [ETA 0:00:00]  Pass 1/2 frame 125/124 26784B 425528 us 293.75 fps [ETA 0:00:00]  Pass 1/2 frame 126/125 27000B 430152 us 292.92 fps [ETA 0:00:00]  Pass 1/2 frame 127/126 27216B 435014 us 291.94 fps [ETA 0:00:00]  Pass 1/2 frame 128/127 27432B 439459 us 291.27 fps [ETA 0:00:00]  Pass 1/2 frame 129/128 27648B 443743 us 290.71 fps [ETA 0:00:00]  Pass 1/2 frame 130/129 27864B 448160 us 290.07 fps [ETA 0:00:00]  Pass 1/2 frame 131/130 28080B 452704 us 289.37 fps [ETA 0:00:00]  Pass 1/2 frame 132/131 28296B 457632 us 288.44 fps [ETA 0:00:00]  Pass 1/2 frame 133/132 28512B 461961 us 287.90 fps [ETA 0:00:00]  Pass 1/2 frame 134/133 28728B 466262 us 287.39 fps [ETA 0:00:00]  Pass 1/2 frame 135/134 28944B 470418 us 286.98 fps [ETA 0:00:00]  Pass 1/2 frame 136/135 29160B 474176 us 286.81 fps [ETA 0:00:00]  Pass 1/2 frame 137/136 29376B 477364 us 286.99 fps [ETA 0:00:00]  Pass 1/2 frame 138/137 29592B 480605 us 287.14 fps [ETA 0:00:00]  Pass 1/2 frame 139/138 29808B 483825 us 287.29 fps [ETA 0:00:00]  Pass 1/2 frame 140/139 30024B 487120 us 287.40 fps [ETA 0:00:00]  Pass 1/2 frame 141/140 30240B 490330 us 287.56 fps [ETA 0:00:00]  Pass 1/2 frame 142/141 30456B 493554 us 287.71 fps [ETA 0:00:00]  Pass 1/2 frame 143/142 30672B 496728 us 287.88 fps [ETA 0:00:00]  Pass 1/2 frame 144/143 30888B 500053 us 287.97 fps [ETA 0:00:00]  Pass 1/2 frame 145/144 31104B 503388 us 288.05 fps [ETA 0:00:00]  Pass 1/2 frame 146/145 31320B 506706 us 288.14 fps [ETA 0:00:00]  Pass 1/2 frame 147/146 31536B 511001 us 287.67 fps [ETA 0:00:00]  Pass 1/2 frame 148/147 31752B 516332 us 286.64 fps [ETA 0:00:00]  Pass 1/2 frame 149/148 31968B 521262 us 285.84 fps [ETA 0:00:00]  Pass 1/2 frame 150/149 32184B 525384 us 285.51 fps [ETA 0:00:00]  Pass 1/2 frame 151/150 32400B 529898 us 284.96 fps [ETA 0:00:00]  Pass 1/2 frame 152/151 32616B 533612 us 284.85 fps [ETA 0:00:00]  Pass 1/2 frame 153/152 32832B 537704 us 284.54 fps [ETA 0:00:00]  Pass 1/2 frame 154/153 33048B 541781 us 284.25 fps [ETA 0:00:00]  Pass 1/2 frame 155/154 33264B 545492 us 284.15 fps [ETA 0:00:00]  Pass 1/2 frame 156/155 33480B 548927 us 284.19 fps [ETA 0:00:00]  Pass 1/2 frame 157/156 33696B 552246 us 284.29 fps [ETA 0:00:00]  Pass 1/2 frame 158/157 33912B 555485 us 284.44 fps [ETA 0:00:00]  Pass 1/2 frame 159/158 34128B 558814 us 284.53 fps [ETA 0:00:00]  Pass 1/2 frame 160/159 34344B 561999 us 284.70 fps [ETA 0:00:00]  Pass 1/2 frame 161/160 34560B 565257 us 284.83 fps [ETA 0:00:00]  Pass 1/2 frame 162/161 34776B 568441 us 284.99 fps [ETA 0:00:00]  Pass 1/2 frame 163/162 34992B 571640 us 285.14 fps [ETA 0:00:00]  Pass 1/2 frame 164/163 35208B 574894 us 285.27 fps [ETA 0:00:00]  Pass 1/2 frame 165/164 35424B 578148 us 285.39 fps [ETA 0:00:00]  Pass 1/2 frame 166/165 35640B 581309 us 285.56 fps [ETA 0:00:00]  Pass 1/2 frame 167/166 35856B 584514 us 285.71 fps [ETA 0:00:00]  Pass 1/2 frame 168/167 36072B 587682 us 285.87 fps [ETA 0:00:00]  Pass 1/2 frame 169/168 36288B 590811 us 286.05 fps [ETA 0:00:00]  Pass 1/2 frame 170/169 36504B 594063 us 286.16 fps [ETA 0:00:00]  Pass 1/2 frame 171/170 36720B 597315 us 286.28 fps [ETA 0:00:00]  Pass 1/2 frame 172/171 36936B 600464 us 286.45 fps [ETA 0:00:00]  Pass 1/2 frame 173/172 37152B 603803 us 286.52 fps [ETA 0:00:00]  Pass 1/2 frame 174/173 37368B 608345 us 286.02 fps [ETA 0:00:00]  Pass 1/2 frame 175/174 37584B 612765 us 285.59 fps [ETA 0:00:00]  Pass 1/2 frame 176/175 37800B 616688 us 285.40 fps [ETA 0:00:00]  Pass 1/2 frame 177/176 38016B 620247 us 285.37 fps [ETA 0:00:00]  Pass 1/2 frame 178/177 38232B 623454 us 285.51 fps [ETA 0:00:00]  Pass 1/2 frame 179/178 38448B 626763 us 285.59 fps [ETA 0:00:00]  Pass 1/2 frame 180/179 38664B 630195 us 285.63 fps [ETA 0:00:00]  Pass 1/2 frame 181/180 38880B 634566 us 285.23 fps [ETA 0:00:00]  Pass 1/2 frame 182/181 39096B 638535 us 285.03 fps [ETA 0:00:00]  Pass 1/2 frame 183/182 39312B 642434 us 284.85 fps [ETA 0:00:00]  Pass 1/2 frame 184/183 39528B 646585 us 284.57 fps [ETA 0:00:00]  Pass 1/2 frame 185/184 39744B 649982 us 284.62 fps [ETA 0:00:00]  Pass 1/2 frame 186/185 39960B 653329 us 284.70 fps [ETA 0:00:00]  Pass 1/2 frame 187/186 40176B 656610 us 284.80 fps [ETA 0:00:00]  Pass 1/2 frame 188/187 40392B 659992 us 284.85 fps [ETA 0:00:00]  Pass 1/2 frame 189/188 40608B 663357 us 284.91 fps [ETA 0:00:00]  Pass 1/2 frame 190/189 40824B 666806 us 284.94 fps [ETA 0:00:00]  Pass 1/2 frame 191/190 41040B 670140 us 285.02 fps [ETA 0:00:00]  Pass 1/2 frame 192/191 41256B 673815 us 284.94 fps [ETA 0:00:00]  Pass 1/2 frame 193/192 41472B 677066 us 285.05 fps [ETA 0:00:00]  Pass 1/2 frame 194/193 41688B 680329 us 285.16 fps [ETA 0:00:00]  Pass 1/2 frame 195/194 41904B 683684 us 285.22 fps [ETA 0:00:00]  Pass 1/2 frame 196/195 42120B 686880 us 285.35 fps [ETA 0:00:00]  Pass 1/2 frame 197/196 42336B 690153 us 285.44 fps [ETA 0:00:00]  Pass 1/2 frame 198/197 42552B 693418 us 285.54 fps [ETA 0:00:00]  Pass 1/2 frame 199/198 42768B 697745 us 285.20 fps [ETA 0:00:00]  Pass 1/2 frame 200/199 42984B 701476 us 285.11 fps [ETA 0:00:00]  Pass 1/2 frame 201/200 43200B 704700 us 285.23 fps [ETA 0:00:00]  Pass 1/2 frame 202/201 43416B 708503 us 285.11 fps [ETA 0:00:00]  Pass 1/2 frame 203/202 43632B 712631 us 284.86 fps [ETA 0:00:00]  Pass 1/2 frame 204/203 43848B 716982 us 284.53 fps [ETA 0:00:00]  Pass 1/2 frame 205/204 44064B 721078 us 284.30 fps [ETA 0:00:00]  Pass 1/2 frame 206/205 44280B 724218 us 284.44 fps [ETA 0:00:00]  Pass 1/2 frame 207/206 44496B 728479 us 284.15 fps [ETA 0:00:00]  Pass 1/2 frame 208/207 44712B 732055 us 284.13 fps [ETA 0:00:00]  Pass 1/2 frame 209/208 44928B 735887 us 284.01 fps [ETA 0:00:00]  Pass 1/2 frame 210/209 45144B 739427 us 284.00 fps [ETA 0:00:00]  Pass 1/2 frame 211/210 45360B 742667 us 284.11 fps [ETA 0:00:00]  Pass 1/2 frame 212/211 45576B 745803 us 284.26 fps [ETA 0:00:00]  Pass 1/2 frame 213/212 45792B 749148 us 284.32 fps [ETA 0:00:00]  Pass 1/2 frame 214/213 46008B 752502 us 284.38 fps [ETA 0:00:00]  Pass 1/2 frame 215/214 46224B 756472 us 284.21 fps [ETA 0:00:00]  Pass 1/2 frame 216/215 46440B 761535 us 283.64 fps [ETA 0:00:00]  Pass 1/2 frame 217/216 46656B 766070 us 283.26 fps [ETA 0:00:00]  Pass 1/2 frame 218/217 46872B 769304 us 283.37 fps [ETA 0:00:00]  Pass 1/2 frame 219/218 47088B 772903 us 283.35 fps [ETA 0:00:00]  Pass 1/2 frame 220/219 47304B 776204 us 283.43 fps [ETA 0:00:00]  Pass 1/2 frame 221/220 47520B 779444 us 283.54 fps [ETA 0:00:00]  Pass 1/2 frame 222/221 47736B 782798 us 283.60 fps [ETA 0:00:00]  Pass 1/2 frame 223/222 47952B 786083 us 283.69 fps [ETA 0:00:00]  Pass 1/2 frame 224/223 48168B 789393 us 283.76 fps [ETA 0:00:00]  Pass 1/2 frame 225/224 48384B 792658 us 283.86 fps [ETA 0:00:00]  Pass 1/2 frame 226/225 48600B 795996 us 283.92 fps [ETA 0:00:00]  Pass 1/2 frame 227/226 48816B 799286 us 284.00 fps [ETA 0:00:00]  Pass 1/2 frame 228/227 49032B 802535 us 284.10 fps [ETA 0:00:00]  Pass 1/2 frame 229/228 49248B 805998 us 284.12 fps [ETA 0:00:00]  Pass 1/2 frame 230/229 49464B 809258 us 284.21 fps [ETA 0:00:00]  Pass 1/2 frame 231/230 49680B 812525 us 284.30 fps [ETA 0:00:00]  Pass 1/2 frame 232/231 49896B 815735 us 284.41 fps [ETA 0:00:00]  Pass 1/2 frame 233/232 50112B 819008 us 284.49 fps [ETA 0:00:00]  Pass 1/2 frame 234/233 50328B 822266 us 284.58 fps [ETA 0:00:00]  Pass 1/2 frame 235/234 50544B 825502 us 284.68 fps [ETA 0:00:00]  Pass 1/2 frame 236/235 50760B 828698 us 284.78 fps [ETA 0:00:00]  Pass 1/2 frame 237/236 50976B 831820 us 284.92 fps [ETA 0:00:00]  Pass 1/2 frame 238/237 51192B 835124 us 284.99 fps [ETA 0:00:00]  Pass 1/2 frame 239/238 51408B 838385 us 285.07 fps [ETA 0:00:00]  Pass 1/2 frame 240/239 51624B 841831 us 285.09 fps [ETA 0:00:00]  Pass 1/2 frame 241/240 51840B 845205 us 285.14 fps [ETA 0:00:00]  Pass 1/2 frame 242/241 52056B 848585 us 285.18 fps [ETA 0:00:00]  Pass 1/2 frame 243/242 52272B 851916 us 285.24 fps [ETA 0:00:00]  Pass 1/2 frame 244/243 52488B 855162 us 285.33 fps [ETA 0:00:00]  Pass 1/2 frame 245/244 52704B 858387 us 285.42 fps [ETA 0:00:00]  Pass 1/2 frame 246/245 52920B 861786 us 285.45 fps [ETA 0:00:00]  Pass 1/2 frame 247/246 53136B 865089 us 285.52 fps [ETA 0:00:00]  Pass 1/2 frame 248/247 53352B 868294 us 285.62 fps [ETA 0:00:00]  Pass 1/2 frame 249/248 53568B 871483 us 285.72 fps [ETA 0:00:00]  Pass 1/2 frame 250/249 53784B 874625 us 285.84 fps [ETA 0:00:00]  Pass 1/2 frame 250/250 54000B 877731 us 284.83 fps [ETA 0:00:00]  Pass 1/2 frame 250/251 54216B 1734b/f 43372b/s 877703 us (284.83 fps) 227s Pass 2/2 frame 1/0 0B 877732 us 1.14 fps [ETA unknown]  Pass 2/2 frame 2/0 0B 882333 us 2.27 fps [ETA unknown]  Pass 2/2 frame 3/0 0B 882342 us 3.40 fps [ETA unknown]  Pass 2/2 frame 4/0 0B 882352 us 4.53 fps [ETA unknown]  Pass 2/2 frame 5/0 0B 882380 us 5.67 fps [ETA unknown]  Pass 2/2 frame 6/0 0B 882389 us 6.80 fps [ETA unknown]  Pass 2/2 frame 7/0 0B 882399 us 7.93 fps [ETA unknown]  Pass 2/2 frame 8/0 0B 882408 us 9.07 fps [ETA unknown]  Pass 2/2 frame 9/0 0B 882417 us 10.20 fps [ETA unknown]  Pass 2/2 frame 10/0 0B 882429 us 11.33 fps [ETA unknown]  Pass 2/2 frame 11/0 0B 882455 us 12.47 fps [ETA unknown]  Pass 2/2 frame 12/0 0B 882466 us 13.60 fps [ETA unknown]  Pass 2/2 frame 13/0 0B 882475 us 14.73 fps [ETA unknown]  Pass 2/2 frame 14/0 0B 882486 us 15.86 fps [ETA unknown]  Pass 2/2 frame 15/0 0B 882498 us 17.00 fps [ETA unknown]  Pass 2/2 frame 16/0 0B 882506 us 18.13 fps [ETA unknown]  Pass 2/2 frame 17/0 0B 882516 us 19.26 fps [ETA unknown]  Pass 2/2 frame 18/0 0B 882526 us 20.40 fps [ETA unknown]  Pass 2/2 frame 19/0 0B 882538 us 21.53 fps [ETA unknown]  Pass 2/2 frame 20/0 0B 882548 us 22.66 fps [ETA unknown]  Pass 2/2 frame 21/0 0B 882558 us 23.79 fps [ETA unknown]  Pass 2/2 frame 22/0 0B 882567 us 24.93 fps [ETA unknown]  Pass 2/2 frame 23/0 0B 882577 us 26.06 fps [ETA unknown]  Pass 2/2 frame 24/0 0B 882586 us 27.19 fps [ETA unknown]  Pass 2/2 frame 25/0 0B 882596 us 28.33 fps [ETA unknown] 4536F Pass 2/2 frame 26/1 4536B 2031270 us 12.80 fps [ETA 0:08:25] 1358F Pass 2/2 frame 27/2 5894B 2331186 us 11.58 fps [ETA 0:07:40] 195F Pass 2/2 frame 28/3 6089B 2608084 us 10.74 fps [ETA 0:06:41] 167F Pass 2/2 frame 29/4 6256B 2808941 us 10.32 fps [ETA 0:05:43] 165F Pass 2/2 frame 30/5 6421B 3002836 us 9.99 fps [ETA 0:04:53] 160F Pass 2/2 frame 31/6 6581B 3194259 us 9.70 fps [ETA 0:04:12] 126F Pass 2/2 frame 32/7 6707B 3409268 us 9.39 fps [ETA 0:03:40] 160F Pass 2/2 frame 33/8 6867B 3594166 us 9.18 fps [ETA 0:03:14] 136F Pass 2/2 frame 34/9 7003B 3778556 us 9.00 fps [ETA 0:02:54] 134F Pass 2/2 frame 35/10 7137B 3975067 us 8.80 fps [ETA 0:02:37] 119F Pass 2/2 frame 36/11 7256B 4159964 us 8.65 fps [ETA 0:02:23] 58F Pass 2/2 frame 37/12 7314B 4303454 us 8.60 fps [ETA 0:02:11] 19F Pass 2/2 frame 38/13 7333B 5448075 us 6.97 fps [ETA 0:02:06] 3481F Pass 2/2 frame 39/14 10814B 5639525 us 6.92 fps [ETA 0:02:00] 168F Pass 2/2 frame 40/15 10982B 5824882 us 6.87 fps [ETA 0:01:55] 180F Pass 2/2 frame 41/16 11162B 6007064 us 6.83 fps [ETA 0:01:50] 170F Pass 2/2 frame 42/17 11332B 6182210 us 6.79 fps [ETA 0:01:46] 170F Pass 2/2 frame 43/18 11502B 6356166 us 6.77 fps [ETA 0:01:42] 142F Pass 2/2 frame 44/19 11644B 6518277 us 6.75 fps [ETA 0:01:38] 158F Pass 2/2 frame 45/20 11802B 6687523 us 6.73 fps [ETA 0:01:34] 145F Pass 2/2 frame 46/21 11947B 6858991 us 6.71 fps [ETA 0:01:31] 174F Pass 2/2 frame 47/22 12121B 7029834 us 6.69 fps [ETA 0:01:28] 154F Pass 2/2 frame 48/23 12275B 7196027 us 6.67 fps [ETA 0:01:25] 89F Pass 2/2 frame 49/24 12364B 7324178 us 6.69 fps [ETA 0:01:22] 23F Pass 2/2 frame 50/25 12387B 8266051 us 6.05 fps [ETA 0:01:21] 2774F Pass 2/2 frame 51/26 15161B 8485183 us 6.01 fps [ETA 0:01:19] 183F Pass 2/2 frame 52/27 15344B 8679637 us 5.99 fps [ETA 0:01:18] 205F Pass 2/2 frame 53/28 15549B 8871856 us 5.97 fps [ETA 0:01:16] 174F Pass 2/2 frame 54/29 15723B 9061416 us 5.96 fps [ETA 0:01:15] 195F Pass 2/2 frame 55/30 15918B 9248497 us 5.95 fps [ETA 0:01:14] 177F Pass 2/2 frame 56/31 16095B 9424211 us 5.94 fps [ETA 0:01:12] 179F Pass 2/2 frame 57/32 16274B 9599316 us 5.94 fps [ETA 0:01:11] 167F Pass 2/2 frame 58/33 16441B 9768370 us 5.94 fps [ETA 0:01:10] 179F Pass 2/2 frame 59/34 16620B 9955683 us 5.93 fps [ETA 0:01:09] 201F Pass 2/2 frame 60/35 16821B 10140 ms 5.92 fps [ETA 0:01:07] 131F Pass 2/2 frame 61/36 16952B 10273 ms 5.94 fps [ETA 0:01:06] 19F Pass 2/2 frame 62/37 16971B 11290 ms 5.49 fps [ETA 0:01:06] 2839F Pass 2/2 frame 63/38 19810B 11486 ms 5.48 fps [ETA 0:01:05] 240F Pass 2/2 frame 64/39 20050B 11677 ms 5.48 fps [ETA 0:01:05] 237F Pass 2/2 frame 65/40 20287B 11872 ms 5.47 fps [ETA 0:01:04] 278F Pass 2/2 frame 66/41 20565B 12058 ms 5.47 fps [ETA 0:01:03] 282F Pass 2/2 frame 67/42 20847B 12245 ms 5.47 fps [ETA 0:01:03] 256F Pass 2/2 frame 68/43 21103B 12428 ms 5.47 fps [ETA 0:01:02] 254F Pass 2/2 frame 69/44 21357B 12597 ms 5.48 fps [ETA 0:01:01] 264F Pass 2/2 frame 70/45 21621B 12769 ms 5.48 fps [ETA 0:01:00] 237F Pass 2/2 frame 71/46 21858B 12964 ms 5.48 fps [ETA 0:01:00] 304F Pass 2/2 frame 72/47 22162B 13156 ms 5.47 fps [ETA 0:00:59] 212F Pass 2/2 frame 73/48 22374B 13320 ms 5.48 fps [ETA 0:00:58] 23F Pass 2/2 frame 74/49 22397B 14436 ms 5.13 fps [ETA 0:00:58] 2918F Pass 2/2 frame 75/50 25315B 14633 ms 5.13 fps [ETA 0:00:58] 370F Pass 2/2 frame 76/51 25685B 14846 ms 5.12 fps [ETA 0:00:58] 317F Pass 2/2 frame 77/52 26002B 15052 ms 5.12 fps [ETA 0:00:57] 385F Pass 2/2 frame 78/53 26387B 15245 ms 5.12 fps [ETA 0:00:57] 396F Pass 2/2 frame 79/54 26783B 15433 ms 5.12 fps [ETA 0:00:56] 307F Pass 2/2 frame 80/55 27090B 15615 ms 5.12 fps [ETA 0:00:56] 412F Pass 2/2 frame 81/56 27502B 15808 ms 5.12 fps [ETA 0:00:55] 358F Pass 2/2 frame 82/57 27860B 15989 ms 5.13 fps [ETA 0:00:55] 308F Pass 2/2 frame 83/58 28168B 16193 ms 5.13 fps [ETA 0:00:55] 308F Pass 2/2 frame 84/59 28476B 16384 ms 5.13 fps [ETA 0:00:54] 305F Pass 2/2 frame 85/60 28781B 16556 ms 5.13 fps [ETA 0:00:53] 19F Pass 2/2 frame 86/61 28800B 17527 ms 4.91 fps [ETA 0:00:53] 3282F Pass 2/2 frame 87/62 32082B 17741 ms 4.90 fps [ETA 0:00:53] 599F Pass 2/2 frame 88/63 32681B 17947 ms 4.90 fps [ETA 0:00:53] 463F Pass 2/2 frame 89/64 33144B 18153 ms 4.90 fps [ETA 0:00:52] 518F Pass 2/2 frame 90/65 33662B 18350 ms 4.90 fps [ETA 0:00:52] 617F Pass 2/2 frame 91/66 34279B 18541 ms 4.91 fps [ETA 0:00:52] 535F Pass 2/2 frame 92/67 34814B 18733 ms 4.91 fps [ETA 0:00:51] 609F Pass 2/2 frame 93/68 35423B 18921 ms 4.91 fps [ETA 0:00:51] 504F Pass 2/2 frame 94/69 35927B 19105 ms 4.92 fps [ETA 0:00:51] 512F Pass 2/2 frame 95/70 36439B 19302 ms 4.92 fps [ETA 0:00:50] 502F Pass 2/2 frame 96/71 36941B 19500 ms 4.92 fps [ETA 0:00:50] 519F Pass 2/2 frame 97/72 37460B 19677 ms 4.93 fps [ETA 0:00:49] 19F Pass 2/2 frame 98/73 37479B 20581 ms 4.76 fps [ETA 0:00:49] 3235F Pass 2/2 frame 99/74 40714B 20800 ms 4.76 fps [ETA 0:00:49] 711F Pass 2/2 frame 100/75 41425B 21012 ms 4.76 fps [ETA 0:00:48] 597F Pass 2/2 frame 101/76 42022B 21221 ms 4.76 fps [ETA 0:00:48] 601F Pass 2/2 frame 102/77 42623B 21404 ms 4.77 fps [ETA 0:00:48] 651F Pass 2/2 frame 103/78 43274B 21589 ms 4.77 fps [ETA 0:00:48] 678F Pass 2/2 frame 104/79 43952B 21777 ms 4.78 fps [ETA 0:00:47] 599F Pass 2/2 frame 105/80 44551B 21960 ms 4.78 fps [ETA 0:00:47] 593F Pass 2/2 frame 106/81 45144B 22146 ms 4.79 fps [ETA 0:00:46] 578F Pass 2/2 frame 107/82 45722B 22354 ms 4.79 fps [ETA 0:00:46] 582F Pass 2/2 frame 108/83 46304B 22551 ms 4.79 fps [ETA 0:00:46] 623F Pass 2/2 frame 109/84 46927B 22745 ms 4.79 fps [ETA 0:00:45] 22F Pass 2/2 frame 110/85 46949B 23755 ms 4.63 fps [ETA 0:00:45] 3273F Pass 2/2 frame 111/86 50222B 23968 ms 4.63 fps [ETA 0:00:45] 717F Pass 2/2 frame 112/87 50939B 24194 ms 4.63 fps [ETA 0:00:45] 668F Pass 2/2 frame 113/88 51607B 24401 ms 4.63 fps [ETA 0:00:44] 635F Pass 2/2 frame 114/89 52242B 24605 ms 4.63 fps [ETA 0:00:44] 611F Pass 2/2 frame 115/90 52853B 24794 ms 4.64 fps [ETA 0:00:44] 622F Pass 2/2 frame 116/91 53475B 24983 ms 4.64 fps [ETA 0:00:43] 607F Pass 2/2 frame 117/92 54082B 25180 ms 4.65 fps [ETA 0:00:43] 658F Pass 2/2 frame 118/93 54740B 25377 ms 4.65 fps [ETA 0:00:43] 523F Pass 2/2 frame 119/94 55263B 25585 ms 4.65 fps [ETA 0:00:42] 601F Pass 2/2 frame 120/95 55864B 25785 ms 4.65 fps [ETA 0:00:42] 642F Pass 2/2 frame 121/96 56506B 25981 ms 4.66 fps [ETA 0:00:42] 32F Pass 2/2 frame 122/97 56538B 26968 ms 4.52 fps [ETA 0:00:42] 3209F Pass 2/2 frame 123/98 59747B 27198 ms 4.52 fps [ETA 0:00:41] 667F Pass 2/2 frame 124/99 60414B 27422 ms 4.52 fps [ETA 0:00:41] 550F Pass 2/2 frame 125/100 60964B 27636 ms 4.52 fps [ETA 0:00:41] 624F Pass 2/2 frame 126/101 61588B 27844 ms 4.53 fps [ETA 0:00:41] 592F Pass 2/2 frame 127/102 62180B 28031 ms 4.53 fps [ETA 0:00:40] 611F Pass 2/2 frame 128/103 62791B 28216 ms 4.54 fps [ETA 0:00:40] 648F Pass 2/2 frame 129/104 63439B 28406 ms 4.54 fps [ETA 0:00:40] 593F Pass 2/2 frame 130/105 64032B 28598 ms 4.55 fps [ETA 0:00:39] 533F Pass 2/2 frame 131/106 64565B 28796 ms 4.55 fps [ETA 0:00:39] 621F Pass 2/2 frame 132/107 65186B 28992 ms 4.55 fps [ETA 0:00:39] 656F Pass 2/2 frame 133/108 65842B 29175 ms 4.56 fps [ETA 0:00:38] 28F Pass 2/2 frame 134/109 65870B 30186 ms 4.44 fps [ETA 0:00:38] 3208F Pass 2/2 frame 135/110 69078B 30402 ms 4.44 fps [ETA 0:00:38] 618F Pass 2/2 frame 136/111 69696B 30618 ms 4.44 fps [ETA 0:00:38] 583F Pass 2/2 frame 137/112 70279B 30818 ms 4.45 fps [ETA 0:00:37] 553F Pass 2/2 frame 138/113 70832B 31014 ms 4.45 fps [ETA 0:00:37] 560F Pass 2/2 frame 139/114 71392B 31217 ms 4.45 fps [ETA 0:00:37] 629F Pass 2/2 frame 140/115 72021B 31412 ms 4.46 fps [ETA 0:00:37] 627F Pass 2/2 frame 141/116 72648B 31617 ms 4.46 fps [ETA 0:00:36] 564F Pass 2/2 frame 142/117 73212B 31821 ms 4.46 fps [ETA 0:00:36] 651F Pass 2/2 frame 143/118 73863B 32040 ms 4.46 fps [ETA 0:00:36] 707F Pass 2/2 frame 144/119 74570B 32243 ms 4.47 fps [ETA 0:00:35] 628F Pass 2/2 frame 145/120 75198B 32439 ms 4.47 fps [ETA 0:00:35] 34F Pass 2/2 frame 146/121 75232B 32940 ms 4.43 fps [ETA 0:00:35] 3484F Pass 2/2 frame 147/122 78716B 33087 ms 4.44 fps [ETA 0:00:34] 1077F Pass 2/2 frame 148/123 79793B 33210 ms 4.46 fps [ETA 0:00:34] 1083F Pass 2/2 frame 149/124 80876B 33320 ms 4.47 fps [ETA 0:00:34] 1124F Pass 2/2 frame 150/125 82000B 33432 ms 4.49 fps [ETA 0:00:33] 1244F Pass 2/2 frame 151/126 83244B 33568 ms 4.50 fps [ETA 0:00:33] 1109F Pass 2/2 frame 152/127 84353B 33695 ms 4.51 fps [ETA 0:00:33] 23F Pass 2/2 frame 153/128 84376B 33798 ms 4.53 fps [ETA 0:00:32] 5205F Pass 2/2 frame 154/129 89581B 34713 ms 4.44 fps [ETA 0:00:32] 3492F Pass 2/2 frame 155/130 93073B 34856 ms 4.45 fps [ETA 0:00:32] 667F Pass 2/2 frame 156/131 93740B 35059 ms 4.45 fps [ETA 0:00:31] 635F Pass 2/2 frame 157/132 94375B 35270 ms 4.45 fps [ETA 0:00:31] 655F Pass 2/2 frame 158/133 95030B 35465 ms 4.45 fps [ETA 0:00:31] 694F Pass 2/2 frame 159/134 95724B 35657 ms 4.46 fps [ETA 0:00:31] 688F Pass 2/2 frame 160/135 96412B 35845 ms 4.46 fps [ETA 0:00:30] 641F Pass 2/2 frame 161/136 97053B 36025 ms 4.47 fps [ETA 0:00:30] 643F Pass 2/2 frame 162/137 97696B 36215 ms 4.47 fps [ETA 0:00:30] 503F Pass 2/2 frame 163/138 98199B 36410 ms 4.48 fps [ETA 0:00:29] 686F Pass 2/2 frame 164/139 98885B 36602 ms 4.48 fps [ETA 0:00:29] 707F Pass 2/2 frame 165/140 99592B 36809 ms 4.48 fps [ETA 0:00:29] 26F Pass 2/2 frame 166/141 99618B 37908 ms 4.38 fps [ETA 0:00:29] 3885F Pass 2/2 frame 167/142 103503B 38267 ms 4.36 fps [ETA 0:00:28] 633F Pass 2/2 frame 168/143 104136B 38481 ms 4.37 fps [ETA 0:00:28] 595F Pass 2/2 frame 169/144 104731B 38681 ms 4.37 fps [ETA 0:00:28] 700F Pass 2/2 frame 170/145 105431B 38885 ms 4.37 fps [ETA 0:00:28] 669F Pass 2/2 frame 171/146 106100B 39074 ms 4.38 fps [ETA 0:00:27] 733F Pass 2/2 frame 172/147 106833B 39262 ms 4.38 fps [ETA 0:00:27] 662F Pass 2/2 frame 173/148 107495B 39448 ms 4.39 fps [ETA 0:00:27] 673F Pass 2/2 frame 174/149 108168B 39640 ms 4.39 fps [ETA 0:00:26] 596F Pass 2/2 frame 175/150 108764B 39839 ms 4.39 fps [ETA 0:00:26] 734F Pass 2/2 frame 176/151 109498B 40046 ms 4.39 fps [ETA 0:00:26] 714F Pass 2/2 frame 177/152 110212B 40244 ms 4.40 fps [ETA 0:00:26] 33F Pass 2/2 frame 178/153 110245B 41127 ms 4.33 fps [ETA 0:00:25] 3159F Pass 2/2 frame 179/154 113404B 41337 ms 4.33 fps [ETA 0:00:25] 760F Pass 2/2 frame 180/155 114164B 41540 ms 4.33 fps [ETA 0:00:25] 577F Pass 2/2 frame 181/156 114741B 41746 ms 4.34 fps [ETA 0:00:25] 655F Pass 2/2 frame 182/157 115396B 41942 ms 4.34 fps [ETA 0:00:24] 638F Pass 2/2 frame 183/158 116034B 42134 ms 4.34 fps [ETA 0:00:24] 602F Pass 2/2 frame 184/159 116636B 42322 ms 4.35 fps [ETA 0:00:24] 675F Pass 2/2 frame 185/160 117311B 42524 ms 4.35 fps [ETA 0:00:24] 589F Pass 2/2 frame 186/161 117900B 42712 ms 4.35 fps [ETA 0:00:23] 537F Pass 2/2 frame 187/162 118437B 42908 ms 4.36 fps [ETA 0:00:23] 597F Pass 2/2 frame 188/163 119034B 43090 ms 4.36 fps [ETA 0:00:23] 678F Pass 2/2 frame 189/164 119712B 43294 ms 4.37 fps [ETA 0:00:22] 26F Pass 2/2 frame 190/165 119738B 44393 ms 4.28 fps [ETA 0:00:22] 3813F Pass 2/2 frame 191/166 123551B 44723 ms 4.27 fps [ETA 0:00:22] 670F Pass 2/2 frame 192/167 124221B 44943 ms 4.27 fps [ETA 0:00:22] 537F Pass 2/2 frame 193/168 124758B 45159 ms 4.27 fps [ETA 0:00:21] 644F Pass 2/2 frame 194/169 125402B 45357 ms 4.28 fps [ETA 0:00:21] 688F Pass 2/2 frame 195/170 126090B 45568 ms 4.28 fps [ETA 0:00:21] 629F Pass 2/2 frame 196/171 126719B 45763 ms 4.28 fps [ETA 0:00:21] 615F Pass 2/2 frame 197/172 127334B 45955 ms 4.29 fps [ETA 0:00:20] 623F Pass 2/2 frame 198/173 127957B 46137 ms 4.29 fps [ETA 0:00:20] 571F Pass 2/2 frame 199/174 128528B 46323 ms 4.30 fps [ETA 0:00:20] 542F Pass 2/2 frame 200/175 129070B 46522 ms 4.30 fps [ETA 0:00:20] 709F Pass 2/2 frame 201/176 129779B 46718 ms 4.30 fps [ETA 0:00:19] 46F Pass 2/2 frame 202/177 129825B 47669 ms 4.24 fps [ETA 0:00:19] 3326F Pass 2/2 frame 203/178 133151B 47863 ms 4.24 fps [ETA 0:00:19] 704F Pass 2/2 frame 204/179 133855B 48062 ms 4.24 fps [ETA 0:00:18] 649F Pass 2/2 frame 205/180 134504B 48260 ms 4.25 fps [ETA 0:00:18] 687F Pass 2/2 frame 206/181 135191B 48451 ms 4.25 fps [ETA 0:00:18] 696F Pass 2/2 frame 207/182 135887B 48637 ms 4.26 fps [ETA 0:00:18] 638F Pass 2/2 frame 208/183 136525B 48813 ms 4.26 fps [ETA 0:00:17] 591F Pass 2/2 frame 209/184 137116B 49007 ms 4.26 fps [ETA 0:00:17] 677F Pass 2/2 frame 210/185 137793B 49201 ms 4.27 fps [ETA 0:00:17] 584F Pass 2/2 frame 211/186 138377B 49392 ms 4.27 fps [ETA 0:00:17] 641F Pass 2/2 frame 212/187 139018B 49589 ms 4.28 fps [ETA 0:00:16] 651F Pass 2/2 frame 213/188 139669B 49797 ms 4.28 fps [ETA 0:00:16] 44F Pass 2/2 frame 214/189 139713B 50927 ms 4.20 fps [ETA 0:00:16] 3835F Pass 2/2 frame 215/190 143548B 51246 ms 4.20 fps [ETA 0:00:16] 678F Pass 2/2 frame 216/191 144226B 51456 ms 4.20 fps [ETA 0:00:15] 659F Pass 2/2 frame 217/192 144885B 51664 ms 4.20 fps [ETA 0:00:15] 647F Pass 2/2 frame 218/193 145532B 51873 ms 4.20 fps [ETA 0:00:15] 652F Pass 2/2 frame 219/194 146184B 52076 ms 4.21 fps [ETA 0:00:15] 1232F Pass 2/2 frame 220/195 147416B 52200 ms 4.21 fps [ETA 0:00:14] 561F Pass 2/2 frame 221/196 147977B 52396 ms 4.22 fps [ETA 0:00:14] 1107F Pass 2/2 frame 222/197 149084B 52536 ms 4.23 fps [ETA 0:00:14] 1113F Pass 2/2 frame 223/198 150197B 52663 ms 4.23 fps [ETA 0:00:13] 1121F Pass 2/2 frame 224/199 151318B 52791 ms 4.24 fps [ETA 0:00:13] 1359F Pass 2/2 frame 225/200 152677B 52912 ms 4.25 fps [ETA 0:00:13] 50F Pass 2/2 frame 226/201 152727B 54063 ms 4.18 fps [ETA 0:00:13] 3465F Pass 2/2 frame 227/202 156192B 54268 ms 4.18 fps [ETA 0:00:12] 887F Pass 2/2 frame 228/203 157079B 54474 ms 4.19 fps [ETA 0:00:12] 688F Pass 2/2 frame 229/204 157767B 54680 ms 4.19 fps [ETA 0:00:12] 790F Pass 2/2 frame 230/205 158557B 54887 ms 4.19 fps [ETA 0:00:12] 723F Pass 2/2 frame 231/206 159280B 55079 ms 4.19 fps [ETA 0:00:11] 855F Pass 2/2 frame 232/207 160135B 55271 ms 4.20 fps [ETA 0:00:11] 760F Pass 2/2 frame 233/208 160895B 55466 ms 4.20 fps [ETA 0:00:11] 731F Pass 2/2 frame 234/209 161626B 55659 ms 4.20 fps [ETA 0:00:10] 727F Pass 2/2 frame 235/210 162353B 55872 ms 4.21 fps [ETA 0:00:10] 790F Pass 2/2 frame 236/211 163143B 56071 ms 4.21 fps [ETA 0:00:10] 793F Pass 2/2 frame 237/212 163936B 56281 ms 4.21 fps [ETA 0:00:10] 53F Pass 2/2 frame 238/213 163989B 57226 ms 4.16 fps [ETA 0:00:09] 3516F Pass 2/2 frame 239/214 167505B 57423 ms 4.16 fps [ETA 0:00:09] 753F Pass 2/2 frame 240/215 168258B 57634 ms 4.16 fps [ETA 0:00:09] 732F Pass 2/2 frame 241/216 168990B 57842 ms 4.17 fps [ETA 0:00:09] 800F Pass 2/2 frame 242/217 169790B 58039 ms 4.17 fps [ETA 0:00:08] 770F Pass 2/2 frame 243/218 170560B 58245 ms 4.17 fps [ETA 0:00:08] 761F Pass 2/2 frame 244/219 171321B 58441 ms 4.18 fps [ETA 0:00:08] 847F Pass 2/2 frame 245/220 172168B 58632 ms 4.18 fps [ETA 0:00:08] 784F Pass 2/2 frame 246/221 172952B 58827 ms 4.18 fps [ETA 0:00:07] 778F Pass 2/2 frame 247/222 173730B 59028 ms 4.18 fps [ETA 0:00:07] 810F Pass 2/2 frame 248/223 174540B 59234 ms 4.19 fps [ETA 0:00:07] 729F Pass 2/2 frame 249/224 175269B 59427 ms 4.19 fps [ETA 0:00:06] 74F Pass 2/2 frame 250/225 175343B 60355 ms 4.14 fps [ETA 0:00:06] 3329F Pass 2/2 frame 250/226 178672B 60561 ms 4.13 fps [ETA 0:00:06] 759F 697F 789F 794F 783F 756F 736F 650F 861F 801F 56F 3294F 640F 740F 646F 844F 45F 3753F 1361F 1286F 1398F 1332F 685F 37F Pass 2/2 frame 250/250 202415B 65772 ms 3.80 fps [ETA 0:00:06]  Pass 2/2 frame 250/250 202415B 6477b/f 161932b/s 64894 ms (3.85 fps) 227s ffprobe version 7.1-3ubuntu3 Copyright (c) 2007-2024 the FFmpeg developers 227s built with gcc 13 (Ubuntu 13.3.0-12ubuntu1) 227s configuration: --prefix=/usr --extra-version=3ubuntu3 --toolchain=hardened --libdir=/usr/lib/s390x-linux-gnu --incdir=/usr/include/s390x-linux-gnu --arch=s390x --enable-gpl --disable-stripping --disable-libmfx --disable-omx --enable-gnutls --enable-libaom --enable-libass --enable-libbs2b --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libglslang --enable-libgme --enable-libgsm --enable-libharfbuzz --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-openal --enable-opencl --enable-opengl --disable-sndio --disable-libvpl --cc=gcc-13 --cxx=g++-13 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-ladspa --enable-libbluray --enable-libcaca --enable-libdvdnav --enable-libdvdread --enable-libjack --enable-libpulse --enable-librabbitmq --enable-librist --enable-libsrt --enable-libssh --enable-libsvtav1 --enable-libx264 --enable-libzmq --enable-libzvbi --enable-lv2 --enable-sdl2 --enable-libplacebo --enable-librav1e --disable-pocketsphinx --enable-librsvg --enable-libjxl --ignore-tests='hapenc-hap-none,hapenc-hapa-none,hapenc-hapq-none' --ignore-tests=filter-overlay_yuv420p10 --enable-shared 227s libavutil 59. 39.100 / 59. 39.100 227s libavcodec 61. 19.100 / 61. 19.100 227s libavformat 61. 7.100 / 61. 7.100 227s libavdevice 61. 3.100 / 61. 3.100 227s libavfilter 10. 4.100 / 10. 4.100 227s libswscale 8. 3.100 / 8. 3.100 227s libswresample 5. 3.100 / 5. 3.100 227s libpostproc 58. 3.100 / 58. 3.100 227s Input #0, matroska,webm, from 'out.raw': 227s Metadata: 227s encoder : libwebm-0.3.3.0 227s Duration: 00:00:09.96, start: 0.000000, bitrate: 164 kb/s 227s Stream #0:0(eng): Video: vp9 (Profile 0), yuv420p(tv), 320x240, SAR 1:1 DAR 4:3, 25 fps, 25 tbr, 1k tbn (default) 227s # ffprobe output 227s 227s [streams.stream.0] 227s index=0 227s codec_name=vp9 227s codec_long_name=Google VP9 227s profile=Profile 0 227s codec_type=video 227s codec_tag_string=[0][0][0][0] 227s codec_tag=0x0000 227s width=320 227s height=240 227s coded_width=320 227s coded_height=240 227s closed_captions=0 227s film_grain=0 227s has_b_frames=0 227s sample_aspect_ratio=1\:1 227s display_aspect_ratio=4\:3 227s pix_fmt=yuv420p 227s level=-99 227s color_range=tv 227s color_space=unknown 227s color_transfer=unknown 227s color_primaries=unknown 227s chroma_location=unspecified 227s field_order=unknown 227s refs=1 227s id=N/A 227s r_frame_rate=25/1 227s avg_frame_rate=25/1 227s time_base=1/1000 227s start_pts=0 227s start_time=0.000000 227s duration_ts=N/A 227s duration=N/A 227s bit_rate=N/A 227s max_bit_rate=N/A 227s bits_per_raw_sample=N/A 227s nb_frames=N/A 227s nb_read_frames=N/A 227s nb_read_packets=N/A 227s 227s [streams.stream.0.disposition] 227s default=1 227s dub=0 227s original=0 227s comment=0 227s lyrics=0 227s karaoke=0 227s forced=0 227s hearing_impaired=0 227s visual_impaired=0 227s clean_effects=0 227s attached_pic=0 227s timed_thumbnails=0 227s non_diegetic=0 227s captions=0 227s descriptions=0 227s metadata=0 227s dependent=0 227s still_image=0 227s multilayer=0 227s 227s [streams.stream.0.tags] 227s language=eng 227s codec_name=vp9 227s codec_long_name=Google VP9 227s /tmp/autopkgtest.JJ5B33/wrapper.sh: checking for leaked background processes... 227s /tmp/autopkgtest.JJ5B33/wrapper.sh: waiting for tee/cat subprocesses... 227s /tmp/autopkgtest.JJ5B33/wrapper.sh: cleaning up... 227s /tmp/autopkgtest.JJ5B33/wrapper.sh: Exit status: 0 227s autopkgtest: DBG: testbed command exited with code 0 227s autopkgtest [00:49:04]: test encode-testimage: -----------------------] 227s autopkgtest: DBG: testbed executing test finished with exit status 0 227s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/encode-testimage-stdout /tmp/autopkgtest-work.o0rqdblv/out/encode-testimage-stdout 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/encode-testimage-stderr /tmp/autopkgtest-work.o0rqdblv/out/encode-testimage-stderr 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest [00:49:05]: test encode-testimage: - - - - - - - - - - results - - - - - - - - - - 228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.JJ5B33/encode-testimage-artifacts/ /tmp/autopkgtest-work.o0rqdblv/out/artifacts/ 228s encode-testimage PASS 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.JJ5B33/encode-testimage-artifacts', '/tmp/autopkgtest.JJ5B33/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 228s autopkgtest: DBG: testbed command exited with code 0 228s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 228s autopkgtest [00:49:05]: @@@@@@@@@@@@@@@@@@@@ summary 228s encode-testimage PASS 228s autopkgtest: DBG: testbed stop 228s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.JJ5B33 228s autopkgtest: DBG: sending command to testbed: close 246s autopkgtest: DBG: got reply from testbed: ok 246s autopkgtest: DBG: sending command to testbed: quit 246s nova [W] Using flock in prodstack6-s390x 246s flock: timeout while waiting to get lock 246s Creating nova instance adt-plucky-s390x-libvpx-20250216-004517-juju-7f2275-prod-proposed-migration-environment-15-376bc2f5-37b5-4369-9acf-a9b5c8560501 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 246s nova [W] Timed out waiting for 4e029732-7c02-4ea3-9485-500df63917a0 to get deleted.