0s autopkgtest: DBG: testbed init 0s autopkgtest [22:41:06]: starting date and time: 2025-02-15 22:41:06+0000 1s autopkgtest [22:41:07]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 1s autopkgtest [22:41:07]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.6dj1qzz_/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 gnustep-dl2 --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-1.secgroup --name adt-plucky-s390x-gnustep-dl2-20250215-224106-juju-7f2275-prod-proposed-migration-environment-15-efeb56b7-8666-4142-8ffa-df5339988ab1 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 1s autopkgtest: DBG: got reply from testbed: ok 1s autopkgtest: DBG: testbed open, scratch=None 1s autopkgtest: DBG: sending command to testbed: open 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.0Hhmgj 110s autopkgtest: DBG: sending command to testbed: print-execute-command 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.gn7lc_1g/runcmd 110s autopkgtest: DBG: sending command to testbed: capabilities 110s autopkgtest: DBG: got reply from testbed: ok reboot revert-full-system isolation-machine revert suggested-normal-user=ubuntu root-on-testbed 110s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert-full-system', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0Hhmgj'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.0Hhmgj/wrapper.sh 110s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0Hhmgj/wrapper.sh'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [22:42:57]: testbed dpkg architecture: s390x 111s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [22:42:58]: testbed apt version: 2.9.28 112s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed has eatmydata 114s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest [22:43:01]: @@@@@@@@@@@@@@@@@@@@ test bed setup 115s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest [22:43:02]: testbed release detected to be: None 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: adding APT source: Types: deb deb-src 117s URIs: http://ftpmaster.internal/ubuntu/ 117s Suites: plucky-proposed 117s Components: main restricted universe multiverse 117s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 117s 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 [] 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 117s Package: * 117s Pin: release plucky-proposed 117s Pin-Priority: 500 117s 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 [] 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [22:43:04]: updating testbed package index (apt update) 118s 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'] 119s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 119s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 119s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 120s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 120s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 120s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 120s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 120s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 120s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 120s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 120s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 120s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 120s Fetched 2073 kB in 1s (2146 kB/s) 121s Reading package lists... 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 121s Package: * 121s Pin: release plucky-proposed 121s Pin-Priority: 100 121s 121s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 121s Pin: release plucky-proposed 121s Pin-Priority: 995 121s 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 [] 121s autopkgtest: DBG: testbed command exited with code 0 121s 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.0Hhmgj/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 121s autopkgtest: DBG: testbed command exited with code 0 121s 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'] 121s Reading package lists...+ lsb_release --codename --short 121s + RELEASE=plucky 121s + cat 121s + [ plucky != trusty ] 121s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 122s 122s Building dependency tree... 122s Reading state information... 122s Calculating upgrade... 122s The following packages were automatically installed and are no longer required: 122s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 122s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 122s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 122s linux-tools-6.11.0-8-generic 122s Use 'sudo apt autoremove' to remove them. 122s The following packages will be upgraded: 122s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 122s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s Need to get 1155 kB of archives. 122s After this operation, 16.4 kB of additional disk space will be used. 122s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 122s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 122s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 122s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 122s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 122s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 122s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 123s Preconfiguring packages ... 123s Fetched 1155 kB in 1s (1924 kB/s) 123s (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.) 123s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 123s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 123s Setting up dash (0.5.12-12ubuntu1) ... 123s (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.) 123s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 123s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 123s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 123s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 123s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 123s (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.) 123s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 123s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 123s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 123s (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.) 123s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 123s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 123s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 123s (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.) 123s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 123s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 123s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 123s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 123s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 123s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 123s Setting up libtasn1-6:s390x (4.20.0-2) ... 123s Processing triggers for libc-bin (2.40-4ubuntu1) ... 123s Processing triggers for man-db (2.13.0-1) ... 123s Processing triggers for debianutils (5.21) ... 124s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 124s Reading package lists...+ /usr/lib/apt/apt-helper analyze-pattern ?true 124s + uname -r 124s + sed s/\./\\./g 124s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 124s + apt list ?obsolete 124s + tail -n+2 124s + + grep -v ^linux-.*6\.12\.0-15-generic.* 124s cut -d/ -f1 124s + true 124s + obsolete_pkgs= 124s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 124s 124s Building dependency tree... 124s Reading state information... 124s The following packages will be REMOVED: 124s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 124s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 124s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 124s linux-tools-6.11.0-8-generic* 124s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 124s After this operation, 167 MB disk space will be freed. 124s (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.) 124s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 124s Removing libpython3.12t64:s390x (3.12.9-1) ... 124s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 124s Removing libnsl2:s390x (1.3.0-3build3) ... 124s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 124s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 124s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 125s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s Processing triggers for libc-bin (2.40-4ubuntu1) ... 125s (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.) 125s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 125s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 125s + grep -q trusty /etc/lsb-release 125s + [ ! -d /usr/share/doc/unattended-upgrades ] 125s + [ ! -d /usr/share/doc/lxd ] 126s + [ ! -d /usr/share/doc/lxd-client ] 126s + [ ! -d /usr/share/doc/snapd ] 126s + type iptables 126s + cat 126s + chmod 755 /etc/rc.local 126s + . /etc/rc.local 126s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 126s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 126s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 126s + uname -m 126s + [ s390x = ppc64le ] 126s + [ -d /run/systemd/system ] 126s + systemd-detect-virt --quiet --vm 126s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 126s + cat 126s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 126s + echo COMPRESS=lz4 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [22:43:12]: upgrading testbed (apt dist-upgrade and autopurge) 126s 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'] 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 126s Entering ResolveByKeep 126s 126s The following packages will be upgraded: 126s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 127s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 127s Need to get 10.7 MB of archives. 127s After this operation, 305 kB of additional disk space will be used. 127s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 127s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 127s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 127s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 127s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 127s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 128s Preconfiguring packages ... 128s Fetched 10.7 MB in 1s (10.4 MB/s) 128s (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.) 128s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 128s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 128s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 128s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 128s Checking for services that may need to be restarted... 128s Checking init scripts... 128s Checking for services that may need to be restarted... 128s Checking init scripts... 128s Stopping some services possibly affected by the upgrade (will be restarted later): 128s cron: stopping...done. 128s 128s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Setting up libc6:s390x (2.41-1ubuntu1) ... 128s Checking for services that may need to be restarted... 128s Checking init scripts... 128s Restarting services possibly affected by the upgrade: 128s cron: restarting...done. 128s 128s Services restarted successfully. 128s (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.) 128s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 128s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 128s Setting up libc-bin (2.41-1ubuntu1) ... 129s (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.) 129s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 129s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 129s Setting up iproute2 (6.13.0-1ubuntu1) ... 129s Setting up locales (2.41-1ubuntu1) ... 129s Installing new version of config file /etc/locale.alias ... 129s Generating locales (this might take a while)... 130s en_US.UTF-8... done 130s Generation complete. 130s Setting up libc-dev-bin (2.41-1ubuntu1) ... 130s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 130s Processing triggers for man-db (2.13.0-1) ... 131s Processing triggers for systemd (257.2-3ubuntu1) ... 131s autopkgtest: DBG: testbed command exited with code 0 131s 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'] 132s Reading package lists... 132s Building dependency tree... 132s Reading state information... 132s Starting pkgProblemResolver with broken count: 0 132s Starting 2 pkgProblemResolver with broken count: 0 132s Done 132s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 132s autopkgtest: DBG: testbed command exited with code 0 132s 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.0Hhmgj/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 132s autopkgtest: DBG: testbed command exited with code 1 132s autopkgtest [22:43:18]: rebooting testbed after setup commands that affected boot 132s autopkgtest: DBG: sending command to testbed: reboot 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0Hhmgj'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.0Hhmgj/autopkgtest-reboot 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0Hhmgj'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.0Hhmgj/autopkgtest-reboot-prepare 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest [22:43:37]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 151s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0Hhmgj/testbed-packages"], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0Hhmgj/testbed-packages /tmp/autopkgtest-work.6dj1qzz_/out/testbed-packages 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0Hhmgj'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.0Hhmgj/autopkgtest-reboot 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0Hhmgj'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.0Hhmgj/autopkgtest-reboot-prepare 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0Hhmgj/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: Binaries: initialising 153s autopkgtest [22:43:39]: @@@@@@@@@@@@@@@@@@@@ apt-source gnustep-dl2 153s autopkgtest: DBG: blame += gnustep-dl2 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 153s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'gnustep-dl2'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gnustep-dl2-postgresql-adaptor$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gnustep-dl2-postgresql-adaptor=0.12.0+git20171224-5build1'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgnustep-dl2-dev$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgnustep-dl2-dev=0.12.0+git20171224-5build1'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gnustep-dl2$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gnustep-dl2=0.12.0+git20171224-5build1'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gnustep-dl2-doc$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gnustep-dl2-doc=0.12.0+git20171224-5build1'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^gnustep-dl2-sqlite-adaptor$'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'gnustep-dl2-sqlite-adaptor=0.12.0+git20171224-5build1'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libgnustep-dl2-0deb$'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libgnustep-dl2-0deb=0.12.0+git20171224-5build1'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: install_deps: deps_new=[] 156s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s 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.0Hhmgj/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source gnustep-dl2=0.12.0+git20171224-5build1 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 gnustep-dl2_*.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'] 157s + cd / 157s + mktemp -d /tmp/autopkgtest.0Hhmgj/build.XXX 157s + builddir=/tmp/autopkgtest.0Hhmgj/build.kgT 157s + cd /tmp/autopkgtest.0Hhmgj/build.kgT 157s + apt-get source -d -q --only-source gnustep-dl2=0.12.0+git20171224-5build1 159s + OUT=Reading package lists... 159s NOTICE: 'gnustep-dl2' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/gnustep-team/gnustep-dl2.git 159s Please use: 159s git clone https://salsa.debian.org/gnustep-team/gnustep-dl2.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 1909 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (dsc) [2866 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (tar) [1883 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (diff) [23.3 kB] 159s Fetched 1909 kB in 2s (866 kB/s) 159s Download complete and in download only mode 159s + [ -n ] 159s + grep ^Get: 159s + echo Reading package lists... 159s NOTICE: 'gnustep-dl2' packaging is maintained in the 'Git' version control system at: 159s https://salsa.debian.org/gnustep-team/gnustep-dl2.git 159s Please use: 159s git clone https://salsa.debian.org/gnustep-team/gnustep-dl2.git 159s to retrieve the latest (possibly unreleased) updates to the package. 159s Need to get 1909 kB of source archives. 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (dsc) [2866 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (tar) [1883 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (diff) [23.3 kB] 159s Fetched 1909 kB in 2s (866 kB/s) 159s Download complete and in download only mode 159s Get:1 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (dsc) [2866 B] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (tar) [1883 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/universe gnustep-dl2 0.12.0+git20171224-5build1 (diff) [23.3 kB] 159s + dpkg-source -x gnustep-dl2_0.12.0+git20171224-5build1.dsc src 159s gpgv: Signature made Thu Feb 13 19:45:12 2025 UTC 159s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 159s gpgv: Can't check signature: No public key 159s dpkg-source: warning: cannot verify inline signature for ./gnustep-dl2_0.12.0+git20171224-5build1.dsc: no acceptable signature found 159s + chmod -R a+rX . 159s + cd src/. 159s + pwd 159s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest [22:43:45]: testing package gnustep-dl2 version 0.12.0+git20171224-5build1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0Hhmgj/build.kgT/src/debian/ /tmp/autopkgtest-work.6dj1qzz_/out/pkg/debian/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency gnustep-dl2 160s autopkgtest: DBG: synthesised dependency gnustep-dl2-doc 160s autopkgtest: DBG: synthesised dependency libgnustep-dl2-0deb 160s autopkgtest: DBG: synthesised dependency libgnustep-dl2-dev 160s autopkgtest: DBG: synthesised dependency gnustep-dl2-postgresql-adaptor 160s autopkgtest: DBG: synthesised dependency gnustep-dl2-sqlite-adaptor 160s autopkgtest: DBG: processing dependency postgresql 160s autopkgtest: DBG: Test defined: name tools path debian/tests/tools command "None" restrictions ['allow-stderr'] features [] depends ['gnustep-dl2', 'gnustep-dl2-doc', 'libgnustep-dl2-0deb', 'libgnustep-dl2-dev', 'gnustep-dl2-postgresql-adaptor', 'gnustep-dl2-sqlite-adaptor', 'postgresql'] 160s autopkgtest [22:43:46]: build not needed 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0Hhmgj/build.kgT/src/ /tmp/autopkgtest-work.6dj1qzz_/out/tests-tree/ 160s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: processing dependency @ 161s autopkgtest: DBG: synthesised dependency gnustep-dl2 161s autopkgtest: DBG: synthesised dependency gnustep-dl2-doc 161s autopkgtest: DBG: synthesised dependency libgnustep-dl2-0deb 161s autopkgtest: DBG: synthesised dependency libgnustep-dl2-dev 161s autopkgtest: DBG: synthesised dependency gnustep-dl2-postgresql-adaptor 161s autopkgtest: DBG: synthesised dependency gnustep-dl2-sqlite-adaptor 161s autopkgtest: DBG: processing dependency postgresql 161s autopkgtest: DBG: Test defined: name tools path debian/tests/tools command "None" restrictions ['allow-stderr'] features [] depends ['gnustep-dl2', 'gnustep-dl2-doc', 'libgnustep-dl2-0deb', 'libgnustep-dl2-dev', 'gnustep-dl2-postgresql-adaptor', 'gnustep-dl2-sqlite-adaptor', 'postgresql'] 161s autopkgtest [22:43:47]: test tools: preparing testbed 161s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['gnustep-dl2', 'gnustep-dl2-doc', 'libgnustep-dl2-0deb', 'libgnustep-dl2-dev', 'gnustep-dl2-postgresql-adaptor', 'gnustep-dl2-sqlite-adaptor', 'postgresql'] 161s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 161s autopkgtest: DBG: install_deps: deps_new=['gnustep-dl2', 'gnustep-dl2-doc', 'libgnustep-dl2-0deb', 'libgnustep-dl2-dev', 'gnustep-dl2-postgresql-adaptor', 'gnustep-dl2-sqlite-adaptor', 'postgresql'] 161s autopkgtest: DBG: install-deps: satisfying gnustep-dl2, gnustep-dl2-doc, libgnustep-dl2-0deb, libgnustep-dl2-dev, gnustep-dl2-postgresql-adaptor, gnustep-dl2-sqlite-adaptor, postgresql 161s autopkgtest: DBG: can use apt-get on testbed: True 161s 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', 'gnustep-dl2, gnustep-dl2-doc, libgnustep-dl2-0deb, libgnustep-dl2-dev, gnustep-dl2-postgresql-adaptor, gnustep-dl2-sqlite-adaptor, postgresql'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 161s Reading package lists... 161s Building dependency tree... 161s Reading state information... 161s Starting pkgProblemResolver with broken count: 0 161s Starting 2 pkgProblemResolver with broken count: 0 161s Done 161s The following NEW packages will be installed: 161s autotools-dev cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 161s fontconfig-config fonts-freefont-ttf g++-14 g++-14-s390x-linux-gnu gcc 161s gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gnustep-back-common 161s gnustep-back0.31 gnustep-back0.31-cairo gnustep-base-common 161s gnustep-base-runtime gnustep-common gnustep-dl2 gnustep-dl2-doc 161s gnustep-dl2-postgresql-adaptor gnustep-dl2-sqlite-adaptor gnustep-gui-common 161s gnustep-gui-runtime gnustep-make gnustep-multiarch gnutls-bin gobjc++ 161s gobjc++-14 gobjc++-14-s390x-linux-gnu gobjc++-s390x-linux-gnu gobjc-14 161s gobjc-14-s390x-linux-gnu imagemagick-7-common libao-common libao4 libaom3 161s libasan8 libasound2-data libasound2t64 libaspell15 libavahi-client3 161s libavahi-common-data libavahi-common3 libcairo2 libcc1-0 libcups2t64 161s libde265-0 libdeflate0 libdrm-radeon1 libevent-2.1-7t64 libfftw3-double3 161s libflac12t64 libflite1 libfontconfig1 libfreetype6 libgbm1 libgc1 161s libgcc-14-dev libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglvnd0 161s libglx-mesa0 libglx0 libgnustep-base-dev libgnustep-base1.30 161s libgnustep-dl2-0deb libgnustep-dl2-dev libgnustep-gui-dev libgnustep-gui0.31 161s libgnutls-dane0t64 libgomp1 libheif-plugin-aomdec libheif-plugin-libde265 161s libheif1 libice6 libicns1 libinterfacebuilder1 libio-pty-perl 161s libipc-run-perl libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 161s libjson-perl liblcms2-2 liblqr-1-0 libltdl7 libmagickcore-7.q16-10 161s libmp3lame0 libmpc3 libmpg123-0t64 libobjc-14-dev libobjc4 libogg0 161s libopenjp2-7 libopus0 libpixman-1-0 libpq5 libraw23t64 librenaissance0 161s libsharpyuv0 libsm6 libsndfile1 libstdc++-14-dev libtiff6 libubsan1 161s libunbound8 libvorbis0a libvorbisenc2 libvulkan1 libwayland-server0 libwebp7 161s libwebpdemux2 libwebpmux3 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 161s libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shm0 libxcb-sync1 161s libxcb-xfixes0 libxcursor1 libxfixes3 libxmu6 libxrandr2 libxrender1 161s libxshmfence1 libxslt1.1 libxt6t64 libxxf86vm1 mesa-libgallium postgresql 161s postgresql-17 postgresql-client-17 postgresql-client-common 161s postgresql-common postgresql-common-dev ssl-cert tzdata-legacy x11-common 162s 0 upgraded, 147 newly installed, 0 to remove and 0 not upgraded. 162s Need to get 142 MB of archives. 162s After this operation, 447 MB of additional disk space will be used. 162s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 162s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 162s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 162s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-freefont-ttf all 20211204+svn4273-2 [5641 kB] 162s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 162s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 162s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 162s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 162s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 162s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 162s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 162s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 162s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 162s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 162s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 162s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 162s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x liblqr-1-0 s390x 0.4.2-2.1build2 [32.6 kB] 162s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 163s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 163s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libraw23t64 s390x 0.21.3-1 [415 kB] 163s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 163s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 163s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 163s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 163s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 163s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x imagemagick-7-common all 8:7.1.1.43+dfsg1-1 [69.7 kB] 163s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x libmagickcore-7.q16-10 s390x 8:7.1.1.43+dfsg1-1 [2040 kB] 163s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 163s Get:29 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x postgresql-client-common all 273 [47.5 kB] 163s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libio-pty-perl s390x 1:1.20-1build3 [31.6 kB] 163s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-run-perl all 20231003.0-2 [91.5 kB] 163s Get:32 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x postgresql-common-dev all 273 [72.9 kB] 163s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x ssl-cert all 1.1.3ubuntu1 [18.7 kB] 163s Get:34 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x postgresql-common all 273 [101 kB] 163s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 163s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 163s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 163s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 163s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 163s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 163s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 163s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 163s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 163s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 163s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 163s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 163s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 164s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 164s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 164s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 164s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 164s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 164s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 164s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-common s390x 2.9.2-6 [47.8 kB] 164s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2024b-6ubuntu1 [99.3 kB] 164s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-base-common all 1.30.0-14ubuntu1 [103 kB] 164s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-multiarch s390x 2.9.2-6 [14.0 kB] 164s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-2.1-7t64 s390x 2.1.12-stable-10 [145 kB] 164s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libunbound8 s390x 1.22.0-1ubuntu1 [462 kB] 164s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libgnutls-dane0t64 s390x 3.8.9-2ubuntu1 [24.5 kB] 164s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x gnutls-bin s390x 3.8.9-2ubuntu1 [288 kB] 164s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 164s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 164s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 164s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libgc1 s390x 1:8.2.8-1 [93.7 kB] 164s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc4 s390x 14.2.0-17ubuntu1 [49.9 kB] 164s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 164s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libgnustep-base1.30 s390x 1.30.0-14ubuntu1 [1609 kB] 164s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-base-runtime s390x 1.30.0-14ubuntu1 [234 kB] 164s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-gui-common all 0.31.1-10build1 [666 kB] 164s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 164s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libicns1 s390x 0.8.1.83.g921f972-0.1build2 [30.3 kB] 164s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libgnustep-gui0.31 s390x 0.31.1-10build1 [1826 kB] 164s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libao-common all 1.2.2+20180113-1.2ubuntu1 [5808 B] 164s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libao4 s390x 1.2.2+20180113-1.2ubuntu1 [34.4 kB] 164s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libaspell15 s390x 0.60.8.1-3 [355 kB] 165s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 165s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 165s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 165s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 165s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 165s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libflac12t64 s390x 1.4.3+ds-4 [161 kB] 165s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 165s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 165s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 165s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 165s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 165s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libsndfile1 s390x 1.2.2-2 [238 kB] 165s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-gui-runtime s390x 0.31.1-10build1 [173 kB] 165s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 165s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-back-common s390x 0.31.0-8 [51.0 kB] 165s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 165s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 165s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 165s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 165s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 165s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 165s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 165s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 165s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 165s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 165s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 165s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 165s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 165s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 165s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 165s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 166s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 166s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 167s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 167s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 167s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 167s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 167s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 167s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 167s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 167s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 167s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 167s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 167s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 167s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 167s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 167s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 167s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-back0.31-cairo s390x 0.31.0-8 [197 kB] 167s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-back0.31 all 0.31.0-8 [10.2 kB] 167s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x libgnustep-dl2-0deb s390x 0.12.0+git20171224-5build1 [523 kB] 167s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x libinterfacebuilder1 s390x 1.4.0-7build1 [22.3 kB] 167s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librenaissance0 s390x 0.9.0-4.3build2 [129 kB] 167s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-dl2 s390x 0.12.0+git20171224-5build1 [743 kB] 167s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-dl2-doc all 0.12.0+git20171224-5build1 [349 kB] 167s Get:131 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpq5 s390x 17.3-2 [147 kB] 167s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-dl2-postgresql-adaptor s390x 0.12.0+git20171224-5build1 [75.8 kB] 167s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-dl2-sqlite-adaptor s390x 0.12.0+git20171224-5build1 [35.9 kB] 167s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc-14-dev s390x 14.2.0-17ubuntu1 [194 kB] 167s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x gobjc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9361 kB] 168s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x gobjc++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [10.4 MB] 169s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x gobjc-14 s390x 14.2.0-17ubuntu1 [37.6 kB] 169s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x gobjc++-14 s390x 14.2.0-17ubuntu1 [6644 B] 169s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x gobjc++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [948 B] 169s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x gobjc++ s390x 4:14.2.0-1ubuntu1 [902 B] 169s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x gnustep-make all 2.9.2-6 [152 kB] 169s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x libgnustep-base-dev s390x 1.30.0-14ubuntu1 [2166 kB] 169s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x libgnustep-gui-dev s390x 0.31.1-10build1 [2423 kB] 169s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x libgnustep-dl2-dev s390x 0.12.0+git20171224-5build1 [40.2 kB] 169s Get:145 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x postgresql-client-17 s390x 17.3-2 [1367 kB] 169s Get:146 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x postgresql-17 s390x 17.3-2 [16.9 MB] 170s Get:147 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x postgresql all 17+273 [14.3 kB] 170s Preconfiguring packages ... 170s /var/cache/debconf/tmp.ci/postgresql.config.FkNFb0: 12: pg_lsclusters: not found 171s Fetched 142 MB in 9s (16.5 MB/s) 171s Selecting previously unselected package libgomp1:s390x. 171s (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.) 171s Preparing to unpack .../000-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 171s Selecting previously unselected package libfftw3-double3:s390x. 171s Preparing to unpack .../001-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 171s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 171s Selecting previously unselected package libfreetype6:s390x. 171s Preparing to unpack .../002-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 171s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 171s Selecting previously unselected package fonts-freefont-ttf. 171s Preparing to unpack .../003-fonts-freefont-ttf_20211204+svn4273-2_all.deb ... 171s Unpacking fonts-freefont-ttf (20211204+svn4273-2) ... 171s Selecting previously unselected package fontconfig-config. 171s Preparing to unpack .../004-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 171s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 171s Selecting previously unselected package libfontconfig1:s390x. 171s Preparing to unpack .../005-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 171s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 171s Selecting previously unselected package libsharpyuv0:s390x. 171s Preparing to unpack .../006-libsharpyuv0_1.5.0-0.1_s390x.deb ... 171s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 171s Selecting previously unselected package libaom3:s390x. 171s Preparing to unpack .../007-libaom3_3.12.0-1_s390x.deb ... 171s Unpacking libaom3:s390x (3.12.0-1) ... 171s Selecting previously unselected package libheif-plugin-aomdec:s390x. 171s Preparing to unpack .../008-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 171s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 171s Selecting previously unselected package libde265-0:s390x. 171s Preparing to unpack .../009-libde265-0_1.0.15-1build4_s390x.deb ... 171s Unpacking libde265-0:s390x (1.0.15-1build4) ... 171s Selecting previously unselected package libheif-plugin-libde265:s390x. 171s Preparing to unpack .../010-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 171s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 171s Selecting previously unselected package libheif1:s390x. 171s Preparing to unpack .../011-libheif1_1.19.5-1build1_s390x.deb ... 171s Unpacking libheif1:s390x (1.19.5-1build1) ... 171s Selecting previously unselected package libjbig0:s390x. 171s Preparing to unpack .../012-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 171s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 171s Selecting previously unselected package libjpeg-turbo8:s390x. 171s Preparing to unpack .../013-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 171s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 171s Selecting previously unselected package libjpeg8:s390x. 171s Preparing to unpack .../014-libjpeg8_8c-2ubuntu11_s390x.deb ... 171s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 171s Selecting previously unselected package liblcms2-2:s390x. 171s Preparing to unpack .../015-liblcms2-2_2.16-2_s390x.deb ... 171s Unpacking liblcms2-2:s390x (2.16-2) ... 171s Selecting previously unselected package liblqr-1-0:s390x. 171s Preparing to unpack .../016-liblqr-1-0_0.4.2-2.1build2_s390x.deb ... 171s Unpacking liblqr-1-0:s390x (0.4.2-2.1build2) ... 171s Selecting previously unselected package libltdl7:s390x. 171s Preparing to unpack .../017-libltdl7_2.5.4-3build1_s390x.deb ... 171s Unpacking libltdl7:s390x (2.5.4-3build1) ... 171s Selecting previously unselected package libopenjp2-7:s390x. 171s Preparing to unpack .../018-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 171s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 171s Selecting previously unselected package libraw23t64:s390x. 171s Preparing to unpack .../019-libraw23t64_0.21.3-1_s390x.deb ... 171s Unpacking libraw23t64:s390x (0.21.3-1) ... 171s Selecting previously unselected package libdeflate0:s390x. 171s Preparing to unpack .../020-libdeflate0_1.23-1_s390x.deb ... 171s Unpacking libdeflate0:s390x (1.23-1) ... 171s Selecting previously unselected package libwebp7:s390x. 171s Preparing to unpack .../021-libwebp7_1.5.0-0.1_s390x.deb ... 171s Unpacking libwebp7:s390x (1.5.0-0.1) ... 171s Selecting previously unselected package libtiff6:s390x. 171s Preparing to unpack .../022-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 171s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 171s Selecting previously unselected package libwebpdemux2:s390x. 171s Preparing to unpack .../023-libwebpdemux2_1.5.0-0.1_s390x.deb ... 171s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 171s Selecting previously unselected package libwebpmux3:s390x. 171s Preparing to unpack .../024-libwebpmux3_1.5.0-0.1_s390x.deb ... 171s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 171s Selecting previously unselected package imagemagick-7-common. 171s Preparing to unpack .../025-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1_all.deb ... 171s Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1) ... 171s Selecting previously unselected package libmagickcore-7.q16-10:s390x. 171s Preparing to unpack .../026-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1_s390x.deb ... 171s Unpacking libmagickcore-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 171s Selecting previously unselected package libjson-perl. 171s Preparing to unpack .../027-libjson-perl_4.10000-1_all.deb ... 171s Unpacking libjson-perl (4.10000-1) ... 171s Selecting previously unselected package postgresql-client-common. 171s Preparing to unpack .../028-postgresql-client-common_273_all.deb ... 171s Unpacking postgresql-client-common (273) ... 171s Selecting previously unselected package libio-pty-perl. 171s Preparing to unpack .../029-libio-pty-perl_1%3a1.20-1build3_s390x.deb ... 171s Unpacking libio-pty-perl (1:1.20-1build3) ... 171s Selecting previously unselected package libipc-run-perl. 171s Preparing to unpack .../030-libipc-run-perl_20231003.0-2_all.deb ... 171s Unpacking libipc-run-perl (20231003.0-2) ... 171s Selecting previously unselected package postgresql-common-dev. 171s Preparing to unpack .../031-postgresql-common-dev_273_all.deb ... 171s Unpacking postgresql-common-dev (273) ... 171s Selecting previously unselected package ssl-cert. 171s Preparing to unpack .../032-ssl-cert_1.1.3ubuntu1_all.deb ... 171s Unpacking ssl-cert (1.1.3ubuntu1) ... 171s Selecting previously unselected package postgresql-common. 171s Preparing to unpack .../033-postgresql-common_273_all.deb ... 171s Adding 'diversion of /usr/bin/pg_config to /usr/bin/pg_config.libpq-dev by postgresql-common' 171s Unpacking postgresql-common (273) ... 171s Selecting previously unselected package autotools-dev. 171s Preparing to unpack .../034-autotools-dev_20220109.1_all.deb ... 171s Unpacking autotools-dev (20220109.1) ... 171s Selecting previously unselected package libisl23:s390x. 171s Preparing to unpack .../035-libisl23_0.27-1_s390x.deb ... 171s Unpacking libisl23:s390x (0.27-1) ... 171s Selecting previously unselected package libmpc3:s390x. 171s Preparing to unpack .../036-libmpc3_1.3.1-1build2_s390x.deb ... 171s Unpacking libmpc3:s390x (1.3.1-1build2) ... 171s Selecting previously unselected package cpp-14-s390x-linux-gnu. 171s Preparing to unpack .../037-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 171s Selecting previously unselected package cpp-14. 171s Preparing to unpack .../038-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 171s Selecting previously unselected package cpp-s390x-linux-gnu. 171s Preparing to unpack .../039-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 171s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 171s Selecting previously unselected package cpp. 171s Preparing to unpack .../040-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 171s Unpacking cpp (4:14.2.0-1ubuntu1) ... 171s Selecting previously unselected package libcc1-0:s390x. 171s Preparing to unpack .../041-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 171s Selecting previously unselected package libitm1:s390x. 171s Preparing to unpack .../042-libitm1_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 171s Selecting previously unselected package libasan8:s390x. 171s Preparing to unpack .../043-libasan8_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 171s Selecting previously unselected package libubsan1:s390x. 171s Preparing to unpack .../044-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 171s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package libgcc-14-dev:s390x. 172s Preparing to unpack .../045-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package gcc-14-s390x-linux-gnu. 172s Preparing to unpack .../046-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package libstdc++-14-dev:s390x. 172s Preparing to unpack .../047-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package g++-14-s390x-linux-gnu. 172s Preparing to unpack .../048-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package gcc-14. 172s Preparing to unpack .../049-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package g++-14. 172s Preparing to unpack .../050-g++-14_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking g++-14 (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package gcc-s390x-linux-gnu. 172s Preparing to unpack .../051-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 172s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 172s Selecting previously unselected package gcc. 172s Preparing to unpack .../052-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 172s Unpacking gcc (4:14.2.0-1ubuntu1) ... 172s Selecting previously unselected package gnustep-common. 172s Preparing to unpack .../053-gnustep-common_2.9.2-6_s390x.deb ... 172s Unpacking gnustep-common (2.9.2-6) ... 172s Selecting previously unselected package tzdata-legacy. 172s Preparing to unpack .../054-tzdata-legacy_2024b-6ubuntu1_all.deb ... 172s Unpacking tzdata-legacy (2024b-6ubuntu1) ... 172s Selecting previously unselected package gnustep-base-common. 172s Preparing to unpack .../055-gnustep-base-common_1.30.0-14ubuntu1_all.deb ... 172s Unpacking gnustep-base-common (1.30.0-14ubuntu1) ... 172s Selecting previously unselected package gnustep-multiarch:s390x. 172s Preparing to unpack .../056-gnustep-multiarch_2.9.2-6_s390x.deb ... 172s Unpacking gnustep-multiarch:s390x (2.9.2-6) ... 172s Selecting previously unselected package libevent-2.1-7t64:s390x. 172s Preparing to unpack .../057-libevent-2.1-7t64_2.1.12-stable-10_s390x.deb ... 172s Unpacking libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 172s Selecting previously unselected package libunbound8:s390x. 172s Preparing to unpack .../058-libunbound8_1.22.0-1ubuntu1_s390x.deb ... 172s Unpacking libunbound8:s390x (1.22.0-1ubuntu1) ... 172s Selecting previously unselected package libgnutls-dane0t64:s390x. 172s Preparing to unpack .../059-libgnutls-dane0t64_3.8.9-2ubuntu1_s390x.deb ... 172s Unpacking libgnutls-dane0t64:s390x (3.8.9-2ubuntu1) ... 172s Selecting previously unselected package gnutls-bin. 172s Preparing to unpack .../060-gnutls-bin_3.8.9-2ubuntu1_s390x.deb ... 172s Unpacking gnutls-bin (3.8.9-2ubuntu1) ... 172s Selecting previously unselected package libavahi-common-data:s390x. 172s Preparing to unpack .../061-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 172s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 172s Selecting previously unselected package libavahi-common3:s390x. 172s Preparing to unpack .../062-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 172s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 172s Selecting previously unselected package libavahi-client3:s390x. 172s Preparing to unpack .../063-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 172s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 172s Selecting previously unselected package libgc1:s390x. 172s Preparing to unpack .../064-libgc1_1%3a8.2.8-1_s390x.deb ... 172s Unpacking libgc1:s390x (1:8.2.8-1) ... 172s Selecting previously unselected package libobjc4:s390x. 172s Preparing to unpack .../065-libobjc4_14.2.0-17ubuntu1_s390x.deb ... 172s Unpacking libobjc4:s390x (14.2.0-17ubuntu1) ... 172s Selecting previously unselected package libxslt1.1:s390x. 172s Preparing to unpack .../066-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 172s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 172s Selecting previously unselected package libgnustep-base1.30:s390x. 172s Preparing to unpack .../067-libgnustep-base1.30_1.30.0-14ubuntu1_s390x.deb ... 172s Unpacking libgnustep-base1.30:s390x (1.30.0-14ubuntu1) ... 172s Selecting previously unselected package gnustep-base-runtime. 172s Preparing to unpack .../068-gnustep-base-runtime_1.30.0-14ubuntu1_s390x.deb ... 172s Unpacking gnustep-base-runtime (1.30.0-14ubuntu1) ... 172s Selecting previously unselected package gnustep-gui-common. 172s Preparing to unpack .../069-gnustep-gui-common_0.31.1-10build1_all.deb ... 172s Unpacking gnustep-gui-common (0.31.1-10build1) ... 172s Selecting previously unselected package libgif7:s390x. 172s Preparing to unpack .../070-libgif7_5.2.2-1ubuntu1_s390x.deb ... 172s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 172s Selecting previously unselected package libicns1:s390x. 172s Preparing to unpack .../071-libicns1_0.8.1.83.g921f972-0.1build2_s390x.deb ... 172s Unpacking libicns1:s390x (0.8.1.83.g921f972-0.1build2) ... 172s Selecting previously unselected package libgnustep-gui0.31:s390x. 172s Preparing to unpack .../072-libgnustep-gui0.31_0.31.1-10build1_s390x.deb ... 172s Unpacking libgnustep-gui0.31:s390x (0.31.1-10build1) ... 172s Selecting previously unselected package libao-common. 172s Preparing to unpack .../073-libao-common_1.2.2+20180113-1.2ubuntu1_all.deb ... 172s Unpacking libao-common (1.2.2+20180113-1.2ubuntu1) ... 172s Selecting previously unselected package libao4:s390x. 172s Preparing to unpack .../074-libao4_1.2.2+20180113-1.2ubuntu1_s390x.deb ... 172s Unpacking libao4:s390x (1.2.2+20180113-1.2ubuntu1) ... 172s Selecting previously unselected package libaspell15:s390x. 172s Preparing to unpack .../075-libaspell15_0.60.8.1-3_s390x.deb ... 172s Unpacking libaspell15:s390x (0.60.8.1-3) ... 172s Selecting previously unselected package libcups2t64:s390x. 172s Preparing to unpack .../076-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 172s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 172s Selecting previously unselected package libasound2-data. 172s Preparing to unpack .../077-libasound2-data_1.2.13-1build1_all.deb ... 172s Unpacking libasound2-data (1.2.13-1build1) ... 172s Selecting previously unselected package libasound2t64:s390x. 172s Preparing to unpack .../078-libasound2t64_1.2.13-1build1_s390x.deb ... 172s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 172s Selecting previously unselected package libflite1:s390x. 172s Preparing to unpack .../079-libflite1_2.2-7_s390x.deb ... 172s Unpacking libflite1:s390x (2.2-7) ... 173s Selecting previously unselected package libogg0:s390x. 173s Preparing to unpack .../080-libogg0_1.3.5-3build1_s390x.deb ... 173s Unpacking libogg0:s390x (1.3.5-3build1) ... 173s Selecting previously unselected package libflac12t64:s390x. 173s Preparing to unpack .../081-libflac12t64_1.4.3+ds-4_s390x.deb ... 173s Unpacking libflac12t64:s390x (1.4.3+ds-4) ... 173s Selecting previously unselected package libmp3lame0:s390x. 173s Preparing to unpack .../082-libmp3lame0_3.100-6build1_s390x.deb ... 173s Unpacking libmp3lame0:s390x (3.100-6build1) ... 173s Selecting previously unselected package libmpg123-0t64:s390x. 173s Preparing to unpack .../083-libmpg123-0t64_1.32.10-1_s390x.deb ... 173s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 173s Selecting previously unselected package libopus0:s390x. 173s Preparing to unpack .../084-libopus0_1.5.2-2_s390x.deb ... 173s Unpacking libopus0:s390x (1.5.2-2) ... 173s Selecting previously unselected package libvorbis0a:s390x. 173s Preparing to unpack .../085-libvorbis0a_1.3.7-2_s390x.deb ... 173s Unpacking libvorbis0a:s390x (1.3.7-2) ... 173s Selecting previously unselected package libvorbisenc2:s390x. 173s Preparing to unpack .../086-libvorbisenc2_1.3.7-2_s390x.deb ... 173s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 173s Selecting previously unselected package libsndfile1:s390x. 173s Preparing to unpack .../087-libsndfile1_1.2.2-2_s390x.deb ... 173s Unpacking libsndfile1:s390x (1.2.2-2) ... 173s Selecting previously unselected package gnustep-gui-runtime. 173s Preparing to unpack .../088-gnustep-gui-runtime_0.31.1-10build1_s390x.deb ... 173s Unpacking gnustep-gui-runtime (0.31.1-10build1) ... 173s Selecting previously unselected package libxfixes3:s390x. 173s Preparing to unpack .../089-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 173s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 173s Selecting previously unselected package gnustep-back-common. 173s Preparing to unpack .../090-gnustep-back-common_0.31.0-8_s390x.deb ... 173s Unpacking gnustep-back-common (0.31.0-8) ... 173s Selecting previously unselected package libpixman-1-0:s390x. 173s Preparing to unpack .../091-libpixman-1-0_0.44.0-3_s390x.deb ... 173s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 173s Selecting previously unselected package libxcb-render0:s390x. 173s Preparing to unpack .../092-libxcb-render0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-render0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxcb-shm0:s390x. 173s Preparing to unpack .../093-libxcb-shm0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxrender1:s390x. 173s Preparing to unpack .../094-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 173s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 173s Selecting previously unselected package libcairo2:s390x. 173s Preparing to unpack .../095-libcairo2_1.18.2-2_s390x.deb ... 173s Unpacking libcairo2:s390x (1.18.2-2) ... 173s Selecting previously unselected package libglvnd0:s390x. 173s Preparing to unpack .../096-libglvnd0_1.7.0-1build1_s390x.deb ... 173s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 173s Selecting previously unselected package libglapi-mesa:s390x. 173s Preparing to unpack .../097-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 173s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 173s Selecting previously unselected package libx11-xcb1:s390x. 173s Preparing to unpack .../098-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 173s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 173s Selecting previously unselected package libxcb-dri3-0:s390x. 173s Preparing to unpack .../099-libxcb-dri3-0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxcb-glx0:s390x. 173s Preparing to unpack .../100-libxcb-glx0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxcb-present0:s390x. 173s Preparing to unpack .../101-libxcb-present0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-present0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxcb-xfixes0:s390x. 173s Preparing to unpack .../102-libxcb-xfixes0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxxf86vm1:s390x. 173s Preparing to unpack .../103-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 173s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 173s Selecting previously unselected package libdrm-radeon1:s390x. 173s Preparing to unpack .../104-libdrm-radeon1_2.4.123-1_s390x.deb ... 173s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 173s Selecting previously unselected package libxcb-randr0:s390x. 173s Preparing to unpack .../105-libxcb-randr0_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxcb-sync1:s390x. 173s Preparing to unpack .../106-libxcb-sync1_1.17.0-2_s390x.deb ... 173s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 173s Selecting previously unselected package libxshmfence1:s390x. 173s Preparing to unpack .../107-libxshmfence1_1.3-1build5_s390x.deb ... 173s Unpacking libxshmfence1:s390x (1.3-1build5) ... 173s Selecting previously unselected package mesa-libgallium:s390x. 173s Preparing to unpack .../108-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 173s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 173s Selecting previously unselected package libwayland-server0:s390x. 173s Preparing to unpack .../109-libwayland-server0_1.23.1-1_s390x.deb ... 173s Unpacking libwayland-server0:s390x (1.23.1-1) ... 173s Selecting previously unselected package libgbm1:s390x. 173s Preparing to unpack .../110-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 173s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 173s Selecting previously unselected package libvulkan1:s390x. 173s Preparing to unpack .../111-libvulkan1_1.4.304.0-1_s390x.deb ... 173s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 173s Selecting previously unselected package libgl1-mesa-dri:s390x. 173s Preparing to unpack .../112-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 173s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 173s Selecting previously unselected package libglx-mesa0:s390x. 173s Preparing to unpack .../113-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 173s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 173s Selecting previously unselected package libglx0:s390x. 173s Preparing to unpack .../114-libglx0_1.7.0-1build1_s390x.deb ... 173s Unpacking libglx0:s390x (1.7.0-1build1) ... 173s Selecting previously unselected package libgl1:s390x. 173s Preparing to unpack .../115-libgl1_1.7.0-1build1_s390x.deb ... 173s Unpacking libgl1:s390x (1.7.0-1build1) ... 173s Selecting previously unselected package libxcursor1:s390x. 173s Preparing to unpack .../116-libxcursor1_1%3a1.2.3-1_s390x.deb ... 173s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 173s Selecting previously unselected package x11-common. 173s Preparing to unpack .../117-x11-common_1%3a7.7+23ubuntu3_all.deb ... 173s Unpacking x11-common (1:7.7+23ubuntu3) ... 173s Selecting previously unselected package libice6:s390x. 173s Preparing to unpack .../118-libice6_2%3a1.1.1-1_s390x.deb ... 173s Unpacking libice6:s390x (2:1.1.1-1) ... 173s Selecting previously unselected package libsm6:s390x. 173s Preparing to unpack .../119-libsm6_2%3a1.2.4-1_s390x.deb ... 173s Unpacking libsm6:s390x (2:1.2.4-1) ... 173s Selecting previously unselected package libxt6t64:s390x. 173s Preparing to unpack .../120-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 173s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 173s Selecting previously unselected package libxmu6:s390x. 173s Preparing to unpack .../121-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 173s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 173s Selecting previously unselected package libxrandr2:s390x. 173s Preparing to unpack .../122-libxrandr2_2%3a1.5.4-1_s390x.deb ... 173s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 173s Selecting previously unselected package gnustep-back0.31-cairo:s390x. 173s Preparing to unpack .../123-gnustep-back0.31-cairo_0.31.0-8_s390x.deb ... 173s Unpacking gnustep-back0.31-cairo:s390x (0.31.0-8) ... 173s Selecting previously unselected package gnustep-back0.31. 173s Preparing to unpack .../124-gnustep-back0.31_0.31.0-8_all.deb ... 173s Unpacking gnustep-back0.31 (0.31.0-8) ... 173s Selecting previously unselected package libgnustep-dl2-0deb:s390x. 173s Preparing to unpack .../125-libgnustep-dl2-0deb_0.12.0+git20171224-5build1_s390x.deb ... 173s Unpacking libgnustep-dl2-0deb:s390x (0.12.0+git20171224-5build1) ... 173s Selecting previously unselected package libinterfacebuilder1:s390x. 173s Preparing to unpack .../126-libinterfacebuilder1_1.4.0-7build1_s390x.deb ... 173s Unpacking libinterfacebuilder1:s390x (1.4.0-7build1) ... 173s Selecting previously unselected package librenaissance0. 173s Preparing to unpack .../127-librenaissance0_0.9.0-4.3build2_s390x.deb ... 173s Unpacking librenaissance0 (0.9.0-4.3build2) ... 173s Selecting previously unselected package gnustep-dl2. 173s Preparing to unpack .../128-gnustep-dl2_0.12.0+git20171224-5build1_s390x.deb ... 173s Unpacking gnustep-dl2 (0.12.0+git20171224-5build1) ... 173s Selecting previously unselected package gnustep-dl2-doc. 173s Preparing to unpack .../129-gnustep-dl2-doc_0.12.0+git20171224-5build1_all.deb ... 173s Unpacking gnustep-dl2-doc (0.12.0+git20171224-5build1) ... 173s Selecting previously unselected package libpq5:s390x. 173s Preparing to unpack .../130-libpq5_17.3-2_s390x.deb ... 173s Unpacking libpq5:s390x (17.3-2) ... 173s Selecting previously unselected package gnustep-dl2-postgresql-adaptor:s390x. 173s Preparing to unpack .../131-gnustep-dl2-postgresql-adaptor_0.12.0+git20171224-5build1_s390x.deb ... 173s Unpacking gnustep-dl2-postgresql-adaptor:s390x (0.12.0+git20171224-5build1) ... 173s Selecting previously unselected package gnustep-dl2-sqlite-adaptor:s390x. 173s Preparing to unpack .../132-gnustep-dl2-sqlite-adaptor_0.12.0+git20171224-5build1_s390x.deb ... 173s Unpacking gnustep-dl2-sqlite-adaptor:s390x (0.12.0+git20171224-5build1) ... 173s Selecting previously unselected package libobjc-14-dev:s390x. 173s Preparing to unpack .../133-libobjc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 173s Unpacking libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 173s Selecting previously unselected package gobjc-14-s390x-linux-gnu. 173s Preparing to unpack .../134-gobjc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 173s Unpacking gobjc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 173s Selecting previously unselected package gobjc++-14-s390x-linux-gnu. 173s Preparing to unpack .../135-gobjc++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 173s Unpacking gobjc++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package gobjc-14. 174s Preparing to unpack .../136-gobjc-14_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking gobjc-14 (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package gobjc++-14. 174s Preparing to unpack .../137-gobjc++-14_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking gobjc++-14 (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package gobjc++-s390x-linux-gnu. 174s Preparing to unpack .../138-gobjc++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 174s Unpacking gobjc++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 174s Selecting previously unselected package gobjc++. 174s Preparing to unpack .../139-gobjc++_4%3a14.2.0-1ubuntu1_s390x.deb ... 174s Unpacking gobjc++ (4:14.2.0-1ubuntu1) ... 174s Selecting previously unselected package gnustep-make. 174s Preparing to unpack .../140-gnustep-make_2.9.2-6_all.deb ... 174s Unpacking gnustep-make (2.9.2-6) ... 174s Selecting previously unselected package libgnustep-base-dev:s390x. 174s Preparing to unpack .../141-libgnustep-base-dev_1.30.0-14ubuntu1_s390x.deb ... 174s Unpacking libgnustep-base-dev:s390x (1.30.0-14ubuntu1) ... 174s Selecting previously unselected package libgnustep-gui-dev:s390x. 174s Preparing to unpack .../142-libgnustep-gui-dev_0.31.1-10build1_s390x.deb ... 174s Unpacking libgnustep-gui-dev:s390x (0.31.1-10build1) ... 174s Selecting previously unselected package libgnustep-dl2-dev:s390x. 174s Preparing to unpack .../143-libgnustep-dl2-dev_0.12.0+git20171224-5build1_s390x.deb ... 174s Unpacking libgnustep-dl2-dev:s390x (0.12.0+git20171224-5build1) ... 174s Selecting previously unselected package postgresql-client-17. 174s Preparing to unpack .../144-postgresql-client-17_17.3-2_s390x.deb ... 174s Unpacking postgresql-client-17 (17.3-2) ... 174s Selecting previously unselected package postgresql-17. 174s Preparing to unpack .../145-postgresql-17_17.3-2_s390x.deb ... 174s Unpacking postgresql-17 (17.3-2) ... 174s Selecting previously unselected package postgresql. 174s Preparing to unpack .../146-postgresql_17+273_all.deb ... 174s Unpacking postgresql (17+273) ... 174s Setting up postgresql-client-common (273) ... 174s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 174s Setting up liblcms2-2:s390x (2.16-2) ... 174s Setting up libpixman-1-0:s390x (0.44.0-3) ... 174s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 174s Setting up libwayland-server0:s390x (1.23.1-1) ... 174s Setting up libaom3:s390x (3.12.0-1) ... 174s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 174s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 174s Setting up libogg0:s390x (1.3.5-3build1) ... 174s Setting up gnustep-common (2.9.2-6) ... 174s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 174s Setting up libio-pty-perl (1:1.20-1build3) ... 174s Setting up libxcb-render0:s390x (1.17.0-2) ... 174s Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1) ... 174s Setting up libaspell15:s390x (0.60.8.1-3) ... 174s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 174s Setting up libglvnd0:s390x (1.7.0-1build1) ... 174s Setting up libxcb-glx0:s390x (1.17.0-2) ... 174s Setting up x11-common (1:7.7+23ubuntu3) ... 174s Setting up libpq5:s390x (17.3-2) ... 174s Setting up libdeflate0:s390x (1.23-1) ... 174s Setting up fonts-freefont-ttf (20211204+svn4273-2) ... 174s Setting up libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 174s Setting up libxcb-shm0:s390x (1.17.0-2) ... 174s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 174s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 174s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 174s Setting up tzdata-legacy (2024b-6ubuntu1) ... 174s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 174s Setting up libao-common (1.2.2+20180113-1.2ubuntu1) ... 174s Setting up libxcb-present0:s390x (1.17.0-2) ... 174s Setting up libasound2-data (1.2.13-1build1) ... 174s Setting up autotools-dev (20220109.1) ... 174s Setting up libunbound8:s390x (1.22.0-1ubuntu1) ... 174s Setting up libasound2t64:s390x (1.2.13-1build1) ... 174s Setting up libgnutls-dane0t64:s390x (3.8.9-2ubuntu1) ... 174s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 174s Setting up ssl-cert (1.1.3ubuntu1) ... 175s Created symlink '/etc/systemd/system/multi-user.target.wants/ssl-cert.service' → '/usr/lib/systemd/system/ssl-cert.service'. 175s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 175s Setting up libxcb-sync1:s390x (1.17.0-2) ... 175s Setting up gnustep-multiarch:s390x (2.9.2-6) ... 175s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 175s Setting up gnustep-base-common (1.30.0-14ubuntu1) ... 175s Setting up libopus0:s390x (1.5.2-2) ... 175s Setting up libmpc3:s390x (1.3.1-1build2) ... 175s Setting up libvorbis0a:s390x (1.3.7-2) ... 175s Setting up libxrandr2:s390x (2:1.5.4-1) ... 175s Setting up libipc-run-perl (20231003.0-2) ... 175s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 175s Setting up libgc1:s390x (1:8.2.8-1) ... 175s Setting up libltdl7:s390x (2.5.4-3build1) ... 175s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 175s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 175s Setting up libvulkan1:s390x (1.4.304.0-1) ... 175s Setting up libwebp7:s390x (1.5.0-0.1) ... 175s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 175s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 175s Setting up libao4:s390x (1.2.2+20180113-1.2ubuntu1) ... 175s Setting up libflite1:s390x (2.2-7) ... 175s Setting up liblqr-1-0:s390x (0.4.2-2.1build2) ... 175s Setting up libxshmfence1:s390x (1.3-1build5) ... 175s Setting up libxcb-randr0:s390x (1.17.0-2) ... 175s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 175s Setting up libjson-perl (4.10000-1) ... 175s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 175s Setting up gnustep-gui-common (0.31.1-10build1) ... 175s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 175s Setting up libflac12t64:s390x (1.4.3+ds-4) ... 175s Setting up libisl23:s390x (0.27-1) ... 175s Setting up libde265-0:s390x (1.0.15-1build4) ... 175s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 175s Setting up gnustep-dl2-doc (0.12.0+git20171224-5build1) ... 175s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 175s Setting up libmp3lame0:s390x (3.100-6build1) ... 175s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 175s Setting up libvorbisenc2:s390x (1.3.7-2) ... 175s Setting up postgresql-common-dev (273) ... 175s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 175s Setting up gnutls-bin (3.8.9-2ubuntu1) ... 175s Setting up libice6:s390x (2:1.1.1-1) ... 175s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 175s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 175s Setting up postgresql-client-17 (17.3-2) ... 175s update-alternatives: using /usr/share/postgresql/17/man/man1/psql.1.gz to provide /usr/share/man/man1/psql.1.gz (psql.1.gz) in auto mode 175s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 175s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 175s Setting up libxcursor1:s390x (1:1.2.3-1) ... 175s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 175s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 175s Setting up libobjc4:s390x (14.2.0-17ubuntu1) ... 175s Setting up postgresql-common (273) ... 176s Creating config file /etc/postgresql-common/createcluster.conf with new version 176s Building PostgreSQL dictionaries from installed myspell/hunspell packages... 176s Removing obsolete dictionary files: 176s Created symlink '/etc/systemd/system/multi-user.target.wants/postgresql.service' → '/usr/lib/systemd/system/postgresql.service'. 177s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 177s Setting up libraw23t64:s390x (0.21.3-1) ... 177s Setting up cpp-14 (14.2.0-17ubuntu1) ... 177s Setting up libicns1:s390x (0.8.1.83.g921f972-0.1build2) ... 177s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 177s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 177s Setting up libsndfile1:s390x (1.2.2-2) ... 177s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 177s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 177s Setting up libsm6:s390x (2:1.2.4-1) ... 177s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 177s Setting up postgresql-17 (17.3-2) ... 177s Creating new PostgreSQL cluster 17/main ... 177s /usr/lib/postgresql/17/bin/initdb -D /var/lib/postgresql/17/main --auth-local peer --auth-host scram-sha-256 --no-instructions 177s The files belonging to this database system will be owned by user "postgres". 177s This user must also own the server process. 177s 177s The database cluster will be initialized with locale "C.UTF-8". 177s The default database encoding has accordingly been set to "UTF8". 177s The default text search configuration will be set to "english". 177s 177s Data page checksums are disabled. 177s 177s fixing permissions on existing directory /var/lib/postgresql/17/main ... ok 177s creating subdirectories ... ok 177s selecting dynamic shared memory implementation ... posix 177s selecting default "max_connections" ... 100 177s selecting default "shared_buffers" ... 128MB 177s selecting default time zone ... Etc/UTC 177s creating configuration files ... ok 177s running bootstrap script ... ok 177s performing post-bootstrap initialization ... ok 177s syncing data to disk ... ok 180s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 180s Setting up libglx0:s390x (1.7.0-1build1) ... 180s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 180s Setting up libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 180s Setting up libcairo2:s390x (1.18.2-2) ... 180s Setting up libgnustep-base1.30:s390x (1.30.0-14ubuntu1) ... 180s Setting up gnustep-base-runtime (1.30.0-14ubuntu1) ... 180s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 180s Setting up libgl1:s390x (1.7.0-1build1) ... 180s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 180s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 180s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 180s Setting up cpp (4:14.2.0-1ubuntu1) ... 180s Setting up postgresql (17+273) ... 180s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 180s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 180s Setting up gobjc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 180s Setting up gcc-14 (14.2.0-17ubuntu1) ... 180s Setting up gobjc++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 180s Setting up g++-14 (14.2.0-17ubuntu1) ... 180s Setting up gobjc++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 180s Setting up gobjc-14 (14.2.0-17ubuntu1) ... 180s Setting up gcc (4:14.2.0-1ubuntu1) ... 181s Setting up gobjc++-14 (14.2.0-17ubuntu1) ... 181s Setting up gobjc++ (4:14.2.0-1ubuntu1) ... 181s Setting up gnustep-make (2.9.2-6) ... 181s Setting up libgnustep-base-dev:s390x (1.30.0-14ubuntu1) ... 181s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 181s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 181s Setting up libheif1:s390x (1.19.5-1build1) ... 181s Setting up libmagickcore-7.q16-10:s390x (8:7.1.1.43+dfsg1-1) ... 181s Setting up libgnustep-gui0.31:s390x (0.31.1-10build1) ... 181s Setting up gnustep-gui-runtime (0.31.1-10build1) ... 181s Setting up libgnustep-gui-dev:s390x (0.31.1-10build1) ... 181s Setting up gnustep-back-common (0.31.0-8) ... 181s Setting up gnustep-back0.31-cairo:s390x (0.31.0-8) ... 181s update-alternatives: using /usr/lib/s390x-linux-gnu/GNUstep/Bundles/libgnustep-cairo-031.bundle to provide /usr/lib/s390x-linux-gnu/GNUstep/Bundles/libgnustep-back-031.bundle (gnustep-back-031) in auto mode 181s Setting up gnustep-back0.31 (0.31.0-8) ... 181s Setting up libinterfacebuilder1:s390x (1.4.0-7build1) ... 181s Setting up librenaissance0 (0.9.0-4.3build2) ... 181s Setting up libgnustep-dl2-0deb:s390x (0.12.0+git20171224-5build1) ... 181s Setting up gnustep-dl2 (0.12.0+git20171224-5build1) ... 181s Setting up gnustep-dl2-sqlite-adaptor:s390x (0.12.0+git20171224-5build1) ... 181s Setting up libgnustep-dl2-dev:s390x (0.12.0+git20171224-5build1) ... 181s Setting up gnustep-dl2-postgresql-adaptor:s390x (0.12.0+git20171224-5build1) ... 181s Processing triggers for install-info (7.1.1-1) ... 181s Processing triggers for libc-bin (2.41-1ubuntu1) ... 181s Processing triggers for man-db (2.13.0-1) ... 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gnustep-dl2'], kind short, sout pipe, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gnustep-dl2-doc'], kind short, sout pipe, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libgnustep-dl2-0deb'], kind short, sout pipe, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libgnustep-dl2-dev'], kind short, sout pipe, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gnustep-dl2-postgresql-adaptor'], kind short, sout pipe, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'gnustep-dl2-sqlite-adaptor'], kind short, sout pipe, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0Hhmgj/tools-packages.all"], kind short, sout raw, serr pipe, env [] 183s autopkgtest: DBG: testbed command exited with code 0 183s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0Hhmgj/tools-packages.all /tmp/autopkgtest-work.6dj1qzz_/out/tools-packages.all 183s autopkgtest: DBG: got reply from testbed: ok 183s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.0Hhmgj/build.kgT/src'], kind short, sout raw, serr raw, env [] 184s autopkgtest: DBG: testbed command exited with code 0 184s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.0Hhmgj/build.kgT/src already exists 184s autopkgtest [22:44:10]: test tools: [----------------------- 184s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.0Hhmgj/wrapper.sh --debug --artifacts=/tmp/autopkgtest.0Hhmgj/tools-artifacts --chdir=/tmp/autopkgtest.0Hhmgj/build.kgT/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.0Hhmgj/tools-stderr --stdout=/tmp/autopkgtest.0Hhmgj/tools-stdout --tmp=/tmp/autopkgtest.0Hhmgj/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.0Hhmgj/build.kgT/src/debian/tests/tools -- /tmp/autopkgtest.0Hhmgj/build.kgT/src/debian/tests/tools"], kind test, sout raw, serr raw, env [] 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.0Hhmgj/tools-artifacts 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: changing to directory: /tmp/autopkgtest.0Hhmgj/build.kgT/src 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: setting environment: LANG=C.UTF-8 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LANGUAGE 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_ADDRESS 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_ALL 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_COLLATE 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_CTYPE 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_IDENTIFICATION 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_MEASUREMENT 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_MESSAGES 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_MONETARY 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_NAME 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_NUMERIC 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_PAPER 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_TELEPHONE 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: unsetting environment: LC_TIME 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: pretending to be a login shell 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: will write standard error to /tmp/autopkgtest.0Hhmgj/tools-stderr 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: will write stdout to /tmp/autopkgtest.0Hhmgj/tools-stdout 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.0Hhmgj/autopkgtest_tmp 184s /tmp/autopkgtest.0Hhmgj/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 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: marking as executable: /tmp/autopkgtest.0Hhmgj/build.kgT/src/debian/tests/tools 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: command to run: /tmp/autopkgtest.0Hhmgj/build.kgT/src/debian/tests/tools 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: copying /tmp/tmp.to4B3c8E42/out to stdout and file: /tmp/autopkgtest.0Hhmgj/tools-stdout 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: copying /tmp/tmp.to4B3c8E42/err to standard error and file: /tmp/autopkgtest.0Hhmgj/tools-stdout 184s /tmp/autopkgtest.0Hhmgj/wrapper.sh: writing script pid 5329 to /tmp/autopkgtest_script_pid 184s make: Entering directory '/tmp/autopkgtest.0Hhmgj/build.kgT/src/Examples' 184s This is gnustep-make 2.9.2. Type 'make print-gnustep-make-help' for help. 184s Running in gnustep-make version 2 strict mode. 184s make: Warning: File 'GNUmakefile' has modification time 61 s in the future 184s Making all in Trading ... 184s make[1]: Entering directory '/tmp/autopkgtest.0Hhmgj/build.kgT/src/Examples/Trading' 184s make[1]: Warning: File 'GNUmakefile' has modification time 61 s in the future 184s Making build-headers for framework Trading... 184s /usr/share/GNUstep/Makefiles/mkinstalldirs Trading.framework/Versions/0/Headers 184s make[2]: Warning: File 'GNUmakefile' has modification time 61 s in the future 184s /usr/bin/install -c -p -m 644 Trading.h Trading.framework/Versions/0/Headers/Trading.h 184s /usr/bin/install -c -p -m 644 TradingData.h Trading.framework/Versions/0/Headers/TradingData.h 184s /usr/share/GNUstep/Makefiles/mkinstalldirs ./derived_src; \ 184s touch derived_src/.stamp 184s /usr/share/GNUstep/Makefiles/mkinstalldirs Trading.framework/Versions/0/Resources 184s cd ./Trading.framework/Versions; \ 184s rm -f Current; \ 184s ln -s 0 Current 184s cd ./Trading.framework; \ 184s if [ ! -h "Resources" ]; then \ 184s rm -f Resources; \ 184s ln -s Versions/Current/Resources Resources; \ 184s fi; \ 184s if [ ! -h "Headers" ]; then \ 184s rm -f Headers; \ 184s ln -s Versions/Current/Headers Headers; \ 184s fi 184s cd ./derived_src; \ 184s if [ ! -h "Trading" ]; then \ 184s rm -f ./Trading; \ 184s ln -s ../Trading.framework/Headers \ 184s ./Trading; \ 184s fi 184s cd .; \ 184s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj 184s make[2]: warning: Clock skew detected. Your build may be incomplete. 184s Making all for framework Trading... 184s cd .; \ 184s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj/Trading.obj/ 184s make[2]: Warning: File 'GNUmakefile' has modification time 61 s in the future 184s gcc Trading.m -c \ 184s -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I../.. -I./derived_src -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include \ 184s -o obj/Trading.obj/Trading.m.o 184s make[3]: Warning: File 'GNUmakefile' has modification time 61 s in the future 184s Trading.m: In function ‘-[Trading initWithModel:]’: 184s Trading.m:63:6: warning: ‘flag’ is used uninitialized [-Wuninitialized] 184s 63 | if (flag == NO && ((flag = [self hasAdaptorNamed:adaptorName]) == NO)) 184s | ^ 184s Trading.m:56:8: note: ‘flag’ was declared here 184s 56 | BOOL flag; 184s | ^~~~ 184s gcc TradingData.m -c \ 184s -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I../.. -I./derived_src -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include \ 184s -o obj/Trading.obj/TradingData.m.o 184s TradingData.m:53:1: warning: method possibly missing a [super dealloc] call 184s 53 | } 184s | ^ 184s TradingData.m: In function ‘-[TradingData fillTables]’: 184s TradingData.m:60:67: warning: variable ‘gcc’ set but not used [-Wunused-but-set-variable] 184s 60 | id rake, shovel, pitchfork, mysql, postgresql, sqlite, gnustep, gcc; 184s | ^~~ 184s TradingData.m:60:58: warning: variable ‘gnustep’ set but not used [-Wunused-but-set-variable] 184s 60 | id rake, shovel, pitchfork, mysql, postgresql, sqlite, gnustep, gcc; 184s | ^~~~~~~ 184s TradingData.m:57:14: warning: variable ‘mysqlSup’ set but not used [-Wunused-but-set-variable] 184s 57 | id fsfSup, mysqlSup, postgreSup, publicSup, acmeSup; 184s | ^~~~~~~~ 184s classes=""; \ 184s for object_file in ./obj/Trading.obj/Trading.m.o ./obj/Trading.obj/TradingData.m.o __dummy__; do \ 184s if [ "$object_file" != "__dummy__" ]; then \ 184s sym=`nm -Pg $object_file | sed -n -e '/^__objc_class_name_[A-Za-z0-9_.]* [^U]/ {s/^__objc_class_name_\([A-Za-z0-9_.]*\) [^U].*/\1/p;}' -e '/^\._OBJC_CLASS_[A-Za-z0-9_.]* [^U]/ {s/^\._OBJC_CLASS_\([A-Za-z0-9_.]*\) [^U].*/\1/p;}'`; \ 184s classes="$classes $sym"; \ 184s fi; \ 184s done; \ 184s classlist=""; \ 184s classarray=""; \ 184s for f in $classes __dummy__ ; do \ 184s if [ "$f" != "__dummy__" ]; then \ 184s if [ "$classlist" = "" ]; then \ 184s classlist="@\"$f\""; \ 184s classarray="(\"$f\""; \ 184s else \ 184s classlist="$classlist, @\"$f\""; \ 184s classarray="$classarray, \"$f\""; \ 184s fi; \ 184s fi; \ 184s done; \ 184s if [ "$classlist" = "" ]; then \ 184s classlist="NULL"; \ 184s classarray="()"; \ 184s else \ 184s classlist="$classlist, NULL"; \ 184s classarray="$classarray)"; \ 184s fi; \ 184s echo "$classarray" > ./derived_src/Trading-class-list; \ 184s echo "#include " > derived_src/NSFramework_Trading.m; \ 184s echo "#include " > derived_src/NSFramework_Trading.m; \ 184s echo "@interface NSFramework_Trading : NSObject" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *)frameworkVersion;" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *const*)frameworkClasses;" >> derived_src/NSFramework_Trading.m; \ 184s echo "@end" >> derived_src/NSFramework_Trading.m; \ 184s echo "@implementation NSFramework_Trading" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *)frameworkVersion { return @\"0\"; }" >> derived_src/NSFramework_Trading.m; \ 184s echo "static NSString *allClasses[] = {$classlist};" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *const*)frameworkClasses { return allClasses; }" >> derived_src/NSFramework_Trading.m;\ 184s echo "@end" >> derived_src/NSFramework_Trading.m 184s gcc derived_src/NSFramework_Trading.m -c -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I../.. -I./derived_src -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include -o obj/Trading.obj/NSFramework_Trading.o 184s \ 184s gcc -shared -Wl,-soname,libTrading.so.0 -Wl,-rpath,/tmp/autopkgtest.0Hhmgj/build.kgT/src/test/usr/lib/s390x-linux-gnu -LTrading.framework -pthread -fexceptions -rdynamic -o ./Trading.framework/Versions/0/./libTrading.so.0.12.0 obj/Trading.obj/NSFramework_Trading.o obj/Trading.obj/Trading.m.o obj/Trading.obj/TradingData.m.o -LTrading.framework -L/home/ubuntu/GNUstep/Library/Libraries -L/usr/local/lib -L/usr/lib/s390x-linux-gnu -L/usr/lib -lEOAccess -lEOControl && (cd ./Trading.framework/Versions/0/.; rm -f libTrading.so; if [ "libTrading.so.0" != "libTrading.so.0.12.0" ]; then rm -f libTrading.so.0; ln -s libTrading.so.0.12.0 libTrading.so.0; fi; ln -s libTrading.so.0 libTrading.so; ) || rm -f ./Trading.framework/Versions/0/./libTrading.so.0.12.0 ; \ 184s (cd ./Trading.framework/Versions/0/.; \ 184s rm -f Trading; \ 184s ln -s libTrading.so Trading) \ 184s 184s make[3]: warning: Clock skew detected. Your build may be incomplete. 184s for f in Trading.eomodeld; do \ 184s if [ -f .//$f -o -d .//$f ]; then \ 184s cp -fr .//$f ./Trading.framework/Versions/0/Resources/; \ 184s else \ 184s echo "Warning: .//$f not found - ignoring"; \ 184s fi; \ 184s done 184s classes=""; \ 184s for object_file in ./obj/Trading.obj/Trading.m.o ./obj/Trading.obj/TradingData.m.o __dummy__; do \ 184s if [ "$object_file" != "__dummy__" ]; then \ 184s sym=`nm -Pg $object_file | sed -n -e '/^__objc_class_name_[A-Za-z0-9_.]* [^U]/ {s/^__objc_class_name_\([A-Za-z0-9_.]*\) [^U].*/\1/p;}' -e '/^\._OBJC_CLASS_[A-Za-z0-9_.]* [^U]/ {s/^\._OBJC_CLASS_\([A-Za-z0-9_.]*\) [^U].*/\1/p;}'`; \ 184s classes="$classes $sym"; \ 184s fi; \ 184s done; \ 184s classlist=""; \ 184s classarray=""; \ 184s for f in $classes __dummy__ ; do \ 184s if [ "$f" != "__dummy__" ]; then \ 184s if [ "$classlist" = "" ]; then \ 184s classlist="@\"$f\""; \ 184s classarray="(\"$f\""; \ 184s else \ 184s classlist="$classlist, @\"$f\""; \ 184s classarray="$classarray, \"$f\""; \ 184s fi; \ 184s fi; \ 184s done; \ 184s if [ "$classlist" = "" ]; then \ 184s classlist="NULL"; \ 184s classarray="()"; \ 184s else \ 184s classlist="$classlist, NULL"; \ 184s classarray="$classarray)"; \ 184s fi; \ 184s echo "$classarray" > ./derived_src/Trading-class-list; \ 184s echo "#include " > derived_src/NSFramework_Trading.m; \ 184s echo "#include " > derived_src/NSFramework_Trading.m; \ 184s echo "@interface NSFramework_Trading : NSObject" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *)frameworkVersion;" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *const*)frameworkClasses;" >> derived_src/NSFramework_Trading.m; \ 184s echo "@end" >> derived_src/NSFramework_Trading.m; \ 184s echo "@implementation NSFramework_Trading" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *)frameworkVersion { return @\"0\"; }" >> derived_src/NSFramework_Trading.m; \ 184s echo "static NSString *allClasses[] = {$classlist};" >> derived_src/NSFramework_Trading.m; \ 184s echo "+ (NSString *const*)frameworkClasses { return allClasses; }" >> derived_src/NSFramework_Trading.m;\ 184s echo "@end" >> derived_src/NSFramework_Trading.m 184s (echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \ 184s echo " NSExecutable = \"Trading\";"; \ 184s echo " NSMainNibFile = \"\";"; \ 184s echo " NSPrincipalClass = \"Trading\";"; \ 184s echo " Classes = "; \ 184s cat ./derived_src/Trading-class-list; \ 184s echo " ;"; \ 184s echo "}") >Trading.framework/Versions/0/Resources/Info-gnustep.plist 184s if [ -r "" ]; then \ 184s plmerge Trading.framework/Versions/0/Resources/Info-gnustep.plist ; \ 184s fi 184s cd ./Trading.framework/.; \ 184s rm -f Trading libTrading.so; \ 184s ln -s `/usr/share/GNUstep/Makefiles/relative_path.sh . \ 184s Versions/Current/./Trading short` \ 184s Trading; \ 184s ln -s `/usr/share/GNUstep/Makefiles/relative_path.sh . \ 184s Versions/Current/./libTrading.so short` \ 184s libTrading.so 184s make[2]: warning: Clock skew detected. Your build may be incomplete. 185s Making all for tool createTradingDB... 185s make[2]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s cd .; \ 185s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj/createTradingDB.obj/ 185s make[3]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s gcc create.m -c \ 185s -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I../.. -I./derived_src -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include \ 185s -o obj/createTradingDB.obj/create.m.o 185s make[4]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s gcc -Wl,-rpath,/tmp/autopkgtest.0Hhmgj/build.kgT/src/test/usr/lib/s390x-linux-gnu -LTrading.framework -pthread -fexceptions -rdynamic -o obj/createTradingDB \ 185s ./obj/createTradingDB.obj/create.m.o \ 185s -LTrading.framework -L/home/ubuntu/GNUstep/Library/Libraries -L/usr/local/lib -L/usr/lib/s390x-linux-gnu -L/usr/lib -lgnustep-base -lTrading -lobjc -lm 185s make[4]: warning: Clock skew detected. Your build may be incomplete. 185s make[3]: warning: Clock skew detected. Your build may be incomplete. 185s make[1]: Leaving directory '/tmp/autopkgtest.0Hhmgj/build.kgT/src/Examples/Trading' 185s make[2]: warning: Clock skew detected. Your build may be incomplete. 185s make[1]: warning: Clock skew detected. Your build may be incomplete. 185s cd .; \ 185s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj 185s Making all for tool eoexample... 185s make[1]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s cd .; \ 185s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj/eoexample.obj/ 185s make[2]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s gcc eoexample.m -c \ 185s -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -DGDL2=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include \ 185s -o obj/eoexample.obj/eoexample.m.o 185s make[3]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s gcc -Wl,-rpath,/tmp/autopkgtest.0Hhmgj/build.kgT/src/test/usr/lib/s390x-linux-gnu -LTrading.framework -pthread -fexceptions -rdynamic -o obj/eoexample \ 185s ./obj/eoexample.obj/eoexample.m.o \ 185s -L../EOAccess/./obj -L../EOControl/./obj -L/home/ubuntu/GNUstep/Library/Libraries -L/usr/local/lib -L/usr/lib/s390x-linux-gnu -L/usr/lib -lgnustep-base -lEOAccess -lEOControl -lobjc -lm 185s Making all for tool connection... 185s make[3]: warning: Clock skew detected. Your build may be incomplete. 185s make[2]: warning: Clock skew detected. Your build may be incomplete. 185s cd .; \ 185s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj/connection.obj/ 185s make[2]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s gcc connection.m -c \ 185s -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -DGDL2=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include \ 185s -o obj/connection.obj/connection.m.o 185s make[3]: Warning: File 'GNUmakefile' has modification time 60 s in the future 185s gcc -Wl,-rpath,/tmp/autopkgtest.0Hhmgj/build.kgT/src/test/usr/lib/s390x-linux-gnu -LTrading.framework -pthread -fexceptions -rdynamic -o obj/connection \ 185s ./obj/connection.obj/connection.m.o \ 185s -L../EOAccess/./obj -L../EOControl/./obj -L/home/ubuntu/GNUstep/Library/Libraries -L/usr/local/lib -L/usr/lib/s390x-linux-gnu -L/usr/lib -lgnustep-base -lEOAccess -lEOControl -lobjc -lm 185s make[3]: warning: Clock skew detected. Your build may be incomplete. 185s make[2]: warning: Clock skew detected. Your build may be incomplete. 185s Making all for tool eoexample2... 185s cd .; \ 185s /usr/share/GNUstep/Makefiles/mkinstalldirs ./obj/eoexample2.obj/ 185s make[2]: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s gcc eoexample2.m -c \ 185s -MMD -MP -DGNUSTEP -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGNUSTEP_BASE_LIBRARY=1 -DGDL2=1 -fno-strict-aliasing -fexceptions -fobjc-exceptions -D_NATIVE_OBJC_EXCEPTIONS -pthread -fPIC -Wall -DGSWARN -DGSDIAGNOSE -Wno-import -g -O2 -fconstant-string-class=NSConstantString -I. -I/home/ubuntu/GNUstep/Library/Headers -I/usr/local/include/GNUstep -I/usr/include/s390x-linux-gnu/GNUstep -I/usr/include \ 185s -o obj/eoexample2.obj/eoexample2.m.o 185s make[3]: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s gcc -Wl,-rpath,/tmp/autopkgtest.0Hhmgj/build.kgT/src/test/usr/lib/s390x-linux-gnu -LTrading.framework -pthread -fexceptions -rdynamic -o obj/eoexample2 \ 185s ./obj/eoexample2.obj/eoexample2.m.o \ 185s -L../EOAccess/./obj -L../EOControl/./obj -L/home/ubuntu/GNUstep/Library/Libraries -L/usr/local/lib -L/usr/lib/s390x-linux-gnu -L/usr/lib -lgnustep-base -lEOAccess -lEOControl -lobjc -lm 185s make[3]: warning: Clock skew detected. Your build may be incomplete. 185s make[2]: warning: Clock skew detected. Your build may be incomplete. 185s make[1]: warning: Clock skew detected. Your build may be incomplete. 185s make: warning: Clock skew detected. Your build may be incomplete. 185s make: Leaving directory '/tmp/autopkgtest.0Hhmgj/build.kgT/src/Examples' 185s make: Entering directory '/tmp/autopkgtest.0Hhmgj/build.kgT/src/Examples' 185s This is gnustep-make 2.9.2. Type 'make print-gnustep-make-help' for help. 185s Running in gnustep-make version 2 strict mode. 185s Making all in Trading ... 185s make: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s Making build-headers for framework Trading... 185s make[1]: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s make[2]: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s make[2]: warning: Clock skew detected. Your build may be incomplete. 185s Making all for framework Trading... 185s make[2]: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s make[3]: Warning: File 'GNUmakefile' has modification time 59 s in the future 185s Creating derived_src/NSFramework_Trading.m... 185s Compiling file derived_src/NSFramework_Trading.m ... 186s Linking framework Trading ... 186s make[3]: warning: Clock skew detected. Your build may be incomplete. 186s Copying resources into the framework wrapper... 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s Creating derived_src/NSFramework_Trading.m... 186s Creating Trading.framework/Versions/0/Resources/Info-gnustep.plist... 186s make[2]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s Making all for tool createTradingDB... 186s make[3]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s make[4]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s make[4]: warning: Clock skew detected. Your build may be incomplete. 186s make[3]: warning: Clock skew detected. Your build may be incomplete. 186s make[4]: Nothing to be done for 'internal-tool-compile'. 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s make[1]: warning: Clock skew detected. Your build may be incomplete. 186s make[1]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s Making all for tool eoexample... 186s make[2]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s make[3]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s Compiling file eoexample.m ... 186s Linking tool eoexample ... 186s make[3]: warning: Clock skew detected. Your build may be incomplete. 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s Making all for tool connection... 186s make[2]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s make[3]: Warning: File 'GNUmakefile' has modification time 59 s in the future 186s Compiling file connection.m ... 186s Linking tool connection ... 186s make[3]: warning: Clock skew detected. Your build may be incomplete. 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s Making all for tool eoexample2... 186s make[2]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s make[3]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s make[3]: Nothing to be done for 'internal-tool-compile'. 186s make[3]: warning: Clock skew detected. Your build may be incomplete. 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s make[1]: warning: Clock skew detected. Your build may be incomplete. 186s Making install in Trading ... 186s make[1]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s Making install for framework Trading... 186s Creating /tmp/autopkgtest.0Hhmgj/build.kgT/src/test//usr/lib/s390x-linux-gnu/GNUstep/Frameworks... 186s make[2]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s Creating /tmp/autopkgtest.0Hhmgj/build.kgT/src/test//usr/include/s390x-linux-gnu/GNUstep... 186s Installing framework Trading... 186s Installing headers... 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s Making install for tool createTradingDB... 186s Creating /tmp/autopkgtest.0Hhmgj/build.kgT/src/test//usr/bin/.... 186s make[2]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s Installing tool createTradingDB... 186s make[2]: warning: Clock skew detected. Your build may be incomplete. 186s make[1]: warning: Clock skew detected. Your build may be incomplete. 186s Making install for tool eoexample... 186s Installing tool eoexample... 186s Making install for tool connection... 186s make[1]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s make[1]: warning: Clock skew detected. Your build may be incomplete. 186s Installing tool connection... 186s make[1]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s make[1]: warning: Clock skew detected. Your build may be incomplete. 186s Making install for tool eoexample2... 186s make[1]: Warning: File 'GNUmakefile' has modification time 58 s in the future 186s Installing tool eoexample2... 186s make[1]: warning: Clock skew detected. Your build may be incomplete. 186s make: Leaving directory '/tmp/autopkgtest.0Hhmgj/build.kgT/src/Examples' 186s Running createTradingDB tool... 186s make: warning: Clock skew detected. Your build may be incomplete. 186s Creating new PostgreSQL cluster 17/regress ... 189s 2025-02-15 22:44:15.548 createTradingDB[5843:5843] File NSKeyValueCoding.m: 909. In -[NSObject(KeyValueCoding) valuesForKeys:] This method is deprecated, use -dictionaryWithValuesForKeys: 189s 2025-02-15 22:44:15.579 createTradingDB[5843:5843] File EODatabase.m: 189. In -[EODatabase incrementSnapshotCountForGlobalID:] TODO: -[EODatabase incrementSnapshotCountForGlobalID:] 189s Dropping cluster 17/regress ... 189s Running connection tool... 189s Running eoexample tool... 189s 2025-02-15 22:44:15.813 eoexample[5855:5855] File NSKeyValueCoding.m: 909. In -[NSObject(KeyValueCoding) valuesForKeys:] This method is deprecated, use -dictionaryWithValuesForKeys: 189s 2025-02-15 22:44:15.816 eoexample[5855:5855] File EODatabase.m: 189. In -[EODatabase incrementSnapshotCountForGlobalID:] TODO: -[EODatabase incrementSnapshotCountForGlobalID:] 189s 2025-02-15 22:44:15.816 eoexample[5855:5855] MG-OXYMIUM-TMP -[EODatabaseChannel fetchObject]:311 row={authorID = 1; name = Anonymous; } 189s 2025-02-15 22:44:15.816 eoexample[5855:5855] MG-OXYMIUM-TMP -[EODatabaseChannel fetchObject]:347 gid= object= 189s values={name = Anonymous; toBooks = "<0x2aa08fbdbd8 EOCheapCopyMutableArray : ()>"; }> 189s 2025-02-15 22:44:15.816 eoexample[5855:5855] MG-OXYMIUM-TMP -[EODatabaseChannel fetchObject]:352 gid= snapshot={authorID = 1; name = Anonymous; } 189s 2025-02-15 22:44:15.816 eoexample[5855:5855] (" 189s values={name = Anonymous; toBooks = \"<0x2aa08fbdbd8 EOCheapCopyMutableArray : ()>\"; }>") 189s 2025-02-15 22:44:15.818 eoexample[5855:5855] MG-OXYMIUM-TMP -[EODatabaseChannel fetchObject]:311 row={authorID = 1; name = "John Doe"; } 189s 2025-02-15 22:44:15.818 eoexample[5855:5855] MG-OXYMIUM-TMP -[EODatabaseChannel fetchObject]:347 gid= object= 189s values={name = "John Doe"; toBooks = "<0x2aa08fbdbd8 EOCheapCopyMutableArray : ()>"; }> 189s Running eoexample2 tool... 189s 2025-02-15 22:44:15.818 eoexample[5855:5855] MG-OXYMIUM-TMP -[EODatabaseChannel fetchObject]:352 gid= snapshot={authorID = 1; name = "John Doe"; } 189s 2025-02-15 22:44:15.818 eoexample[5855:5855] (" 189s values={name = \"John Doe\"; toBooks = \"<0x2aa08fbdbd8 EOCheapCopyMutableArray : ()>\"; }>") 189s 2025-02-15 22:44:15.840 eoexample2[5856:5856] File NSKeyValueCoding.m: 909. In -[NSObject(KeyValueCoding) valuesForKeys:] This method is deprecated, use -dictionaryWithValuesForKeys: 189s 2025-02-15 22:44:15.846 eoexample2[5856:5856] File EODatabase.m: 189. In -[EODatabase incrementSnapshotCountForGlobalID:] TODO: -[EODatabase incrementSnapshotCountForGlobalID:] 189s 2025-02-15 22:44:15.846 eoexample2[5856:5856] Richard Brautigan ("The Hawkline Monster", "Trout Fishing in America") 189s Running eoutil dump... 189s Running eoutil convert... 189s 2025-02-15 22:44:15.846 eoexample2[5856:5856] Richard Brautigan 189s 2025-02-15 22:44:15.846 eoexample2[5856:5856] ("Richard Brautigan", "Richard Brautigan") 189s 2025-02-15 22:44:15.870 eoutil[5857:5857] File NSKeyValueCoding.m: 909. In -[NSObject(KeyValueCoding) valuesForKeys:] This method is deprecated, use -dictionaryWithValuesForKeys: 189s 2025-02-15 22:44:15.896 eoutil[5858:5858] Converted ./Examples/library.eomodel to test.eomodel 189s Running gdlgsdoc... 189s 2025-02-15 22:44:15.917 gdlgsdoc[5859:5859] Model Examples/library.eomodel loaded 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EOModel 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: GSMutableDictionary 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] key: databasePath elem: example.db 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: GSMutableDictionary 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EOEntity: authors 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EOAttribute: authorID tagName=EOAttribute 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: EOAttribute: authorID 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EOAttribute: name tagName=EOAttribute 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: EOAttribute: name 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EOAttribute: name tagName=EOAttributeRef 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: EOAttribute: name 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: ") destinationAttributes=("") isCompound=NO isFlattened=NO isToMany=YES isBidirectional=NO> 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EORelationship: toBooks 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: EORelationship: toBooks 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EOAttribute: authorID tagName=EOAttributeRef 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: EOAttribute: authorID 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Stop: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: ") destinationAttributes=("") isCompound=NO isFlattened=NO isToMany=YES isBidirectional=NO> 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: EORelationship: toBooks 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.918 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EOAttribute: authorID tagName=EOAttribute 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: EOAttribute: authorID 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EOAttribute: bookID tagName=EOAttribute 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: EOAttribute: bookID 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EOAttribute: title tagName=EOAttribute 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: EOAttribute: title 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: GSMutableArray 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EOAttribute: title tagName=EOAttributeRef 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: EOAttribute: title 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: ") destinationAttributes=("") isCompound=NO isFlattened=NO isToMany=NO isBidirectional=NO> 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EORelationship: toAuthor 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: EORelationship: toAuthor 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: GSMutableArray 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EOAttribute: bookID tagName=EOAttributeRef 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: EOAttribute: bookID 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Stop: GSMutableArray 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: GSMutableArray 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: ") destinationAttributes=("") isCompound=NO isFlattened=NO isToMany=NO isBidirectional=NO> 189s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: EORelationship: toAuthor 190s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] Start: GSMutableArray 190s 2025-02-15 22:44:15.919 gdlgsdoc[5859:5859] elem: