0s autopkgtest: DBG: testbed init 0s autopkgtest [23:15:42]: starting date and time: 2025-02-15 23:15:42+0000 0s autopkgtest [23:15:42]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [23:15:42]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.9jha134r/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 kronosnet --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-28.secgroup --name adt-plucky-s390x-kronosnet-20250215-231541-juju-7f2275-prod-proposed-migration-environment-15-5b95aa3a-4b99-4fd0-82a9-52b8d8937e20 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 109s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.zFYuQO 109s autopkgtest: DBG: sending command to testbed: print-execute-command 109s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.fc5r9fgd/runcmd 109s autopkgtest: DBG: sending command to testbed: capabilities 109s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine suggested-normal-user=ubuntu revert revert-full-system root-on-testbed 109s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert', 'revert-full-system', 'root-on-testbed', 'has_internet'] 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zFYuQO'], 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.zFYuQO/wrapper.sh 110s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zFYuQO/wrapper.sh'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [23:17:32]: testbed dpkg architecture: s390x 110s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [23:17:32]: testbed apt version: 2.9.28 110s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed has eatmydata 111s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [23:17:33]: @@@@@@@@@@@@@@@@@@@@ test bed setup 111s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [23:17:33]: testbed release detected to be: None 111s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: adding APT source: Types: deb deb-src 111s URIs: http://ftpmaster.internal/ubuntu/ 111s Suites: plucky-proposed 111s Components: main restricted universe multiverse 111s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 111s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 500 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [23:17:34]: updating testbed package index (apt update) 112s 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'] 112s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 112s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 112s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 112s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 113s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [828 kB] 113s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 113s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [74.3 kB] 113s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 113s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [163 kB] 113s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 113s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [876 kB] 113s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 113s Fetched 2073 kB in 1s (2054 kB/s) 114s Reading package lists... 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 114s Package: * 114s Pin: release plucky-proposed 114s Pin-Priority: 100 114s 114s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 114s Pin: release plucky-proposed 114s Pin-Priority: 995 114s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s 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.zFYuQO/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s 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'] 114s + lsb_release --codename --short 114s + RELEASE=plucky 114s + cat 114s + [ plucky != trusty ] 114s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Calculating upgrade... 115s The following packages were automatically installed and are no longer required: 115s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 115s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 115s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 115s linux-tools-6.11.0-8-generic 115s Use 'sudo apt autoremove' to remove them. 115s The following packages will be upgraded: 115s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 115s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s Need to get 1155 kB of archives. 115s After this operation, 16.4 kB of additional disk space will be used. 115s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 115s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 115s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 115s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 115s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 115s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 115s Preconfiguring packages ... 116s Fetched 1155 kB in 1s (1640 kB/s) 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 116s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 116s Setting up dash (0.5.12-12ubuntu1) ... 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 116s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 116s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 116s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 116s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 116s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 116s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 116s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 116s Setting up libtasn1-6:s390x (4.20.0-2) ... 116s Processing triggers for libc-bin (2.40-4ubuntu1) ... 116s Processing triggers for man-db (2.13.0-1) ... 116s Processing triggers for debianutils (5.21) ... 117s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 117s + /usr/lib/apt/apt-helper analyze-pattern ?true 117s + uname -r 117s + sed s/\./\\./g 117s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 117s + apt list ?obsolete 117s + tail -n+2 117s + cut -d/ -f1 117s + grep -v ^linux-.*6\.12\.0-15-generic.* 117s + true 117s + obsolete_pkgs= 117s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s The following packages will be REMOVED: 117s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 117s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 117s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 117s linux-tools-6.11.0-8-generic* 117s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 117s After this operation, 167 MB disk space will be freed. 117s (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.) 117s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 117s Removing libpython3.12t64:s390x (3.12.9-1) ... 117s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 117s Removing libnsl2:s390x (1.3.0-3build3) ... 117s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 117s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 119s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 119s Processing triggers for libc-bin (2.40-4ubuntu1) ... 119s (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.) 119s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 119s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 119s + grep -q trusty /etc/lsb-release 119s + [ ! -d /usr/share/doc/unattended-upgrades ] 119s + [ ! -d /usr/share/doc/lxd ] 119s + [ ! -d /usr/share/doc/lxd-client ] 119s + [ ! -d /usr/share/doc/snapd ] 119s + type iptables 119s + cat 119s + chmod 755 /etc/rc.local 119s + . /etc/rc.local 119s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 119s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 119s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 119s + uname -m 119s + [ s390x = ppc64le ] 119s + [ -d /run/systemd/system ] 119s + systemd-detect-virt --quiet --vm 119s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 119s + cat 119s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 119s + echo COMPRESS=lz4 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest [23:17:41]: upgrading testbed (apt dist-upgrade and autopurge) 119s 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'] 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 120s Entering ResolveByKeep 120s 120s The following packages will be upgraded: 120s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 120s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s Need to get 10.7 MB of archives. 120s After this operation, 305 kB of additional disk space will be used. 120s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 120s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 121s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 121s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 121s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 121s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 121s Preconfiguring packages ... 121s Fetched 10.7 MB in 1s (9141 kB/s) 121s (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.) 121s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 121s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 121s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 121s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 122s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 122s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 122s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 122s Checking for services that may need to be restarted... 122s Checking init scripts... 122s Checking for services that may need to be restarted... 122s Checking init scripts... 122s Stopping some services possibly affected by the upgrade (will be restarted later): 122s cron: stopping...done. 122s 122s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 122s Setting up libc6:s390x (2.41-1ubuntu1) ... 122s Checking for services that may need to be restarted... 122s Checking init scripts... 122s Restarting services possibly affected by the upgrade: 122s cron: restarting...done. 122s 122s Services restarted successfully. 122s (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.) 122s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 122s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 122s Setting up libc-bin (2.41-1ubuntu1) ... 122s (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.) 122s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 122s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 122s Setting up iproute2 (6.13.0-1ubuntu1) ... 122s Setting up locales (2.41-1ubuntu1) ... 122s Installing new version of config file /etc/locale.alias ... 123s Generating locales (this might take a while)... 124s en_US.UTF-8... done 124s Generation complete. 124s Setting up libc-dev-bin (2.41-1ubuntu1) ... 124s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 124s Processing triggers for man-db (2.13.0-1) ... 125s Processing triggers for systemd (257.2-3ubuntu1) ... 125s autopkgtest: DBG: testbed command exited with code 0 125s 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'] 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 126s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 126s autopkgtest: DBG: testbed command exited with code 0 126s 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.zFYuQO/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 126s autopkgtest: DBG: testbed command exited with code 1 126s autopkgtest [23:17:48]: rebooting testbed after setup commands that affected boot 126s autopkgtest: DBG: sending command to testbed: reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zFYuQO'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.zFYuQO/autopkgtest-reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zFYuQO'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.zFYuQO/autopkgtest-reboot-prepare 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [23:18:08]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 146s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zFYuQO/testbed-packages"], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/testbed-packages /tmp/autopkgtest-work.9jha134r/out/testbed-packages 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zFYuQO'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.zFYuQO/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.zFYuQO'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.zFYuQO/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.zFYuQO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: Binaries: initialising 148s autopkgtest [23:18:10]: @@@@@@@@@@@@@@@@@@@@ apt-source kronosnet 148s autopkgtest: DBG: blame += kronosnet 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 148s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'kronosnet'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libknet-dev$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libknet-dev=1.29-1ubuntu1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libnozzle1t64$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libnozzle1t64=1.29-1ubuntu1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libknet-doc$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libknet-doc=1.29-1ubuntu1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libknet1t64$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libknet1t64=1.29-1ubuntu1'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libnozzle-dev$'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libnozzle-dev=1.29-1ubuntu1'], kind short, sout pipe, serr raw, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: install_deps: deps_new=[] 151s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s 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.zFYuQO/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source kronosnet=1.29-1ubuntu1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x kronosnet_*.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'] 151s + cd / 151s + mktemp -d /tmp/autopkgtest.zFYuQO/build.XXX 151s + builddir=/tmp/autopkgtest.zFYuQO/build.ffp 151s + cd /tmp/autopkgtest.zFYuQO/build.ffp 151s + apt-get source -d -q --only-source kronosnet=1.29-1ubuntu1 152s + OUT=Reading package lists... 152s NOTICE: 'kronosnet' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/ha-team/kronosnet.git 152s Please use: 152s git clone https://salsa.debian.org/ha-team/kronosnet.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 501 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (dsc) [3176 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (tar) [484 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (asc) [833 B] 152s Get:4 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (diff) [12.8 kB] 152s Fetched 501 kB in 1s (834 kB/s) 152s Download complete and in download only mode 152s + [ -n ] 152s + grep ^Get: 152s + echo Reading package lists... 152s NOTICE: 'kronosnet' packaging is maintained in the 'Git' version control system at: 152s https://salsa.debian.org/ha-team/kronosnet.git 152s Please use: 152s git clone https://salsa.debian.org/ha-team/kronosnet.git 152s to retrieve the latest (possibly unreleased) updates to the package. 152s Need to get 501 kB of source archives. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (dsc) [3176 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (tar) [484 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (asc) [833 B] 152s Get:4 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (diff) [12.8 kB] 152s Fetched 501 kB in 1s (834 kB/s) 152s Download complete and in download only mode 152s Get:1 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (dsc) [3176 B] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (tar) [484 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (asc) [833 B] 152s Get:4 http://ftpmaster.internal/ubuntu plucky/main kronosnet 1.29-1ubuntu1 (diff) [12.8 kB] 152s + dpkg-source -x kronosnet_1.29-1ubuntu1.dsc src 152s gpgv: Signature made Wed Aug 14 14:16:11 2024 UTC 152s gpgv: using RSA key 439884E6862A429C290DF63B033C4CA276024834 152s gpgv: issuer "athos.ribeiro@canonical.com" 152s gpgv: Can't check signature: No public key 152s dpkg-source: warning: cannot verify inline signature for ./kronosnet_1.29-1ubuntu1.dsc: no acceptable signature found 152s + chmod -R a+rX . 152s + cd src/. 152s + pwd 152s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [23:18:14]: testing package kronosnet version 1.29-1ubuntu1 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/ /tmp/autopkgtest-work.9jha134r/out/pkg/debian/ 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: processing dependency libknet-dev 152s autopkgtest: DBG: marked alternatives ['libknet-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency libnozzle-dev 152s autopkgtest: DBG: marked alternatives ['libnozzle-dev'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency build-essential 152s autopkgtest: DBG: processing dependency iproute2 [linux-any] 152s autopkgtest: DBG: processing dependency net-tools [kfreebsd-any] 152s autopkgtest: DBG: processing dependency pkg-config 152s autopkgtest: DBG: processing dependency libnl-3-dev 152s autopkgtest: DBG: processing dependency libnl-route-3-dev 152s autopkgtest: DBG: processing dependency libqb-dev 152s autopkgtest: DBG: processing dependency libsctp-dev 152s autopkgtest: DBG: processing dependency libbz2-dev 152s autopkgtest: DBG: processing dependency liblz4-dev 152s autopkgtest: DBG: processing dependency liblzma-dev 152s autopkgtest: DBG: processing dependency liblzo2-dev 152s autopkgtest: DBG: processing dependency libzstd-dev 152s autopkgtest: DBG: processing dependency zlib1g-dev 152s autopkgtest: DBG: processing dependency libnss3-dev 152s autopkgtest: DBG: processing dependency libssl-dev 152s autopkgtest: DBG: Test defined: name configure path debian/tests/configure command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 152s autopkgtest: DBG: Test defined: name libknet path debian/tests/libknet command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 152s autopkgtest: DBG: Test defined: name libnozzle path debian/tests/libnozzle command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 152s autopkgtest [23:18:14]: build not needed 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/build.ffp/src/ /tmp/autopkgtest-work.9jha134r/out/tests-tree/ 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: processing dependency libknet-dev 153s autopkgtest: DBG: marked alternatives ['libknet-dev'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency libnozzle-dev 153s autopkgtest: DBG: marked alternatives ['libnozzle-dev'] as a synthesised dependency 153s autopkgtest: DBG: processing dependency build-essential 153s autopkgtest: DBG: processing dependency iproute2 [linux-any] 153s autopkgtest: DBG: processing dependency net-tools [kfreebsd-any] 153s autopkgtest: DBG: processing dependency pkg-config 153s autopkgtest: DBG: processing dependency libnl-3-dev 153s autopkgtest: DBG: processing dependency libnl-route-3-dev 153s autopkgtest: DBG: processing dependency libqb-dev 153s autopkgtest: DBG: processing dependency libsctp-dev 153s autopkgtest: DBG: processing dependency libbz2-dev 153s autopkgtest: DBG: processing dependency liblz4-dev 153s autopkgtest: DBG: processing dependency liblzma-dev 153s autopkgtest: DBG: processing dependency liblzo2-dev 153s autopkgtest: DBG: processing dependency libzstd-dev 153s autopkgtest: DBG: processing dependency zlib1g-dev 153s autopkgtest: DBG: processing dependency libnss3-dev 153s autopkgtest: DBG: processing dependency libssl-dev 153s autopkgtest: DBG: Test defined: name configure path debian/tests/configure command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 153s autopkgtest: DBG: Test defined: name libknet path debian/tests/libknet command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 153s autopkgtest: DBG: Test defined: name libnozzle path debian/tests/libnozzle command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 153s autopkgtest [23:18:15]: test configure: preparing testbed 153s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 153s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 153s autopkgtest: DBG: install_deps: deps_new=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 153s autopkgtest: DBG: install-deps: satisfying libknet-dev, libnozzle-dev, build-essential, iproute2 [linux-any], net-tools [kfreebsd-any], pkg-config, libnl-3-dev, libnl-route-3-dev, libqb-dev, libsctp-dev, libbz2-dev, liblz4-dev, liblzma-dev, liblzo2-dev, libzstd-dev, zlib1g-dev, libnss3-dev, libssl-dev 153s autopkgtest: DBG: can use apt-get on testbed: True 153s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'libknet-dev, libnozzle-dev, build-essential, iproute2 [linux-any], net-tools [kfreebsd-any], pkg-config, libnl-3-dev, libnl-route-3-dev, libqb-dev, libsctp-dev, libbz2-dev, liblz4-dev, liblzma-dev, liblzo2-dev, libzstd-dev, zlib1g-dev, libnss3-dev, libssl-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 154s Reading package lists... 154s Building dependency tree... 154s Reading state information... 154s Starting pkgProblemResolver with broken count: 0 154s Starting 2 pkgProblemResolver with broken count: 0 154s Done 154s The following NEW packages will be installed: 154s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu g++ 154s g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 154s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu libasan8 libbz2-dev libcc1-0 154s libgcc-14-dev libgomp1 libisl23 libitm1 libknet-dev libknet1t64 liblz4-dev 154s liblzma-dev liblzo2-dev libmpc3 libnl-3-dev libnl-route-3-dev libnozzle-dev 154s libnozzle1t64 libnspr4-dev libnss3-dev libpkgconf3 libqb-dev libqb100 154s libsctp-dev libsctp1 libssl-dev libstdc++-14-dev libubsan1 libxxhash-dev 154s libzstd-dev pkg-config pkgconf pkgconf-bin zlib1g-dev 154s 0 upgraded, 46 newly installed, 0 to remove and 0 not upgraded. 154s Need to get 54.2 MB of archives. 154s After this operation, 181 MB of additional disk space will be used. 154s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 155s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 155s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 155s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 155s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 155s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 155s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 155s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 155s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 155s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 155s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 155s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 155s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 156s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 156s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 156s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 156s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 156s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 156s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 156s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 156s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 156s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 156s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 156s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libknet1t64 s390x 1.29-1ubuntu1 [80.5 kB] 156s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libknet-dev s390x 1.29-1ubuntu1 [18.4 kB] 156s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x liblzo2-dev s390x 2.10-3 [106 kB] 156s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libnl-3-dev s390x 3.7.0-0.3build2 [103 kB] 156s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libnl-route-3-dev s390x 3.7.0-0.3build2 [214 kB] 156s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libnozzle1t64 s390x 1.29-1ubuntu1 [14.1 kB] 156s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libnozzle-dev s390x 1.29-1ubuntu1 [4376 B] 156s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libnspr4-dev s390x 2:4.36-1ubuntu1 [229 kB] 156s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libnss3-dev s390x 2:3.106-1ubuntu1 [255 kB] 156s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 156s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libqb100 s390x 2.0.8-2 [74.0 kB] 156s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libsctp1 s390x 1.0.21+dfsg-1 [8990 B] 156s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libsctp-dev s390x 1.0.21+dfsg-1 [56.9 kB] 156s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libssl-dev s390x 3.4.0-1ubuntu2 [2427 kB] 156s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libxxhash-dev s390x 0.8.2-2build1 [82.5 kB] 156s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 156s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 156s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 156s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x pkg-config s390x 1.8.1-4 [7362 B] 156s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 157s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x liblz4-dev s390x 1.10.0-3 [110 kB] 157s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma-dev s390x 5.6.3-1 [183 kB] 157s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libqb-dev s390x 2.0.8-2 [156 kB] 157s Fetched 54.2 MB in 3s (21.7 MB/s) 157s Selecting previously unselected package libisl23:s390x. 157s (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.) 157s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 157s Unpacking libisl23:s390x (0.27-1) ... 157s Selecting previously unselected package libmpc3:s390x. 157s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 157s Unpacking libmpc3:s390x (1.3.1-1build2) ... 157s Selecting previously unselected package cpp-14-s390x-linux-gnu. 157s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package cpp-14. 157s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package cpp-s390x-linux-gnu. 157s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 157s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 157s Selecting previously unselected package cpp. 157s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 157s Unpacking cpp (4:14.2.0-1ubuntu1) ... 157s Selecting previously unselected package libcc1-0:s390x. 157s Preparing to unpack .../06-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libgomp1:s390x. 157s Preparing to unpack .../07-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libitm1:s390x. 157s Preparing to unpack .../08-libitm1_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libasan8:s390x. 157s Preparing to unpack .../09-libasan8_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libubsan1:s390x. 157s Preparing to unpack .../10-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libgcc-14-dev:s390x. 157s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package gcc-14-s390x-linux-gnu. 157s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Selecting previously unselected package gcc-14. 158s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 158s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 158s Selecting previously unselected package gcc-s390x-linux-gnu. 158s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 158s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Selecting previously unselected package gcc. 158s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 158s Unpacking gcc (4:14.2.0-1ubuntu1) ... 158s Selecting previously unselected package libstdc++-14-dev:s390x. 158s Preparing to unpack .../16-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 158s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 158s Selecting previously unselected package g++-14-s390x-linux-gnu. 158s Preparing to unpack .../17-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 158s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Selecting previously unselected package g++-14. 158s Preparing to unpack .../18-g++-14_14.2.0-17ubuntu1_s390x.deb ... 158s Unpacking g++-14 (14.2.0-17ubuntu1) ... 158s Selecting previously unselected package g++-s390x-linux-gnu. 158s Preparing to unpack .../19-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 158s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Selecting previously unselected package g++. 158s Preparing to unpack .../20-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 158s Unpacking g++ (4:14.2.0-1ubuntu1) ... 158s Selecting previously unselected package build-essential. 158s Preparing to unpack .../21-build-essential_12.10ubuntu1_s390x.deb ... 158s Unpacking build-essential (12.10ubuntu1) ... 158s Selecting previously unselected package libbz2-dev:s390x. 158s Preparing to unpack .../22-libbz2-dev_1.0.8-6_s390x.deb ... 158s Unpacking libbz2-dev:s390x (1.0.8-6) ... 158s Selecting previously unselected package libknet1t64:s390x. 158s Preparing to unpack .../23-libknet1t64_1.29-1ubuntu1_s390x.deb ... 158s Unpacking libknet1t64:s390x (1.29-1ubuntu1) ... 158s Selecting previously unselected package libknet-dev:s390x. 158s Preparing to unpack .../24-libknet-dev_1.29-1ubuntu1_s390x.deb ... 158s Unpacking libknet-dev:s390x (1.29-1ubuntu1) ... 158s Selecting previously unselected package liblzo2-dev:s390x. 158s Preparing to unpack .../25-liblzo2-dev_2.10-3_s390x.deb ... 158s Unpacking liblzo2-dev:s390x (2.10-3) ... 158s Selecting previously unselected package libnl-3-dev:s390x. 158s Preparing to unpack .../26-libnl-3-dev_3.7.0-0.3build2_s390x.deb ... 158s Unpacking libnl-3-dev:s390x (3.7.0-0.3build2) ... 158s Selecting previously unselected package libnl-route-3-dev:s390x. 158s Preparing to unpack .../27-libnl-route-3-dev_3.7.0-0.3build2_s390x.deb ... 158s Unpacking libnl-route-3-dev:s390x (3.7.0-0.3build2) ... 158s Selecting previously unselected package libnozzle1t64:s390x. 158s Preparing to unpack .../28-libnozzle1t64_1.29-1ubuntu1_s390x.deb ... 158s Unpacking libnozzle1t64:s390x (1.29-1ubuntu1) ... 158s Selecting previously unselected package libnozzle-dev:s390x. 158s Preparing to unpack .../29-libnozzle-dev_1.29-1ubuntu1_s390x.deb ... 158s Unpacking libnozzle-dev:s390x (1.29-1ubuntu1) ... 158s Selecting previously unselected package libnspr4-dev. 158s Preparing to unpack .../30-libnspr4-dev_2%3a4.36-1ubuntu1_s390x.deb ... 158s Unpacking libnspr4-dev (2:4.36-1ubuntu1) ... 158s Selecting previously unselected package libnss3-dev:s390x. 158s Preparing to unpack .../31-libnss3-dev_2%3a3.106-1ubuntu1_s390x.deb ... 158s Unpacking libnss3-dev:s390x (2:3.106-1ubuntu1) ... 158s Selecting previously unselected package libpkgconf3:s390x. 158s Preparing to unpack .../32-libpkgconf3_1.8.1-4_s390x.deb ... 158s Unpacking libpkgconf3:s390x (1.8.1-4) ... 158s Selecting previously unselected package libqb100:s390x. 158s Preparing to unpack .../33-libqb100_2.0.8-2_s390x.deb ... 158s Unpacking libqb100:s390x (2.0.8-2) ... 158s Selecting previously unselected package libsctp1:s390x. 158s Preparing to unpack .../34-libsctp1_1.0.21+dfsg-1_s390x.deb ... 158s Unpacking libsctp1:s390x (1.0.21+dfsg-1) ... 158s Selecting previously unselected package libsctp-dev:s390x. 158s Preparing to unpack .../35-libsctp-dev_1.0.21+dfsg-1_s390x.deb ... 158s Unpacking libsctp-dev:s390x (1.0.21+dfsg-1) ... 158s Selecting previously unselected package libssl-dev:s390x. 158s Preparing to unpack .../36-libssl-dev_3.4.0-1ubuntu2_s390x.deb ... 158s Unpacking libssl-dev:s390x (3.4.0-1ubuntu2) ... 158s Selecting previously unselected package libxxhash-dev:s390x. 158s Preparing to unpack .../37-libxxhash-dev_0.8.2-2build1_s390x.deb ... 158s Unpacking libxxhash-dev:s390x (0.8.2-2build1) ... 158s Selecting previously unselected package libzstd-dev:s390x. 158s Preparing to unpack .../38-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 158s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 158s Selecting previously unselected package pkgconf-bin. 158s Preparing to unpack .../39-pkgconf-bin_1.8.1-4_s390x.deb ... 158s Unpacking pkgconf-bin (1.8.1-4) ... 158s Selecting previously unselected package pkgconf:s390x. 158s Preparing to unpack .../40-pkgconf_1.8.1-4_s390x.deb ... 158s Unpacking pkgconf:s390x (1.8.1-4) ... 158s Selecting previously unselected package pkg-config:s390x. 158s Preparing to unpack .../41-pkg-config_1.8.1-4_s390x.deb ... 158s Unpacking pkg-config:s390x (1.8.1-4) ... 158s Selecting previously unselected package zlib1g-dev:s390x. 158s Preparing to unpack .../42-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 158s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 158s Selecting previously unselected package liblz4-dev:s390x. 158s Preparing to unpack .../43-liblz4-dev_1.10.0-3_s390x.deb ... 158s Unpacking liblz4-dev:s390x (1.10.0-3) ... 158s Selecting previously unselected package liblzma-dev:s390x. 158s Preparing to unpack .../44-liblzma-dev_5.6.3-1_s390x.deb ... 158s Unpacking liblzma-dev:s390x (5.6.3-1) ... 158s Selecting previously unselected package libqb-dev:s390x. 158s Preparing to unpack .../45-libqb-dev_2.0.8-2_s390x.deb ... 158s Unpacking libqb-dev:s390x (2.0.8-2) ... 158s Setting up libnspr4-dev (2:4.36-1ubuntu1) ... 158s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 158s Setting up libqb100:s390x (2.0.8-2) ... 158s Setting up libnozzle1t64:s390x (1.29-1ubuntu1) ... 158s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 158s Setting up libpkgconf3:s390x (1.8.1-4) ... 158s Setting up libssl-dev:s390x (3.4.0-1ubuntu2) ... 158s Setting up libmpc3:s390x (1.3.1-1build2) ... 158s Setting up pkgconf-bin (1.8.1-4) ... 158s Setting up libxxhash-dev:s390x (0.8.2-2build1) ... 158s Setting up liblzo2-dev:s390x (2.10-3) ... 158s Setting up liblzma-dev:s390x (5.6.3-1) ... 158s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 158s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 158s Setting up libsctp1:s390x (1.0.21+dfsg-1) ... 158s Setting up libnl-3-dev:s390x (3.7.0-0.3build2) ... 158s Setting up libnss3-dev:s390x (2:3.106-1ubuntu1) ... 158s Setting up libknet1t64:s390x (1.29-1ubuntu1) ... 158s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 158s Setting up libisl23:s390x (0.27-1) ... 158s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 158s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 158s Setting up libbz2-dev:s390x (1.0.8-6) ... 158s Setting up libqb-dev:s390x (2.0.8-2) ... 158s Setting up libnozzle-dev:s390x (1.29-1ubuntu1) ... 158s Setting up pkgconf:s390x (1.8.1-4) ... 158s Setting up libnl-route-3-dev:s390x (3.7.0-0.3build2) ... 158s Setting up libsctp-dev:s390x (1.0.21+dfsg-1) ... 158s Setting up liblz4-dev:s390x (1.10.0-3) ... 158s Setting up pkg-config:s390x (1.8.1-4) ... 158s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Setting up cpp-14 (14.2.0-17ubuntu1) ... 158s Setting up libknet-dev:s390x (1.29-1ubuntu1) ... 158s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 158s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 158s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Setting up cpp (4:14.2.0-1ubuntu1) ... 158s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Setting up gcc-14 (14.2.0-17ubuntu1) ... 158s Setting up g++-14 (14.2.0-17ubuntu1) ... 158s Setting up gcc (4:14.2.0-1ubuntu1) ... 158s Setting up g++ (4:14.2.0-1ubuntu1) ... 158s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 158s Setting up build-essential (12.10ubuntu1) ... 158s Processing triggers for man-db (2.13.0-1) ... 159s Processing triggers for libc-bin (2.41-1ubuntu1) ... 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libknet-dev'], kind short, sout pipe, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libnozzle-dev'], kind short, sout pipe, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zFYuQO/configure-packages.all"], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/configure-packages.all /tmp/autopkgtest-work.9jha134r/out/configure-packages.all 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.zFYuQO/build.ffp/src'], kind short, sout raw, serr raw, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.zFYuQO/build.ffp/src already exists 160s autopkgtest [23:18:22]: test configure: [----------------------- 160s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.zFYuQO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.zFYuQO/configure-artifacts --chdir=/tmp/autopkgtest.zFYuQO/build.ffp/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.zFYuQO/configure-stderr --stdout=/tmp/autopkgtest.zFYuQO/configure-stdout --tmp=/tmp/autopkgtest.zFYuQO/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--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.zFYuQO/build.ffp/src/debian/tests/configure -- /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/configure"], kind test, sout raw, serr raw, env [] 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.zFYuQO/configure-artifacts 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: changing to directory: /tmp/autopkgtest.zFYuQO/build.ffp/src 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: LANG=C.UTF-8 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LANGUAGE 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_ADDRESS 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_ALL 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_COLLATE 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_CTYPE 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MEASUREMENT 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MESSAGES 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MONETARY 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_NAME 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_NUMERIC 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_PAPER 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_TELEPHONE 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_TIME 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: pretending to be a login shell 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: will write standard error to /tmp/autopkgtest.zFYuQO/configure-stderr 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: will write stdout to /tmp/autopkgtest.zFYuQO/configure-stdout 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.zFYuQO/autopkgtest_tmp 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 160s /tmp/autopkgtest.zFYuQO/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 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: marking as executable: /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/configure 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: command to run: /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/configure 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: copying /tmp/tmp.p7I26CWsF4/out to stdout and file: /tmp/autopkgtest.zFYuQO/configure-stdout 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: copying /tmp/tmp.p7I26CWsF4/err to standard error and file: /tmp/autopkgtest.zFYuQO/configure-stdout 160s /tmp/autopkgtest.zFYuQO/wrapper.sh: writing script pid 1876 to /tmp/autopkgtest_script_pid 160s + dpkg-architecture -q DEB_HOST_GNU_TYPE 161s + DEB_HOST_GNU_TYPE=s390x-linux-gnu 161s + ./configure --disable-man --build=s390x-linux-gnu --host=s390x-linux-gnu 161s checking for s390x-linux-gnu-gcc... s390x-linux-gnu-gcc 161s checking whether the C compiler works... yes 161s checking for C compiler default output file name... a.out 161s checking for suffix of executables... 161s checking whether we are cross compiling... no 161s checking for suffix of object files... o 161s checking whether the compiler supports GNU C... yes 161s checking whether s390x-linux-gnu-gcc accepts -g... yes 161s checking for s390x-linux-gnu-gcc option to enable C11 features... none needed 161s checking whether s390x-linux-gnu-gcc understands -c and -o together... yes 161s checking for stdio.h... yes 161s checking for stdlib.h... yes 161s checking for string.h... yes 161s checking for inttypes.h... yes 161s checking for stdint.h... yes 161s checking for strings.h... yes 161s checking for sys/stat.h... yes 161s checking for sys/types.h... yes 161s checking for unistd.h... yes 161s checking for wchar.h... yes 161s checking for minix/config.h... no 161s checking whether it is safe to define __EXTENSIONS__... yes 161s checking whether _XOPEN_SOURCE should be defined... no 161s checking for a BSD-compatible install... /usr/bin/install -c 161s checking whether build environment is sane... yes 161s checking for a race-free mkdir -p... /usr/bin/mkdir -p 161s checking for gawk... gawk 161s checking whether make sets $(MAKE)... yes 161s checking whether make supports the include directive... yes (GNU style) 161s checking whether make supports nested variables... yes 161s checking dependency style of s390x-linux-gnu-gcc... gcc3 161s checking whether the linker accepts -Wl,--enable-new-dtags... yes 161s checking whether the linker accepts -Wl,--as-needed... yes 161s checking build system type... s390x-ibm-linux-gnu 161s checking host system type... s390x-ibm-linux-gnu 161s checking how to print strings... printf 161s checking for a sed that does not truncate output... /usr/bin/sed 161s checking for grep that handles long lines and -e... /usr/bin/grep 161s checking for egrep... /usr/bin/grep -E 161s checking for fgrep... /usr/bin/grep -F 161s checking for ld used by s390x-linux-gnu-gcc... /usr/bin/ld 161s checking if the linker (/usr/bin/ld) is GNU ld... yes 161s checking for BSD- or MS-compatible name lister (nm)... /usr/bin/s390x-linux-gnu-nm -B 161s checking the name lister (/usr/bin/s390x-linux-gnu-nm -B) interface... BSD nm 161s checking whether ln -s works... yes 161s checking the maximum length of command line arguments... 1572864 161s checking how to convert s390x-ibm-linux-gnu file names to s390x-ibm-linux-gnu format... func_convert_file_noop 161s checking how to convert s390x-ibm-linux-gnu file names to toolchain format... func_convert_file_noop 161s checking for /usr/bin/ld option to reload object files... -r 161s checking for s390x-linux-gnu-file... no 161s checking for file... file 161s checking for s390x-linux-gnu-objdump... s390x-linux-gnu-objdump 161s checking how to recognize dependent libraries... pass_all 161s checking for s390x-linux-gnu-dlltool... no 161s checking for dlltool... no 161s checking how to associate runtime and link libraries... printf %s\n 161s checking for s390x-linux-gnu-ar... s390x-linux-gnu-ar 161s checking for archiver @FILE support... @ 161s checking for s390x-linux-gnu-strip... s390x-linux-gnu-strip 161s checking for s390x-linux-gnu-ranlib... s390x-linux-gnu-ranlib 161s checking command to parse /usr/bin/s390x-linux-gnu-nm -B output from s390x-linux-gnu-gcc object... ok 161s checking for sysroot... no 161s checking for a working dd... /usr/bin/dd 161s checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 161s checking for s390x-linux-gnu-mt... no 161s checking for mt... mt 161s checking if mt is a manifest tool... no 161s checking for dlfcn.h... yes 161s checking for objdir... .libs 161s checking if s390x-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no 161s checking for s390x-linux-gnu-gcc option to produce PIC... -fPIC -DPIC 161s checking if s390x-linux-gnu-gcc PIC flag -fPIC -DPIC works... yes 161s checking if s390x-linux-gnu-gcc static flag -static works... yes 161s checking if s390x-linux-gnu-gcc supports -c -o file.o... yes 161s checking if s390x-linux-gnu-gcc supports -c -o file.o... (cached) yes 161s checking whether the s390x-linux-gnu-gcc linker (/usr/bin/ld -m elf64_s390) supports shared libraries... yes 161s checking whether -lc should be explicitly linked in... no 161s checking dynamic linker characteristics... GNU/Linux ld.so 161s checking how to hardcode library paths into programs... immediate 161s checking whether stripping libraries is possible... yes 161s checking if libtool supports shared libraries... yes 161s checking whether to build shared libraries... yes 161s checking whether to build static libraries... yes 161s checking for gawk... (cached) gawk 161s checking for grep that handles long lines and -e... (cached) /usr/bin/grep 161s checking for a sed that does not truncate output... (cached) /usr/bin/sed 161s checking how to run the C preprocessor... s390x-linux-gnu-gcc -E 161s checking for s390x-linux-gnu-gcc... (cached) s390x-linux-gnu-gcc 162s checking whether the compiler supports GNU C... (cached) yes 162s checking whether s390x-linux-gnu-gcc accepts -g... (cached) yes 162s checking for s390x-linux-gnu-gcc option to enable C11 features... (cached) none needed 162s checking whether s390x-linux-gnu-gcc understands -c and -o together... (cached) yes 162s checking whether ln -s works... yes 162s checking whether make sets $(MAKE)... (cached) yes 162s checking for s390x-linux-gnu-pkg-config... /usr/bin/s390x-linux-gnu-pkg-config 162s checking pkg-config is at least version 0.9.0... yes 162s checking for valgrind... no 162s checking for cov-build... no 162s checking for cov-analyze... no 162s checking for cov-format-errors... no 162s checking for nss... yes 162s checking for libcrypto... yes 162s checking for libzstd... yes 162s checking for zlib... yes 162s checking for liblz4... yes 162s checking for lzo2... yes 162s checking for liblzma... yes 162s checking for bzip2... yes 162s checking whether s390x-linux-gnu-gcc is Clang... no 162s checking whether pthreads work with "-pthread" and "-lpthread"... yes 162s checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE 162s checking whether more special flags are required for pthreads... no 162s checking for PTHREAD_PRIO_INHERIT... yes 162s checking for library containing ceil... -lm 162s checking for library containing clock_gettime... none required 162s checking for library containing dlopen... none required 162s checking for s390x-linux-gnu-gcc options needed to detect all undeclared functions... none needed 162s checking whether RTLD_DI_ORIGIN is declared... yes 162s checking for os in linux-gnu... Linux 162s checking for sys/epoll.h... yes 162s checking for kevent... no 162s checking for netinet/sctp.h... yes 162s checking for inline... inline 162s checking for pid_t... yes 162s checking for size_t... yes 162s checking for ssize_t... yes 162s checking for uint8_t... yes 162s checking for uint16_t... yes 162s checking for uint32_t... yes 162s checking for uint64_t... yes 162s checking for int8_t... yes 162s checking for int16_t... yes 162s checking for int32_t... yes 162s checking for int64_t... yes 162s checking for libqb... yes 162s checking for libnl-3.0... yes 162s checking for libnl-route-3.0 >= 3.3... yes 162s checking whether s390x-linux-gnu-gcc supports "-O3 -D_FORTIFY_SOURCE=3"... yes 162s checking whether s390x-linux-gnu-gcc supports "-fplugin=annobin"... no 162s checking whether s390x-linux-gnu-gcc supports "-fPIC"... yes 162s checking whether s390x-linux-gnu-gcc supports "-DPIC"... yes 162s checking whether s390x-linux-gnu-gcc supports "-pie"... yes 162s checking whether s390x-linux-gnu-gcc supports "-fstack-protector-strong"... yes 162s checking whether s390x-linux-gnu-gcc supports "-fexceptions"... yes 162s checking whether s390x-linux-gnu-gcc supports "-D_GLIBCXX_ASSERTIONS"... yes 162s checking whether s390x-linux-gnu-gcc supports "-Wl,-z,now"... yes 162s checking whether s390x-linux-gnu-gcc supports "-fstack-clash-protection"... yes 162s checking whether s390x-linux-gnu-gcc supports "-fcf-protection=full"... no 162s checking whether s390x-linux-gnu-gcc supports "-mcet"... no 162s checking whether s390x-linux-gnu-gcc supports "-mstackrealign"... no 162s checking for GNU date... yes 162s checking for BSD date... no 162s checking for date type... gnu 162s checking whether GNU date supports --date... yes 162s checking whether GNU date supports --utc... yes 162s configure: trying to determine source epoch 162s checking for source epoch in $SOURCE_EPOCH... no 162s checking for source epoch in source_epoch file... yes 162s configure: using source epoch 2024-06-06 05:41:26 UTC 163s checking that generated files are newer than configure... done 163s configure: creating ./config.status 163s config.status: creating Makefile 163s config.status: creating libnozzle/Makefile 163s config.status: creating libnozzle/libnozzle.pc 163s config.status: creating libnozzle/tests/Makefile 163s config.status: creating libknet/Makefile 163s config.status: creating libknet/libknet.pc 163s config.status: creating libknet/tests/Makefile 163s config.status: creating man/Makefile 163s config.status: creating man/Doxyfile-knet 163s config.status: creating man/Doxyfile-nozzle 163s config.status: creating config.h 163s config.status: executing depfiles commands 163s config.status: executing libtool commands 163s /tmp/autopkgtest.zFYuQO/wrapper.sh: checking for leaked background processes... 163s /tmp/autopkgtest.zFYuQO/wrapper.sh: waiting for tee/cat subprocesses... 163s /tmp/autopkgtest.zFYuQO/wrapper.sh: cleaning up... 163s /tmp/autopkgtest.zFYuQO/wrapper.sh: Exit status: 0 163s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest [23:18:26]: test configure: -----------------------] 164s autopkgtest: DBG: testbed executing test finished with exit status 0 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/configure-stdout /tmp/autopkgtest-work.9jha134r/out/configure-stdout 164s autopkgtest: DBG: got reply from testbed: ok 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/configure-stderr /tmp/autopkgtest-work.9jha134r/out/configure-stderr 164s autopkgtest: DBG: got reply from testbed: ok 164s configure PASS 164s autopkgtest [23:18:26]: test configure: - - - - - - - - - - results - - - - - - - - - - 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/configure-artifacts/ /tmp/autopkgtest-work.9jha134r/out/artifacts/ 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.zFYuQO/configure-artifacts', '/tmp/autopkgtest.zFYuQO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest [23:18:27]: test libknet: preparing testbed 165s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'], deps_new=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 165s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 165s autopkgtest: DBG: install_deps: deps_new=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 165s autopkgtest: DBG: install-deps: satisfying libknet-dev, libnozzle-dev, build-essential, iproute2 [linux-any], net-tools [kfreebsd-any], pkg-config, libnl-3-dev, libnl-route-3-dev, libqb-dev, libsctp-dev, libbz2-dev, liblz4-dev, liblzma-dev, liblzo2-dev, libzstd-dev, zlib1g-dev, libnss3-dev, libssl-dev 165s autopkgtest: DBG: can use apt-get on testbed: True 165s 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', 'libknet-dev, libnozzle-dev, build-essential, iproute2 [linux-any], net-tools [kfreebsd-any], pkg-config, libnl-3-dev, libnl-route-3-dev, libqb-dev, libsctp-dev, libbz2-dev, liblz4-dev, liblzma-dev, liblzo2-dev, libzstd-dev, zlib1g-dev, libnss3-dev, libssl-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 165s Reading package lists... 165s Building dependency tree... 165s Reading state information... 165s Starting pkgProblemResolver with broken count: 0 165s Starting 2 pkgProblemResolver with broken count: 0 165s Done 165s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libknet-dev'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libnozzle-dev'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zFYuQO/libknet-packages.all"], kind short, sout raw, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libknet-packages.all /tmp/autopkgtest-work.9jha134r/out/libknet-packages.all 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.zFYuQO/build.ffp/src'], kind short, sout raw, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.zFYuQO/build.ffp/src already exists 166s autopkgtest [23:18:28]: test libknet: [----------------------- 166s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.zFYuQO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.zFYuQO/libknet-artifacts --chdir=/tmp/autopkgtest.zFYuQO/build.ffp/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.zFYuQO/libknet-stderr --stdout=/tmp/autopkgtest.zFYuQO/libknet-stdout --tmp=/tmp/autopkgtest.zFYuQO/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--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.zFYuQO/build.ffp/src/debian/tests/libknet -- /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/libknet"], kind test, sout raw, serr raw, env [] 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.zFYuQO/libknet-artifacts 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: changing to directory: /tmp/autopkgtest.zFYuQO/build.ffp/src 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: LANG=C.UTF-8 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LANGUAGE 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_ADDRESS 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_ALL 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_COLLATE 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_CTYPE 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MEASUREMENT 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MESSAGES 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MONETARY 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_NAME 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_NUMERIC 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_PAPER 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_TELEPHONE 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_TIME 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: pretending to be a login shell 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: will write standard error to /tmp/autopkgtest.zFYuQO/libknet-stderr 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: will write stdout to /tmp/autopkgtest.zFYuQO/libknet-stdout 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.zFYuQO/autopkgtest_tmp 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 167s /tmp/autopkgtest.zFYuQO/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 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: marking as executable: /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/libknet 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: command to run: /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/libknet 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: copying /tmp/tmp.4q9WAsJ8mN/out to stdout and file: /tmp/autopkgtest.zFYuQO/libknet-stdout 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: copying /tmp/tmp.4q9WAsJ8mN/err to standard error and file: /tmp/autopkgtest.zFYuQO/libknet-stdout 167s /tmp/autopkgtest.zFYuQO/wrapper.sh: writing script pid 4564 to /tmp/autopkgtest_script_pid 167s + dpkg-architecture -q DEB_HOST_GNU_TYPE 167s + DEB_HOST_GNU_TYPE=s390x-linux-gnu 167s + PKG_CONFIG=s390x-linux-gnu-pkg-config 167s + touch aclocal.m4 configure config.status libknet/tests/Makefile.in libknet/tests/Makefile 167s + s390x-linux-gnu-pkg-config --libs libknet 167s + make LIBS=-lknet $(PTHREAD_LIBS) $(dl_LIBS) VERBOSE=1 -C libknet/tests all check-TESTS 167s make: Warning: File '../.deps/common.Po' has modification time 82 s in the future 167s make: Entering directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libknet/tests' 167s depbase=`echo api_knet_handle_new_limit.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 167s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_new_limit.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_new_limit.o api_knet_handle_new_limit.c &&\ 167s mv -f $depbase.Tpo $depbase.Po 167s depbase=`echo test-common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 167s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT test-common.o -MD -MP -MF $depbase.Tpo -c -o test-common.o test-common.c &&\ 167s mv -f $depbase.Tpo $depbase.Po 167s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_new_limit_test api_knet_handle_new_limit.o test-common.o -lknet -lpthread 167s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_new_limit_test api_knet_handle_new_limit.o test-common.o -lknet -lpthread -pthread 167s depbase=`echo pckt_test.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 167s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT pckt_test.o -MD -MP -MF $depbase.Tpo -c -o pckt_test.o pckt_test.c &&\ 167s mv -f $depbase.Tpo $depbase.Po 167s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o pckt_test pckt_test.o -lknet -lpthread 167s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o pckt_test pckt_test.o -lknet -lpthread -pthread 167s depbase=`echo knet_bench.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 167s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT knet_bench.o -MD -MP -MF $depbase.Tpo -c -o knet_bench.o knet_bench.c &&\ 167s mv -f $depbase.Tpo $depbase.Po 168s depbase=`echo ../common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 168s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../common.o -MD -MP -MF $depbase.Tpo -c -o ../common.o ../common.c &&\ 168s mv -f $depbase.Tpo $depbase.Po 168s depbase=`echo ../logging.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 168s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../logging.o -MD -MP -MF $depbase.Tpo -c -o ../logging.o ../logging.c &&\ 168s mv -f $depbase.Tpo $depbase.Po 168s depbase=`echo ../compat.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 168s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../compat.o -MD -MP -MF $depbase.Tpo -c -o ../compat.o ../compat.c &&\ 168s mv -f $depbase.Tpo $depbase.Po 168s depbase=`echo ../transport_common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 168s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_common.o -MD -MP -MF $depbase.Tpo -c -o ../transport_common.o ../transport_common.c &&\ 168s mv -f $depbase.Tpo $depbase.Po 168s depbase=`echo ../threads_common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 168s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../threads_common.o -MD -MP -MF $depbase.Tpo -c -o ../threads_common.o ../threads_common.c &&\ 168s mv -f $depbase.Tpo $depbase.Po 169s depbase=`echo ../onwire.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../onwire.o -MD -MP -MF $depbase.Tpo -c -o ../onwire.o ../onwire.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 169s depbase=`echo ../lib_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../lib_config.o -MD -MP -MF $depbase.Tpo -c -o ../lib_config.o ../lib_config.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 169s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o knet_bench_test knet_bench.o test-common.o ../common.o ../logging.o ../compat.o ../transport_common.o ../threads_common.o ../onwire.o ../lib_config.o -lknet -lpthread 169s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o knet_bench_test knet_bench.o test-common.o ../common.o ../logging.o ../compat.o ../transport_common.o ../threads_common.o ../onwire.o ../lib_config.o -lknet -lpthread -pthread 169s depbase=`echo fun_pmtud_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT fun_pmtud_crypto.o -MD -MP -MF $depbase.Tpo -c -o fun_pmtud_crypto.o fun_pmtud_crypto.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 169s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_pmtud_crypto_test fun_pmtud_crypto.o test-common.o ../onwire.o ../logging.o ../threads_common.o ../lib_config.o -lknet -lpthread 169s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_pmtud_crypto_test fun_pmtud_crypto.o test-common.o ../onwire.o ../logging.o ../threads_common.o ../lib_config.o -lknet -lpthread -pthread 169s depbase=`echo api_knet_handle_new.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_new.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_new.o api_knet_handle_new.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 169s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_new_test api_knet_handle_new.o test-common.o -lknet -lpthread 169s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_new_test api_knet_handle_new.o test-common.o -lknet -lpthread -pthread 169s depbase=`echo api_knet_handle_free.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_free.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_free.o api_knet_handle_free.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 169s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_free_test api_knet_handle_free.o test-common.o -lknet -lpthread 169s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_free_test api_knet_handle_free.o test-common.o -lknet -lpthread -pthread 169s depbase=`echo api_knet_handle_compress.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_compress.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_compress.o api_knet_handle_compress.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 169s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_compress_test api_knet_handle_compress.o test-common.o -lknet -lpthread 169s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_compress_test api_knet_handle_compress.o test-common.o -lknet -lpthread -pthread 169s depbase=`echo api_knet_handle_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 169s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto.o api_knet_handle_crypto.c &&\ 169s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_test api_knet_handle_crypto.o test-common.o -lknet -lpthread 170s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_test api_knet_handle_crypto.o test-common.o -lknet -lpthread -pthread 170s depbase=`echo api_knet_handle_setfwd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 170s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_setfwd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_setfwd.o api_knet_handle_setfwd.c &&\ 170s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_setfwd_test api_knet_handle_setfwd.o test-common.o -lknet -lpthread 170s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_setfwd_test api_knet_handle_setfwd.o test-common.o -lknet -lpthread -pthread 170s depbase=`echo api_knet_handle_enable_access_lists.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 170s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_access_lists.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_access_lists.o api_knet_handle_enable_access_lists.c &&\ 170s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_access_lists_test api_knet_handle_enable_access_lists.o test-common.o -lknet -lpthread 170s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_access_lists_test api_knet_handle_enable_access_lists.o test-common.o -lknet -lpthread -pthread 170s depbase=`echo api_knet_handle_enable_filter.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 170s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_filter.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_filter.o api_knet_handle_enable_filter.c &&\ 170s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_filter_test api_knet_handle_enable_filter.o test-common.o -lknet -lpthread 170s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_filter_test api_knet_handle_enable_filter.o test-common.o -lknet -lpthread -pthread 170s depbase=`echo api_knet_handle_enable_sock_notify.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 170s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_sock_notify.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_sock_notify.o api_knet_handle_enable_sock_notify.c &&\ 170s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_sock_notify_test api_knet_handle_enable_sock_notify.o test-common.o -lknet -lpthread 170s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_sock_notify_test api_knet_handle_enable_sock_notify.o test-common.o -lknet -lpthread -pthread 170s depbase=`echo api_knet_handle_add_datafd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 170s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_add_datafd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_add_datafd.o api_knet_handle_add_datafd.c &&\ 170s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_add_datafd_test api_knet_handle_add_datafd.o test-common.o -lknet -lpthread 170s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_add_datafd_test api_knet_handle_add_datafd.o test-common.o -lknet -lpthread -pthread 170s depbase=`echo api_knet_handle_remove_datafd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 170s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_remove_datafd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_remove_datafd.o api_knet_handle_remove_datafd.c &&\ 170s mv -f $depbase.Tpo $depbase.Po 170s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_remove_datafd_test api_knet_handle_remove_datafd.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_remove_datafd_test api_knet_handle_remove_datafd.o test-common.o -lknet -lpthread -pthread 171s depbase=`echo api_knet_handle_get_channel.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 171s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_channel.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_channel.o api_knet_handle_get_channel.c &&\ 171s mv -f $depbase.Tpo $depbase.Po 171s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_channel_test api_knet_handle_get_channel.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_channel_test api_knet_handle_get_channel.o test-common.o -lknet -lpthread -pthread 171s depbase=`echo api_knet_handle_get_datafd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 171s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_datafd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_datafd.o api_knet_handle_get_datafd.c &&\ 171s mv -f $depbase.Tpo $depbase.Po 171s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_datafd_test api_knet_handle_get_datafd.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_datafd_test api_knet_handle_get_datafd.o test-common.o -lknet -lpthread -pthread 171s depbase=`echo api_knet_handle_get_stats.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 171s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_stats.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_stats.o api_knet_handle_get_stats.c &&\ 171s mv -f $depbase.Tpo $depbase.Po 171s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_stats_test api_knet_handle_get_stats.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_stats_test api_knet_handle_get_stats.o test-common.o -lknet -lpthread -pthread 171s depbase=`echo api_knet_get_crypto_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 171s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_crypto_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_crypto_list.o api_knet_get_crypto_list.c &&\ 171s mv -f $depbase.Tpo $depbase.Po 171s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_crypto_list_test api_knet_get_crypto_list.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_crypto_list_test api_knet_get_crypto_list.o test-common.o -lknet -lpthread -pthread 171s depbase=`echo api_knet_get_compress_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 171s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_compress_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_compress_list.o api_knet_get_compress_list.c &&\ 171s mv -f $depbase.Tpo $depbase.Po 171s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_compress_list_test api_knet_get_compress_list.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_compress_list_test api_knet_get_compress_list.o test-common.o -lknet -lpthread -pthread 171s depbase=`echo api_knet_handle_clear_stats.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 171s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_clear_stats.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_clear_stats.o api_knet_handle_clear_stats.c &&\ 171s mv -f $depbase.Tpo $depbase.Po 171s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_clear_stats_test api_knet_handle_clear_stats.o test-common.o -lknet -lpthread 171s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_clear_stats_test api_knet_handle_clear_stats.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_get_transport_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_transport_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_transport_list.o api_knet_get_transport_list.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 172s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_list_test api_knet_get_transport_list.o test-common.o -lknet -lpthread 172s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_list_test api_knet_get_transport_list.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_get_transport_name_by_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_transport_name_by_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_transport_name_by_id.o api_knet_get_transport_name_by_id.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 172s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_name_by_id_test api_knet_get_transport_name_by_id.o test-common.o -lknet -lpthread 172s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_name_by_id_test api_knet_get_transport_name_by_id.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_get_transport_id_by_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_transport_id_by_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_transport_id_by_name.o api_knet_get_transport_id_by_name.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 172s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_id_by_name_test api_knet_get_transport_id_by_name.o test-common.o -lknet -lpthread 172s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_id_by_name_test api_knet_get_transport_id_by_name.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_handle_set_transport_reconnect_interval.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_set_transport_reconnect_interval.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_set_transport_reconnect_interval.o api_knet_handle_set_transport_reconnect_interval.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 172s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_set_transport_reconnect_interval_test api_knet_handle_set_transport_reconnect_interval.o test-common.o -lknet -lpthread 172s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_set_transport_reconnect_interval_test api_knet_handle_set_transport_reconnect_interval.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_handle_get_transport_reconnect_interval.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_transport_reconnect_interval.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_transport_reconnect_interval.o api_knet_handle_get_transport_reconnect_interval.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 172s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_transport_reconnect_interval_test api_knet_handle_get_transport_reconnect_interval.o test-common.o -lknet -lpthread 172s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_transport_reconnect_interval_test api_knet_handle_get_transport_reconnect_interval.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_recv.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_recv.o -MD -MP -MF $depbase.Tpo -c -o api_knet_recv.o api_knet_recv.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 172s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_recv_test api_knet_recv.o test-common.o -lknet -lpthread 172s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_recv_test api_knet_recv.o test-common.o -lknet -lpthread -pthread 172s depbase=`echo api_knet_send.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 172s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send.o api_knet_send.c &&\ 172s mv -f $depbase.Tpo $depbase.Po 173s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_test api_knet_send.o test-common.o -lknet -lpthread 173s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_test api_knet_send.o test-common.o -lknet -lpthread -pthread 173s depbase=`echo api_knet_send_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 173s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_crypto.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_crypto.o api_knet_send_crypto.c &&\ 173s mv -f $depbase.Tpo $depbase.Po 173s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_crypto_test api_knet_send_crypto.o test-common.o -lknet -lpthread 173s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_crypto_test api_knet_send_crypto.o test-common.o -lknet -lpthread -pthread 173s depbase=`echo api_knet_send_compress.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 173s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_compress.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_compress.o api_knet_send_compress.c &&\ 173s mv -f $depbase.Tpo $depbase.Po 173s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_compress_test api_knet_send_compress.o test-common.o -lknet -lpthread 173s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_compress_test api_knet_send_compress.o test-common.o -lknet -lpthread -pthread 173s depbase=`echo api_knet_send_sync.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 173s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_sync.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_sync.o api_knet_send_sync.c &&\ 173s mv -f $depbase.Tpo $depbase.Po 173s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_sync_test api_knet_send_sync.o test-common.o -lknet -lpthread 173s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_sync_test api_knet_send_sync.o test-common.o -lknet -lpthread -pthread 173s depbase=`echo api_knet_send_loopback.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 173s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_loopback.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_loopback.o api_knet_send_loopback.c &&\ 173s mv -f $depbase.Tpo $depbase.Po 173s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_loopback_test api_knet_send_loopback.o test-common.o -lknet -lpthread 173s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_loopback_test api_knet_send_loopback.o test-common.o -lknet -lpthread -pthread 173s depbase=`echo api_knet_handle_pmtud_setfreq.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 173s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_setfreq.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_setfreq.o api_knet_handle_pmtud_setfreq.c &&\ 173s mv -f $depbase.Tpo $depbase.Po 174s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_setfreq_test api_knet_handle_pmtud_setfreq.o test-common.o -lknet -lpthread 174s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_setfreq_test api_knet_handle_pmtud_setfreq.o test-common.o -lknet -lpthread -pthread 174s depbase=`echo api_knet_handle_pmtud_getfreq.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 174s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_getfreq.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_getfreq.o api_knet_handle_pmtud_getfreq.c &&\ 174s mv -f $depbase.Tpo $depbase.Po 174s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_getfreq_test api_knet_handle_pmtud_getfreq.o test-common.o -lknet -lpthread 174s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_getfreq_test api_knet_handle_pmtud_getfreq.o test-common.o -lknet -lpthread -pthread 174s depbase=`echo api_knet_handle_enable_pmtud_notify.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 174s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_pmtud_notify.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_pmtud_notify.o api_knet_handle_enable_pmtud_notify.c &&\ 174s mv -f $depbase.Tpo $depbase.Po 174s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_pmtud_notify_test api_knet_handle_enable_pmtud_notify.o test-common.o -lknet -lpthread 174s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_pmtud_notify_test api_knet_handle_enable_pmtud_notify.o test-common.o -lknet -lpthread -pthread 174s depbase=`echo api_knet_handle_pmtud_get.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 174s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_get.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_get.o api_knet_handle_pmtud_get.c &&\ 174s mv -f $depbase.Tpo $depbase.Po 174s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_get_test api_knet_handle_pmtud_get.o test-common.o -lknet -lpthread 174s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_get_test api_knet_handle_pmtud_get.o test-common.o -lknet -lpthread -pthread 174s depbase=`echo api_knet_handle_pmtud_set.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 174s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_set.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_set.o api_knet_handle_pmtud_set.c &&\ 174s mv -f $depbase.Tpo $depbase.Po 174s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_set_test api_knet_handle_pmtud_set.o test-common.o -lknet -lpthread 174s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_set_test api_knet_handle_pmtud_set.o test-common.o -lknet -lpthread -pthread 174s depbase=`echo api_knet_host_add.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 174s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_add.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_add.o api_knet_host_add.c &&\ 174s mv -f $depbase.Tpo $depbase.Po 174s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_add_test api_knet_host_add.o test-common.o -lknet -lpthread 174s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_add_test api_knet_host_add.o test-common.o -lknet -lpthread -pthread 174s depbase=`echo api_knet_host_remove.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 174s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_remove.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_remove.o api_knet_host_remove.c &&\ 174s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_remove_test api_knet_host_remove.o test-common.o -lknet -lpthread 175s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_remove_test api_knet_host_remove.o test-common.o -lknet -lpthread -pthread 175s depbase=`echo api_knet_host_set_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 175s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_set_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_set_name.o api_knet_host_set_name.c &&\ 175s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_name_test api_knet_host_set_name.o test-common.o -lknet -lpthread 175s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_name_test api_knet_host_set_name.o test-common.o -lknet -lpthread -pthread 175s depbase=`echo api_knet_host_get_name_by_host_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 175s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_name_by_host_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_name_by_host_id.o api_knet_host_get_name_by_host_id.c &&\ 175s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_name_by_host_id_test api_knet_host_get_name_by_host_id.o test-common.o -lknet -lpthread 175s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_name_by_host_id_test api_knet_host_get_name_by_host_id.o test-common.o -lknet -lpthread -pthread 175s depbase=`echo api_knet_host_get_id_by_host_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 175s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_id_by_host_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_id_by_host_name.o api_knet_host_get_id_by_host_name.c &&\ 175s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_id_by_host_name_test api_knet_host_get_id_by_host_name.o test-common.o -lknet -lpthread 175s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_id_by_host_name_test api_knet_host_get_id_by_host_name.o test-common.o -lknet -lpthread -pthread 175s depbase=`echo api_knet_host_get_host_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 175s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_host_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_host_list.o api_knet_host_get_host_list.c &&\ 175s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_host_list_test api_knet_host_get_host_list.o test-common.o -lknet -lpthread 175s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_host_list_test api_knet_host_get_host_list.o test-common.o -lknet -lpthread -pthread 175s depbase=`echo api_knet_host_set_policy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 175s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_set_policy.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_set_policy.o api_knet_host_set_policy.c &&\ 175s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_policy_test api_knet_host_set_policy.o test-common.o -lknet -lpthread 175s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_policy_test api_knet_host_set_policy.o test-common.o -lknet -lpthread -pthread 175s depbase=`echo api_knet_host_get_policy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 175s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_policy.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_policy.o api_knet_host_get_policy.c &&\ 175s mv -f $depbase.Tpo $depbase.Po 175s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_policy_test api_knet_host_get_policy.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_policy_test api_knet_host_get_policy.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_host_get_status.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_status.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_status.o api_knet_host_get_status.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 176s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_status_test api_knet_host_get_status.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_status_test api_knet_host_get_status.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_host_enable_status_change_notify.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_enable_status_change_notify.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_enable_status_change_notify.o api_knet_host_enable_status_change_notify.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 176s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_enable_status_change_notify_test api_knet_host_enable_status_change_notify.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_enable_status_change_notify_test api_knet_host_enable_status_change_notify.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_log_get_subsystem_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_subsystem_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_subsystem_name.o api_knet_log_get_subsystem_name.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 176s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_name_test api_knet_log_get_subsystem_name.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_name_test api_knet_log_get_subsystem_name.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_log_get_subsystem_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_subsystem_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_subsystem_id.o api_knet_log_get_subsystem_id.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 176s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_id_test api_knet_log_get_subsystem_id.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_id_test api_knet_log_get_subsystem_id.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_log_get_loglevel_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_loglevel_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_loglevel_name.o api_knet_log_get_loglevel_name.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 176s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_name_test api_knet_log_get_loglevel_name.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_name_test api_knet_log_get_loglevel_name.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_log_get_loglevel_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_loglevel_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_loglevel_id.o api_knet_log_get_loglevel_id.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 176s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_id_test api_knet_log_get_loglevel_id.o test-common.o -lknet -lpthread 176s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_id_test api_knet_log_get_loglevel_id.o test-common.o -lknet -lpthread -pthread 176s depbase=`echo api_knet_log_set_loglevel.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 176s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_set_loglevel.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_set_loglevel.o api_knet_log_set_loglevel.c &&\ 176s mv -f $depbase.Tpo $depbase.Po 177s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_set_loglevel_test api_knet_log_set_loglevel.o test-common.o -lknet -lpthread 177s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_set_loglevel_test api_knet_log_set_loglevel.o test-common.o -lknet -lpthread -pthread 177s depbase=`echo api_knet_log_get_loglevel.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 177s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_loglevel.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_loglevel.o api_knet_log_get_loglevel.c &&\ 177s mv -f $depbase.Tpo $depbase.Po 177s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_test api_knet_log_get_loglevel.o test-common.o -lknet -lpthread 177s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_test api_knet_log_get_loglevel.o test-common.o -lknet -lpthread -pthread 177s depbase=`echo api_knet_strtoaddr.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 177s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_strtoaddr.o -MD -MP -MF $depbase.Tpo -c -o api_knet_strtoaddr.o api_knet_strtoaddr.c &&\ 177s mv -f $depbase.Tpo $depbase.Po 177s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_strtoaddr_test api_knet_strtoaddr.o -lknet -lpthread 177s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_strtoaddr_test api_knet_strtoaddr.o -lknet -lpthread -pthread 177s depbase=`echo api_knet_addrtostr.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 177s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_addrtostr.o -MD -MP -MF $depbase.Tpo -c -o api_knet_addrtostr.o api_knet_addrtostr.c &&\ 177s mv -f $depbase.Tpo $depbase.Po 177s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_addrtostr_test api_knet_addrtostr.o -lknet -lpthread 177s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_addrtostr_test api_knet_addrtostr.o -lknet -lpthread -pthread 177s depbase=`echo api_knet_link_set_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 177s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_config.o api_knet_link_set_config.c &&\ 177s mv -f $depbase.Tpo $depbase.Po 177s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_config_test api_knet_link_set_config.o test-common.o -lknet -lpthread 177s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_config_test api_knet_link_set_config.o test-common.o -lknet -lpthread -pthread 177s depbase=`echo api_knet_link_clear_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 177s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_clear_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_clear_config.o api_knet_link_clear_config.c &&\ 177s mv -f $depbase.Tpo $depbase.Po 177s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_config_test api_knet_link_clear_config.o test-common.o -lknet -lpthread 177s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_config_test api_knet_link_clear_config.o test-common.o -lknet -lpthread -pthread 177s depbase=`echo api_knet_link_get_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 177s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_config.o api_knet_link_get_config.c &&\ 177s mv -f $depbase.Tpo $depbase.Po 178s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_config_test api_knet_link_get_config.o test-common.o -lknet -lpthread 178s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_config_test api_knet_link_get_config.o test-common.o -lknet -lpthread -pthread 178s depbase=`echo api_knet_link_set_ping_timers.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 178s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_ping_timers.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_ping_timers.o api_knet_link_set_ping_timers.c &&\ 178s mv -f $depbase.Tpo $depbase.Po 178s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_ping_timers_test api_knet_link_set_ping_timers.o test-common.o -lknet -lpthread 178s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_ping_timers_test api_knet_link_set_ping_timers.o test-common.o -lknet -lpthread -pthread 178s depbase=`echo api_knet_link_get_ping_timers.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 178s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_ping_timers.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_ping_timers.o api_knet_link_get_ping_timers.c &&\ 178s mv -f $depbase.Tpo $depbase.Po 178s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_ping_timers_test api_knet_link_get_ping_timers.o test-common.o -lknet -lpthread 178s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_ping_timers_test api_knet_link_get_ping_timers.o test-common.o -lknet -lpthread -pthread 178s depbase=`echo api_knet_link_set_pong_count.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 178s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_pong_count.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_pong_count.o api_knet_link_set_pong_count.c &&\ 178s mv -f $depbase.Tpo $depbase.Po 178s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_pong_count_test api_knet_link_set_pong_count.o test-common.o -lknet -lpthread 178s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_pong_count_test api_knet_link_set_pong_count.o test-common.o -lknet -lpthread -pthread 178s depbase=`echo api_knet_link_get_pong_count.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 178s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_pong_count.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_pong_count.o api_knet_link_get_pong_count.c &&\ 178s mv -f $depbase.Tpo $depbase.Po 178s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_pong_count_test api_knet_link_get_pong_count.o test-common.o -lknet -lpthread 178s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_pong_count_test api_knet_link_get_pong_count.o test-common.o -lknet -lpthread -pthread 178s depbase=`echo api_knet_link_set_priority.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 178s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_priority.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_priority.o api_knet_link_set_priority.c &&\ 178s mv -f $depbase.Tpo $depbase.Po 179s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_priority_test api_knet_link_set_priority.o test-common.o -lknet -lpthread 179s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_priority_test api_knet_link_set_priority.o test-common.o -lknet -lpthread -pthread 179s depbase=`echo api_knet_link_get_priority.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 179s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_priority.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_priority.o api_knet_link_get_priority.c &&\ 179s mv -f $depbase.Tpo $depbase.Po 179s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_priority_test api_knet_link_get_priority.o test-common.o -lknet -lpthread 179s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_priority_test api_knet_link_get_priority.o test-common.o -lknet -lpthread -pthread 179s depbase=`echo api_knet_link_set_enable.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 179s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_enable.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_enable.o api_knet_link_set_enable.c &&\ 179s mv -f $depbase.Tpo $depbase.Po 179s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_enable_test api_knet_link_set_enable.o test-common.o -lknet -lpthread 179s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_enable_test api_knet_link_set_enable.o test-common.o -lknet -lpthread -pthread 179s depbase=`echo api_knet_link_get_enable.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 179s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_enable.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_enable.o api_knet_link_get_enable.c &&\ 179s mv -f $depbase.Tpo $depbase.Po 179s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_enable_test api_knet_link_get_enable.o test-common.o -lknet -lpthread 179s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_enable_test api_knet_link_get_enable.o test-common.o -lknet -lpthread -pthread 179s depbase=`echo api_knet_link_get_link_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 179s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_link_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_link_list.o api_knet_link_get_link_list.c &&\ 179s mv -f $depbase.Tpo $depbase.Po 179s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_link_list_test api_knet_link_get_link_list.o test-common.o -lknet -lpthread 179s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_link_list_test api_knet_link_get_link_list.o test-common.o -lknet -lpthread -pthread 179s depbase=`echo api_knet_link_get_status.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 179s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_status.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_status.o api_knet_link_get_status.c &&\ 179s mv -f $depbase.Tpo $depbase.Po 179s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_status_test api_knet_link_get_status.o test-common.o -lknet -lpthread 179s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_status_test api_knet_link_get_status.o test-common.o -lknet -lpthread -pthread 180s depbase=`echo api_knet_link_add_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 180s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_add_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_add_acl.o api_knet_link_add_acl.c &&\ 180s mv -f $depbase.Tpo $depbase.Po 180s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_add_acl_test api_knet_link_add_acl.o test-common.o -lknet -lpthread 180s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_add_acl_test api_knet_link_add_acl.o test-common.o -lknet -lpthread -pthread 180s depbase=`echo api_knet_link_insert_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 180s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_insert_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_insert_acl.o api_knet_link_insert_acl.c &&\ 180s mv -f $depbase.Tpo $depbase.Po 180s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_insert_acl_test api_knet_link_insert_acl.o test-common.o -lknet -lpthread 180s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_insert_acl_test api_knet_link_insert_acl.o test-common.o -lknet -lpthread -pthread 180s depbase=`echo api_knet_link_rm_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 180s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_rm_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_rm_acl.o api_knet_link_rm_acl.c &&\ 180s mv -f $depbase.Tpo $depbase.Po 180s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_rm_acl_test api_knet_link_rm_acl.o test-common.o -lknet -lpthread 180s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_rm_acl_test api_knet_link_rm_acl.o test-common.o -lknet -lpthread -pthread 180s depbase=`echo api_knet_link_clear_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 180s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_clear_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_clear_acl.o api_knet_link_clear_acl.c &&\ 180s mv -f $depbase.Tpo $depbase.Po 180s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_acl_test api_knet_link_clear_acl.o test-common.o -lknet -lpthread 180s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_acl_test api_knet_link_clear_acl.o test-common.o -lknet -lpthread -pthread 180s depbase=`echo api_knet_handle_crypto_set_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 180s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto_set_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto_set_config.o api_knet_handle_crypto_set_config.c &&\ 180s mv -f $depbase.Tpo $depbase.Po 181s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_set_config_test api_knet_handle_crypto_set_config.o test-common.o -lknet -lpthread 181s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_set_config_test api_knet_handle_crypto_set_config.o test-common.o -lknet -lpthread -pthread 181s depbase=`echo api_knet_handle_crypto_use_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto_use_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto_use_config.o api_knet_handle_crypto_use_config.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 181s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_use_config_test api_knet_handle_crypto_use_config.o test-common.o -lknet -lpthread 181s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_use_config_test api_knet_handle_crypto_use_config.o test-common.o -lknet -lpthread -pthread 181s depbase=`echo api_knet_handle_crypto_rx_clear_traffic.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto_rx_clear_traffic.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto_rx_clear_traffic.o api_knet_handle_crypto_rx_clear_traffic.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 181s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_rx_clear_traffic_test api_knet_handle_crypto_rx_clear_traffic.o test-common.o -lknet -lpthread 181s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_rx_clear_traffic_test api_knet_handle_crypto_rx_clear_traffic.o test-common.o -lknet -lpthread -pthread 181s depbase=`echo int_links_acl_ip.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT int_links_acl_ip.o -MD -MP -MF $depbase.Tpo -c -o int_links_acl_ip.o int_links_acl_ip.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 181s depbase=`echo ../netutils.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../netutils.o -MD -MP -MF $depbase.Tpo -c -o ../netutils.o ../netutils.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 181s depbase=`echo ../transports.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transports.o -MD -MP -MF $depbase.Tpo -c -o ../transports.o ../transports.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 181s depbase=`echo ../transport_loopback.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_loopback.o -MD -MP -MF $depbase.Tpo -c -o ../transport_loopback.o ../transport_loopback.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 181s depbase=`echo ../transport_sctp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 181s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_sctp.o -MD -MP -MF $depbase.Tpo -c -o ../transport_sctp.o ../transport_sctp.c &&\ 181s mv -f $depbase.Tpo $depbase.Po 182s depbase=`echo ../transport_udp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 182s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_udp.o -MD -MP -MF $depbase.Tpo -c -o ../transport_udp.o ../transport_udp.c &&\ 182s mv -f $depbase.Tpo $depbase.Po 182s depbase=`echo ../links_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 182s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../links_acl.o -MD -MP -MF $depbase.Tpo -c -o ../links_acl.o ../links_acl.c &&\ 182s mv -f $depbase.Tpo $depbase.Po 182s depbase=`echo ../links_acl_ip.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 182s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../links_acl_ip.o -MD -MP -MF $depbase.Tpo -c -o ../links_acl_ip.o ../links_acl_ip.c &&\ 182s mv -f $depbase.Tpo $depbase.Po 182s depbase=`echo ../links_acl_loopback.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 182s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../links_acl_loopback.o -MD -MP -MF $depbase.Tpo -c -o ../links_acl_loopback.o ../links_acl_loopback.c &&\ 182s mv -f $depbase.Tpo $depbase.Po 182s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_links_acl_ip_test int_links_acl_ip.o ../common.o ../compat.o ../logging.o ../netutils.o ../threads_common.o ../onwire.o ../transports.o ../transport_common.o ../transport_loopback.o ../transport_sctp.o ../transport_udp.o ../links_acl.o ../links_acl_ip.o ../links_acl_loopback.o ../lib_config.o -lknet -lpthread 182s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_links_acl_ip_test int_links_acl_ip.o ../common.o ../compat.o ../logging.o ../netutils.o ../threads_common.o ../onwire.o ../transports.o ../transport_common.o ../transport_loopback.o ../transport_sctp.o ../transport_udp.o ../links_acl.o ../links_acl_ip.o ../links_acl_loopback.o ../lib_config.o -lknet -lpthread -pthread 182s depbase=`echo int_timediff.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 182s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT int_timediff.o -MD -MP -MF $depbase.Tpo -c -o int_timediff.o int_timediff.c &&\ 182s mv -f $depbase.Tpo $depbase.Po 182s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_timediff_test int_timediff.o -lknet -lpthread 182s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_timediff_test int_timediff.o -lknet -lpthread -pthread 182s depbase=`echo fun_config_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 182s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT fun_config_crypto.o -MD -MP -MF $depbase.Tpo -c -o fun_config_crypto.o fun_config_crypto.c &&\ 182s mv -f $depbase.Tpo $depbase.Po 183s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_config_crypto_test fun_config_crypto.o test-common.o -lknet -lpthread 183s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_config_crypto_test fun_config_crypto.o test-common.o -lknet -lpthread -pthread 183s depbase=`echo fun_acl_check.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 183s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT fun_acl_check.o -MD -MP -MF $depbase.Tpo -c -o fun_acl_check.o fun_acl_check.c &&\ 183s mv -f $depbase.Tpo $depbase.Po 183s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_acl_check_test fun_acl_check.o test-common.o -lknet -lpthread 183s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_acl_check_test fun_acl_check.o test-common.o -lknet -lpthread -pthread 183s make[1]: Entering directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libknet/tests' 183s make[1]: Warning: File '../../config.h' has modification time 65 s in the future 183s depbase=`echo api_knet_handle_new.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 183s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_new.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_new.o api_knet_handle_new.c &&\ 183s mv -f $depbase.Tpo $depbase.Po 183s depbase=`echo test-common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 183s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT test-common.o -MD -MP -MF $depbase.Tpo -c -o test-common.o test-common.c &&\ 183s mv -f $depbase.Tpo $depbase.Po 184s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_new_test api_knet_handle_new.o test-common.o -lknet -lpthread 184s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_new_test api_knet_handle_new.o test-common.o -lknet -lpthread -pthread 186s PASS: api_knet_handle_new_test 186s depbase=`echo api_knet_handle_free.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 186s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_free.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_free.o api_knet_handle_free.c &&\ 186s mv -f $depbase.Tpo $depbase.Po 186s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_free_test api_knet_handle_free.o test-common.o -lknet -lpthread 186s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_free_test api_knet_handle_free.o test-common.o -lknet -lpthread -pthread 187s PASS: api_knet_handle_free_test 187s depbase=`echo api_knet_handle_compress.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 187s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_compress.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_compress.o api_knet_handle_compress.c &&\ 187s mv -f $depbase.Tpo $depbase.Po 187s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_compress_test api_knet_handle_compress.o test-common.o -lknet -lpthread 187s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_compress_test api_knet_handle_compress.o test-common.o -lknet -lpthread -pthread 188s PASS: api_knet_handle_compress_test 188s depbase=`echo api_knet_handle_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 188s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto.o api_knet_handle_crypto.c &&\ 188s mv -f $depbase.Tpo $depbase.Po 188s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_test api_knet_handle_crypto.o test-common.o -lknet -lpthread 188s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_test api_knet_handle_crypto.o test-common.o -lknet -lpthread -pthread 191s PASS: api_knet_handle_crypto_test 191s depbase=`echo api_knet_handle_setfwd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 191s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_setfwd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_setfwd.o api_knet_handle_setfwd.c &&\ 191s mv -f $depbase.Tpo $depbase.Po 191s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_setfwd_test api_knet_handle_setfwd.o test-common.o -lknet -lpthread 191s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_setfwd_test api_knet_handle_setfwd.o test-common.o -lknet -lpthread -pthread 192s PASS: api_knet_handle_setfwd_test 192s depbase=`echo api_knet_handle_enable_access_lists.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 192s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_access_lists.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_access_lists.o api_knet_handle_enable_access_lists.c &&\ 192s mv -f $depbase.Tpo $depbase.Po 193s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_access_lists_test api_knet_handle_enable_access_lists.o test-common.o -lknet -lpthread 193s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_access_lists_test api_knet_handle_enable_access_lists.o test-common.o -lknet -lpthread -pthread 194s PASS: api_knet_handle_enable_access_lists_test 194s depbase=`echo api_knet_handle_enable_filter.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 194s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_filter.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_filter.o api_knet_handle_enable_filter.c &&\ 194s mv -f $depbase.Tpo $depbase.Po 194s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_filter_test api_knet_handle_enable_filter.o test-common.o -lknet -lpthread 194s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_filter_test api_knet_handle_enable_filter.o test-common.o -lknet -lpthread -pthread 195s PASS: api_knet_handle_enable_filter_test 195s depbase=`echo api_knet_handle_enable_sock_notify.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 195s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_sock_notify.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_sock_notify.o api_knet_handle_enable_sock_notify.c &&\ 195s mv -f $depbase.Tpo $depbase.Po 195s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_sock_notify_test api_knet_handle_enable_sock_notify.o test-common.o -lknet -lpthread 195s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_sock_notify_test api_knet_handle_enable_sock_notify.o test-common.o -lknet -lpthread -pthread 196s PASS: api_knet_handle_enable_sock_notify_test 196s depbase=`echo api_knet_handle_add_datafd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 196s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_add_datafd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_add_datafd.o api_knet_handle_add_datafd.c &&\ 196s mv -f $depbase.Tpo $depbase.Po 196s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_add_datafd_test api_knet_handle_add_datafd.o test-common.o -lknet -lpthread 196s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_add_datafd_test api_knet_handle_add_datafd.o test-common.o -lknet -lpthread -pthread 197s PASS: api_knet_handle_add_datafd_test 197s depbase=`echo api_knet_handle_remove_datafd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 197s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_remove_datafd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_remove_datafd.o api_knet_handle_remove_datafd.c &&\ 197s mv -f $depbase.Tpo $depbase.Po 198s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_remove_datafd_test api_knet_handle_remove_datafd.o test-common.o -lknet -lpthread 198s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_remove_datafd_test api_knet_handle_remove_datafd.o test-common.o -lknet -lpthread -pthread 199s PASS: api_knet_handle_remove_datafd_test 199s depbase=`echo api_knet_handle_get_channel.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 199s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_channel.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_channel.o api_knet_handle_get_channel.c &&\ 199s mv -f $depbase.Tpo $depbase.Po 199s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_channel_test api_knet_handle_get_channel.o test-common.o -lknet -lpthread 199s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_channel_test api_knet_handle_get_channel.o test-common.o -lknet -lpthread -pthread 200s PASS: api_knet_handle_get_channel_test 200s depbase=`echo api_knet_handle_get_datafd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 200s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_datafd.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_datafd.o api_knet_handle_get_datafd.c &&\ 200s mv -f $depbase.Tpo $depbase.Po 200s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_datafd_test api_knet_handle_get_datafd.o test-common.o -lknet -lpthread 200s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_datafd_test api_knet_handle_get_datafd.o test-common.o -lknet -lpthread -pthread 201s PASS: api_knet_handle_get_datafd_test 201s depbase=`echo api_knet_handle_get_stats.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 201s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_stats.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_stats.o api_knet_handle_get_stats.c &&\ 201s mv -f $depbase.Tpo $depbase.Po 201s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_stats_test api_knet_handle_get_stats.o test-common.o -lknet -lpthread 201s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_stats_test api_knet_handle_get_stats.o test-common.o -lknet -lpthread -pthread 202s PASS: api_knet_handle_get_stats_test 202s depbase=`echo api_knet_get_crypto_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 202s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_crypto_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_crypto_list.o api_knet_get_crypto_list.c &&\ 202s mv -f $depbase.Tpo $depbase.Po 203s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_crypto_list_test api_knet_get_crypto_list.o test-common.o -lknet -lpthread 203s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_crypto_list_test api_knet_get_crypto_list.o test-common.o -lknet -lpthread -pthread 203s PASS: api_knet_get_crypto_list_test 203s depbase=`echo api_knet_get_compress_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 203s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_compress_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_compress_list.o api_knet_get_compress_list.c &&\ 203s mv -f $depbase.Tpo $depbase.Po 203s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_compress_list_test api_knet_get_compress_list.o test-common.o -lknet -lpthread 203s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_compress_list_test api_knet_get_compress_list.o test-common.o -lknet -lpthread -pthread 203s PASS: api_knet_get_compress_list_test 203s depbase=`echo api_knet_handle_clear_stats.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 203s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_clear_stats.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_clear_stats.o api_knet_handle_clear_stats.c &&\ 203s mv -f $depbase.Tpo $depbase.Po 203s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_clear_stats_test api_knet_handle_clear_stats.o test-common.o -lknet -lpthread 203s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_clear_stats_test api_knet_handle_clear_stats.o test-common.o -lknet -lpthread -pthread 210s PASS: api_knet_handle_clear_stats_test 210s depbase=`echo api_knet_get_transport_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 210s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_transport_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_transport_list.o api_knet_get_transport_list.c &&\ 210s mv -f $depbase.Tpo $depbase.Po 210s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_list_test api_knet_get_transport_list.o test-common.o -lknet -lpthread 212s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_list_test api_knet_get_transport_list.o test-common.o -lknet -lpthread -pthread 212s PASS: api_knet_get_transport_list_test 212s depbase=`echo api_knet_get_transport_name_by_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 212s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_transport_name_by_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_transport_name_by_id.o api_knet_get_transport_name_by_id.c &&\ 212s mv -f $depbase.Tpo $depbase.Po 212s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_name_by_id_test api_knet_get_transport_name_by_id.o test-common.o -lknet -lpthread 212s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_name_by_id_test api_knet_get_transport_name_by_id.o test-common.o -lknet -lpthread -pthread 212s PASS: api_knet_get_transport_name_by_id_test 212s depbase=`echo api_knet_get_transport_id_by_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 212s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_get_transport_id_by_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_get_transport_id_by_name.o api_knet_get_transport_id_by_name.c &&\ 212s mv -f $depbase.Tpo $depbase.Po 212s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_id_by_name_test api_knet_get_transport_id_by_name.o test-common.o -lknet -lpthread 212s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_get_transport_id_by_name_test api_knet_get_transport_id_by_name.o test-common.o -lknet -lpthread -pthread 212s PASS: api_knet_get_transport_id_by_name_test 212s depbase=`echo api_knet_handle_set_transport_reconnect_interval.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 212s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_set_transport_reconnect_interval.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_set_transport_reconnect_interval.o api_knet_handle_set_transport_reconnect_interval.c &&\ 212s mv -f $depbase.Tpo $depbase.Po 212s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_set_transport_reconnect_interval_test api_knet_handle_set_transport_reconnect_interval.o test-common.o -lknet -lpthread 212s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_set_transport_reconnect_interval_test api_knet_handle_set_transport_reconnect_interval.o test-common.o -lknet -lpthread -pthread 212s PASS: api_knet_handle_set_transport_reconnect_interval_test 212s depbase=`echo api_knet_handle_get_transport_reconnect_interval.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 212s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_get_transport_reconnect_interval.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_get_transport_reconnect_interval.o api_knet_handle_get_transport_reconnect_interval.c &&\ 212s mv -f $depbase.Tpo $depbase.Po 212s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_transport_reconnect_interval_test api_knet_handle_get_transport_reconnect_interval.o test-common.o -lknet -lpthread 212s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_get_transport_reconnect_interval_test api_knet_handle_get_transport_reconnect_interval.o test-common.o -lknet -lpthread -pthread 214s PASS: api_knet_handle_get_transport_reconnect_interval_test 214s depbase=`echo api_knet_recv.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 214s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_recv.o -MD -MP -MF $depbase.Tpo -c -o api_knet_recv.o api_knet_recv.c &&\ 214s mv -f $depbase.Tpo $depbase.Po 214s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_recv_test api_knet_recv.o test-common.o -lknet -lpthread 214s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_recv_test api_knet_recv.o test-common.o -lknet -lpthread -pthread 215s PASS: api_knet_recv_test 215s depbase=`echo api_knet_send.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 215s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send.o api_knet_send.c &&\ 215s mv -f $depbase.Tpo $depbase.Po 215s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_test api_knet_send.o test-common.o -lknet -lpthread 215s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_test api_knet_send.o test-common.o -lknet -lpthread -pthread 237s PASS: api_knet_send_test 237s depbase=`echo api_knet_send_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 237s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_crypto.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_crypto.o api_knet_send_crypto.c &&\ 237s mv -f $depbase.Tpo $depbase.Po 237s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_crypto_test api_knet_send_crypto.o test-common.o -lknet -lpthread 237s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_crypto_test api_knet_send_crypto.o test-common.o -lknet -lpthread -pthread 253s PASS: api_knet_send_crypto_test 253s depbase=`echo api_knet_send_compress.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 253s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_compress.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_compress.o api_knet_send_compress.c &&\ 253s mv -f $depbase.Tpo $depbase.Po 253s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_compress_test api_knet_send_compress.o test-common.o -lknet -lpthread 253s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_compress_test api_knet_send_compress.o test-common.o -lknet -lpthread -pthread 316s PASS: api_knet_send_compress_test 316s depbase=`echo api_knet_send_sync.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 316s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_sync.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_sync.o api_knet_send_sync.c &&\ 316s mv -f $depbase.Tpo $depbase.Po 316s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_sync_test api_knet_send_sync.o test-common.o -lknet -lpthread 316s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_sync_test api_knet_send_sync.o test-common.o -lknet -lpthread -pthread 324s PASS: api_knet_send_sync_test 324s depbase=`echo api_knet_send_loopback.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 324s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_send_loopback.o -MD -MP -MF $depbase.Tpo -c -o api_knet_send_loopback.o api_knet_send_loopback.c &&\ 324s mv -f $depbase.Tpo $depbase.Po 325s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_loopback_test api_knet_send_loopback.o test-common.o -lknet -lpthread 325s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_send_loopback_test api_knet_send_loopback.o test-common.o -lknet -lpthread -pthread 327s PASS: api_knet_send_loopback_test 327s depbase=`echo api_knet_handle_pmtud_setfreq.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 327s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_setfreq.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_setfreq.o api_knet_handle_pmtud_setfreq.c &&\ 327s mv -f $depbase.Tpo $depbase.Po 327s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_setfreq_test api_knet_handle_pmtud_setfreq.o test-common.o -lknet -lpthread 327s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_setfreq_test api_knet_handle_pmtud_setfreq.o test-common.o -lknet -lpthread -pthread 328s PASS: api_knet_handle_pmtud_setfreq_test 328s depbase=`echo api_knet_handle_pmtud_getfreq.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 328s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_getfreq.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_getfreq.o api_knet_handle_pmtud_getfreq.c &&\ 328s mv -f $depbase.Tpo $depbase.Po 328s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_getfreq_test api_knet_handle_pmtud_getfreq.o test-common.o -lknet -lpthread 328s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_getfreq_test api_knet_handle_pmtud_getfreq.o test-common.o -lknet -lpthread -pthread 329s PASS: api_knet_handle_pmtud_getfreq_test 329s depbase=`echo api_knet_handle_enable_pmtud_notify.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 329s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_enable_pmtud_notify.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_enable_pmtud_notify.o api_knet_handle_enable_pmtud_notify.c &&\ 329s mv -f $depbase.Tpo $depbase.Po 329s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_pmtud_notify_test api_knet_handle_enable_pmtud_notify.o test-common.o -lknet -lpthread 329s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_enable_pmtud_notify_test api_knet_handle_enable_pmtud_notify.o test-common.o -lknet -lpthread -pthread 331s PASS: api_knet_handle_enable_pmtud_notify_test 331s depbase=`echo api_knet_handle_pmtud_get.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 331s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_get.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_get.o api_knet_handle_pmtud_get.c &&\ 331s mv -f $depbase.Tpo $depbase.Po 331s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_get_test api_knet_handle_pmtud_get.o test-common.o -lknet -lpthread 331s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_get_test api_knet_handle_pmtud_get.o test-common.o -lknet -lpthread -pthread 332s PASS: api_knet_handle_pmtud_get_test 332s depbase=`echo api_knet_handle_pmtud_set.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 332s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_pmtud_set.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_pmtud_set.o api_knet_handle_pmtud_set.c &&\ 332s mv -f $depbase.Tpo $depbase.Po 332s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_set_test api_knet_handle_pmtud_set.o test-common.o -lknet -lpthread 332s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_pmtud_set_test api_knet_handle_pmtud_set.o test-common.o -lknet -lpthread -pthread 337s PASS: api_knet_handle_pmtud_set_test 337s depbase=`echo api_knet_host_add.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 337s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_add.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_add.o api_knet_host_add.c &&\ 337s mv -f $depbase.Tpo $depbase.Po 337s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_add_test api_knet_host_add.o test-common.o -lknet -lpthread 337s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_add_test api_knet_host_add.o test-common.o -lknet -lpthread -pthread 338s PASS: api_knet_host_add_test 338s depbase=`echo api_knet_host_remove.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 338s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_remove.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_remove.o api_knet_host_remove.c &&\ 338s mv -f $depbase.Tpo $depbase.Po 339s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_remove_test api_knet_host_remove.o test-common.o -lknet -lpthread 339s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_remove_test api_knet_host_remove.o test-common.o -lknet -lpthread -pthread 340s PASS: api_knet_host_remove_test 340s depbase=`echo api_knet_host_set_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 340s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_set_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_set_name.o api_knet_host_set_name.c &&\ 340s mv -f $depbase.Tpo $depbase.Po 340s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_name_test api_knet_host_set_name.o test-common.o -lknet -lpthread 340s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_name_test api_knet_host_set_name.o test-common.o -lknet -lpthread -pthread 341s PASS: api_knet_host_set_name_test 341s depbase=`echo api_knet_host_get_name_by_host_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 341s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_name_by_host_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_name_by_host_id.o api_knet_host_get_name_by_host_id.c &&\ 341s mv -f $depbase.Tpo $depbase.Po 341s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_name_by_host_id_test api_knet_host_get_name_by_host_id.o test-common.o -lknet -lpthread 341s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_name_by_host_id_test api_knet_host_get_name_by_host_id.o test-common.o -lknet -lpthread -pthread 342s PASS: api_knet_host_get_name_by_host_id_test 342s depbase=`echo api_knet_host_get_id_by_host_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 342s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_id_by_host_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_id_by_host_name.o api_knet_host_get_id_by_host_name.c &&\ 342s mv -f $depbase.Tpo $depbase.Po 343s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_id_by_host_name_test api_knet_host_get_id_by_host_name.o test-common.o -lknet -lpthread 343s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_id_by_host_name_test api_knet_host_get_id_by_host_name.o test-common.o -lknet -lpthread -pthread 344s PASS: api_knet_host_get_id_by_host_name_test 344s depbase=`echo api_knet_host_get_host_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 344s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_host_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_host_list.o api_knet_host_get_host_list.c &&\ 344s mv -f $depbase.Tpo $depbase.Po 344s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_host_list_test api_knet_host_get_host_list.o test-common.o -lknet -lpthread 344s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_host_list_test api_knet_host_get_host_list.o test-common.o -lknet -lpthread -pthread 345s PASS: api_knet_host_get_host_list_test 345s depbase=`echo api_knet_host_set_policy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 345s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_set_policy.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_set_policy.o api_knet_host_set_policy.c &&\ 345s mv -f $depbase.Tpo $depbase.Po 345s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_policy_test api_knet_host_set_policy.o test-common.o -lknet -lpthread 345s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_set_policy_test api_knet_host_set_policy.o test-common.o -lknet -lpthread -pthread 346s PASS: api_knet_host_set_policy_test 346s depbase=`echo api_knet_host_get_policy.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 346s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_policy.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_policy.o api_knet_host_get_policy.c &&\ 346s mv -f $depbase.Tpo $depbase.Po 346s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_policy_test api_knet_host_get_policy.o test-common.o -lknet -lpthread 346s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_policy_test api_knet_host_get_policy.o test-common.o -lknet -lpthread -pthread 347s PASS: api_knet_host_get_policy_test 347s depbase=`echo api_knet_host_get_status.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 347s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_get_status.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_get_status.o api_knet_host_get_status.c &&\ 347s mv -f $depbase.Tpo $depbase.Po 348s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_status_test api_knet_host_get_status.o test-common.o -lknet -lpthread 348s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_get_status_test api_knet_host_get_status.o test-common.o -lknet -lpthread -pthread 349s PASS: api_knet_host_get_status_test 349s depbase=`echo api_knet_host_enable_status_change_notify.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 349s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_host_enable_status_change_notify.o -MD -MP -MF $depbase.Tpo -c -o api_knet_host_enable_status_change_notify.o api_knet_host_enable_status_change_notify.c &&\ 349s mv -f $depbase.Tpo $depbase.Po 349s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_enable_status_change_notify_test api_knet_host_enable_status_change_notify.o test-common.o -lknet -lpthread 349s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_host_enable_status_change_notify_test api_knet_host_enable_status_change_notify.o test-common.o -lknet -lpthread -pthread 350s PASS: api_knet_host_enable_status_change_notify_test 350s depbase=`echo api_knet_log_get_subsystem_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 350s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_subsystem_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_subsystem_name.o api_knet_log_get_subsystem_name.c &&\ 350s mv -f $depbase.Tpo $depbase.Po 350s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_name_test api_knet_log_get_subsystem_name.o test-common.o -lknet -lpthread 350s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_name_test api_knet_log_get_subsystem_name.o test-common.o -lknet -lpthread -pthread 350s PASS: api_knet_log_get_subsystem_name_test 350s depbase=`echo api_knet_log_get_subsystem_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 350s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_subsystem_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_subsystem_id.o api_knet_log_get_subsystem_id.c &&\ 350s mv -f $depbase.Tpo $depbase.Po 350s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_id_test api_knet_log_get_subsystem_id.o test-common.o -lknet -lpthread 350s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_subsystem_id_test api_knet_log_get_subsystem_id.o test-common.o -lknet -lpthread -pthread 351s PASS: api_knet_log_get_subsystem_id_test 351s depbase=`echo api_knet_log_get_loglevel_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 351s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_loglevel_name.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_loglevel_name.o api_knet_log_get_loglevel_name.c &&\ 351s mv -f $depbase.Tpo $depbase.Po 351s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_name_test api_knet_log_get_loglevel_name.o test-common.o -lknet -lpthread 351s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_name_test api_knet_log_get_loglevel_name.o test-common.o -lknet -lpthread -pthread 351s PASS: api_knet_log_get_loglevel_name_test 351s depbase=`echo api_knet_log_get_loglevel_id.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 351s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_loglevel_id.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_loglevel_id.o api_knet_log_get_loglevel_id.c &&\ 351s mv -f $depbase.Tpo $depbase.Po 351s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_id_test api_knet_log_get_loglevel_id.o test-common.o -lknet -lpthread 351s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_id_test api_knet_log_get_loglevel_id.o test-common.o -lknet -lpthread -pthread 351s PASS: api_knet_log_get_loglevel_id_test 351s depbase=`echo api_knet_log_set_loglevel.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 351s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_set_loglevel.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_set_loglevel.o api_knet_log_set_loglevel.c &&\ 351s mv -f $depbase.Tpo $depbase.Po 351s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_set_loglevel_test api_knet_log_set_loglevel.o test-common.o -lknet -lpthread 351s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_set_loglevel_test api_knet_log_set_loglevel.o test-common.o -lknet -lpthread -pthread 352s PASS: api_knet_log_set_loglevel_test 352s depbase=`echo api_knet_log_get_loglevel.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 352s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_log_get_loglevel.o -MD -MP -MF $depbase.Tpo -c -o api_knet_log_get_loglevel.o api_knet_log_get_loglevel.c &&\ 352s mv -f $depbase.Tpo $depbase.Po 352s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_test api_knet_log_get_loglevel.o test-common.o -lknet -lpthread 352s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_log_get_loglevel_test api_knet_log_get_loglevel.o test-common.o -lknet -lpthread -pthread 354s PASS: api_knet_log_get_loglevel_test 354s depbase=`echo api_knet_strtoaddr.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 354s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_strtoaddr.o -MD -MP -MF $depbase.Tpo -c -o api_knet_strtoaddr.o api_knet_strtoaddr.c &&\ 354s mv -f $depbase.Tpo $depbase.Po 354s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_strtoaddr_test api_knet_strtoaddr.o -lknet -lpthread 354s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_strtoaddr_test api_knet_strtoaddr.o -lknet -lpthread -pthread 354s PASS: api_knet_strtoaddr_test 354s depbase=`echo api_knet_addrtostr.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 354s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_addrtostr.o -MD -MP -MF $depbase.Tpo -c -o api_knet_addrtostr.o api_knet_addrtostr.c &&\ 354s mv -f $depbase.Tpo $depbase.Po 354s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_addrtostr_test api_knet_addrtostr.o -lknet -lpthread 354s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_addrtostr_test api_knet_addrtostr.o -lknet -lpthread -pthread 354s PASS: api_knet_addrtostr_test 354s depbase=`echo api_knet_link_set_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 354s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_config.o api_knet_link_set_config.c &&\ 354s mv -f $depbase.Tpo $depbase.Po 354s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_config_test api_knet_link_set_config.o test-common.o -lknet -lpthread 354s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_config_test api_knet_link_set_config.o test-common.o -lknet -lpthread -pthread 355s PASS: api_knet_link_set_config_test 355s depbase=`echo api_knet_link_clear_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 355s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_clear_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_clear_config.o api_knet_link_clear_config.c &&\ 355s mv -f $depbase.Tpo $depbase.Po 355s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_config_test api_knet_link_clear_config.o test-common.o -lknet -lpthread 355s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_config_test api_knet_link_clear_config.o test-common.o -lknet -lpthread -pthread 357s PASS: api_knet_link_clear_config_test 357s depbase=`echo api_knet_link_get_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 357s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_config.o api_knet_link_get_config.c &&\ 357s mv -f $depbase.Tpo $depbase.Po 357s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_config_test api_knet_link_get_config.o test-common.o -lknet -lpthread 357s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_config_test api_knet_link_get_config.o test-common.o -lknet -lpthread -pthread 358s PASS: api_knet_link_get_config_test 358s depbase=`echo api_knet_link_set_ping_timers.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 358s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_ping_timers.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_ping_timers.o api_knet_link_set_ping_timers.c &&\ 358s mv -f $depbase.Tpo $depbase.Po 358s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_ping_timers_test api_knet_link_set_ping_timers.o test-common.o -lknet -lpthread 358s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_ping_timers_test api_knet_link_set_ping_timers.o test-common.o -lknet -lpthread -pthread 359s PASS: api_knet_link_set_ping_timers_test 359s depbase=`echo api_knet_link_get_ping_timers.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 359s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_ping_timers.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_ping_timers.o api_knet_link_get_ping_timers.c &&\ 359s mv -f $depbase.Tpo $depbase.Po 359s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_ping_timers_test api_knet_link_get_ping_timers.o test-common.o -lknet -lpthread 359s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_ping_timers_test api_knet_link_get_ping_timers.o test-common.o -lknet -lpthread -pthread 361s PASS: api_knet_link_get_ping_timers_test 361s depbase=`echo api_knet_link_set_pong_count.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 361s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_pong_count.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_pong_count.o api_knet_link_set_pong_count.c &&\ 361s mv -f $depbase.Tpo $depbase.Po 361s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_pong_count_test api_knet_link_set_pong_count.o test-common.o -lknet -lpthread 361s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_pong_count_test api_knet_link_set_pong_count.o test-common.o -lknet -lpthread -pthread 362s PASS: api_knet_link_set_pong_count_test 362s depbase=`echo api_knet_link_get_pong_count.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 362s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_pong_count.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_pong_count.o api_knet_link_get_pong_count.c &&\ 362s mv -f $depbase.Tpo $depbase.Po 362s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_pong_count_test api_knet_link_get_pong_count.o test-common.o -lknet -lpthread 362s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_pong_count_test api_knet_link_get_pong_count.o test-common.o -lknet -lpthread -pthread 364s PASS: api_knet_link_get_pong_count_test 364s depbase=`echo api_knet_link_set_priority.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 364s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_priority.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_priority.o api_knet_link_set_priority.c &&\ 364s mv -f $depbase.Tpo $depbase.Po 364s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_priority_test api_knet_link_set_priority.o test-common.o -lknet -lpthread 364s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_priority_test api_knet_link_set_priority.o test-common.o -lknet -lpthread -pthread 365s PASS: api_knet_link_set_priority_test 365s depbase=`echo api_knet_link_get_priority.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 365s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_priority.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_priority.o api_knet_link_get_priority.c &&\ 365s mv -f $depbase.Tpo $depbase.Po 365s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_priority_test api_knet_link_get_priority.o test-common.o -lknet -lpthread 365s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_priority_test api_knet_link_get_priority.o test-common.o -lknet -lpthread -pthread 366s PASS: api_knet_link_get_priority_test 366s depbase=`echo api_knet_link_set_enable.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 366s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_set_enable.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_set_enable.o api_knet_link_set_enable.c &&\ 366s mv -f $depbase.Tpo $depbase.Po 366s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_enable_test api_knet_link_set_enable.o test-common.o -lknet -lpthread 366s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_set_enable_test api_knet_link_set_enable.o test-common.o -lknet -lpthread -pthread 371s PASS: api_knet_link_set_enable_test 371s depbase=`echo api_knet_link_get_enable.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 371s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_enable.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_enable.o api_knet_link_get_enable.c &&\ 371s mv -f $depbase.Tpo $depbase.Po 371s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_enable_test api_knet_link_get_enable.o test-common.o -lknet -lpthread 371s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_enable_test api_knet_link_get_enable.o test-common.o -lknet -lpthread -pthread 372s PASS: api_knet_link_get_enable_test 372s depbase=`echo api_knet_link_get_link_list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 372s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_link_list.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_link_list.o api_knet_link_get_link_list.c &&\ 372s mv -f $depbase.Tpo $depbase.Po 372s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_link_list_test api_knet_link_get_link_list.o test-common.o -lknet -lpthread 372s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_link_list_test api_knet_link_get_link_list.o test-common.o -lknet -lpthread -pthread 373s PASS: api_knet_link_get_link_list_test 373s depbase=`echo api_knet_link_get_status.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 373s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_get_status.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_get_status.o api_knet_link_get_status.c &&\ 373s mv -f $depbase.Tpo $depbase.Po 373s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_status_test api_knet_link_get_status.o test-common.o -lknet -lpthread 373s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_get_status_test api_knet_link_get_status.o test-common.o -lknet -lpthread -pthread 375s PASS: api_knet_link_get_status_test 375s depbase=`echo api_knet_link_add_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 375s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_add_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_add_acl.o api_knet_link_add_acl.c &&\ 375s mv -f $depbase.Tpo $depbase.Po 375s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_add_acl_test api_knet_link_add_acl.o test-common.o -lknet -lpthread 375s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_add_acl_test api_knet_link_add_acl.o test-common.o -lknet -lpthread -pthread 376s PASS: api_knet_link_add_acl_test 376s depbase=`echo api_knet_link_insert_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 376s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_insert_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_insert_acl.o api_knet_link_insert_acl.c &&\ 376s mv -f $depbase.Tpo $depbase.Po 376s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_insert_acl_test api_knet_link_insert_acl.o test-common.o -lknet -lpthread 376s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_insert_acl_test api_knet_link_insert_acl.o test-common.o -lknet -lpthread -pthread 377s PASS: api_knet_link_insert_acl_test 377s depbase=`echo api_knet_link_rm_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 377s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_rm_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_rm_acl.o api_knet_link_rm_acl.c &&\ 377s mv -f $depbase.Tpo $depbase.Po 378s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_rm_acl_test api_knet_link_rm_acl.o test-common.o -lknet -lpthread 378s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_rm_acl_test api_knet_link_rm_acl.o test-common.o -lknet -lpthread -pthread 379s PASS: api_knet_link_rm_acl_test 379s depbase=`echo api_knet_link_clear_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 379s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_link_clear_acl.o -MD -MP -MF $depbase.Tpo -c -o api_knet_link_clear_acl.o api_knet_link_clear_acl.c &&\ 379s mv -f $depbase.Tpo $depbase.Po 379s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_acl_test api_knet_link_clear_acl.o test-common.o -lknet -lpthread 379s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_link_clear_acl_test api_knet_link_clear_acl.o test-common.o -lknet -lpthread -pthread 380s PASS: api_knet_link_clear_acl_test 380s depbase=`echo api_knet_handle_crypto_set_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 380s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto_set_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto_set_config.o api_knet_handle_crypto_set_config.c &&\ 380s mv -f $depbase.Tpo $depbase.Po 380s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_set_config_test api_knet_handle_crypto_set_config.o test-common.o -lknet -lpthread 380s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_set_config_test api_knet_handle_crypto_set_config.o test-common.o -lknet -lpthread -pthread 382s PASS: api_knet_handle_crypto_set_config_test 382s depbase=`echo api_knet_handle_crypto_use_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 382s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto_use_config.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto_use_config.o api_knet_handle_crypto_use_config.c &&\ 382s mv -f $depbase.Tpo $depbase.Po 382s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_use_config_test api_knet_handle_crypto_use_config.o test-common.o -lknet -lpthread 382s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_use_config_test api_knet_handle_crypto_use_config.o test-common.o -lknet -lpthread -pthread 385s PASS: api_knet_handle_crypto_use_config_test 385s depbase=`echo api_knet_handle_crypto_rx_clear_traffic.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 385s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT api_knet_handle_crypto_rx_clear_traffic.o -MD -MP -MF $depbase.Tpo -c -o api_knet_handle_crypto_rx_clear_traffic.o api_knet_handle_crypto_rx_clear_traffic.c &&\ 385s mv -f $depbase.Tpo $depbase.Po 385s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_rx_clear_traffic_test api_knet_handle_crypto_rx_clear_traffic.o test-common.o -lknet -lpthread 385s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_knet_handle_crypto_rx_clear_traffic_test api_knet_handle_crypto_rx_clear_traffic.o test-common.o -lknet -lpthread -pthread 386s PASS: api_knet_handle_crypto_rx_clear_traffic_test 386s depbase=`echo int_links_acl_ip.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 386s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT int_links_acl_ip.o -MD -MP -MF $depbase.Tpo -c -o int_links_acl_ip.o int_links_acl_ip.c &&\ 386s mv -f $depbase.Tpo $depbase.Po 386s depbase=`echo ../common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 386s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../common.o -MD -MP -MF $depbase.Tpo -c -o ../common.o ../common.c &&\ 386s mv -f $depbase.Tpo $depbase.Po 386s depbase=`echo ../compat.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 386s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../compat.o -MD -MP -MF $depbase.Tpo -c -o ../compat.o ../compat.c &&\ 386s mv -f $depbase.Tpo $depbase.Po 386s depbase=`echo ../logging.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 386s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../logging.o -MD -MP -MF $depbase.Tpo -c -o ../logging.o ../logging.c &&\ 386s mv -f $depbase.Tpo $depbase.Po 386s depbase=`echo ../netutils.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 386s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../netutils.o -MD -MP -MF $depbase.Tpo -c -o ../netutils.o ../netutils.c &&\ 386s mv -f $depbase.Tpo $depbase.Po 386s depbase=`echo ../threads_common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 386s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../threads_common.o -MD -MP -MF $depbase.Tpo -c -o ../threads_common.o ../threads_common.c &&\ 386s mv -f $depbase.Tpo $depbase.Po 387s depbase=`echo ../onwire.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 387s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../onwire.o -MD -MP -MF $depbase.Tpo -c -o ../onwire.o ../onwire.c &&\ 387s mv -f $depbase.Tpo $depbase.Po 387s depbase=`echo ../transports.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 387s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transports.o -MD -MP -MF $depbase.Tpo -c -o ../transports.o ../transports.c &&\ 387s mv -f $depbase.Tpo $depbase.Po 387s depbase=`echo ../transport_common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 387s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_common.o -MD -MP -MF $depbase.Tpo -c -o ../transport_common.o ../transport_common.c &&\ 387s mv -f $depbase.Tpo $depbase.Po 387s depbase=`echo ../transport_loopback.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 387s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_loopback.o -MD -MP -MF $depbase.Tpo -c -o ../transport_loopback.o ../transport_loopback.c &&\ 387s mv -f $depbase.Tpo $depbase.Po 387s depbase=`echo ../transport_sctp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 387s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_sctp.o -MD -MP -MF $depbase.Tpo -c -o ../transport_sctp.o ../transport_sctp.c &&\ 387s mv -f $depbase.Tpo $depbase.Po 388s depbase=`echo ../transport_udp.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../transport_udp.o -MD -MP -MF $depbase.Tpo -c -o ../transport_udp.o ../transport_udp.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 388s depbase=`echo ../links_acl.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../links_acl.o -MD -MP -MF $depbase.Tpo -c -o ../links_acl.o ../links_acl.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 388s depbase=`echo ../links_acl_ip.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../links_acl_ip.o -MD -MP -MF $depbase.Tpo -c -o ../links_acl_ip.o ../links_acl_ip.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 388s depbase=`echo ../links_acl_loopback.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../links_acl_loopback.o -MD -MP -MF $depbase.Tpo -c -o ../links_acl_loopback.o ../links_acl_loopback.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 388s depbase=`echo ../lib_config.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT ../lib_config.o -MD -MP -MF $depbase.Tpo -c -o ../lib_config.o ../lib_config.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 388s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_links_acl_ip_test int_links_acl_ip.o ../common.o ../compat.o ../logging.o ../netutils.o ../threads_common.o ../onwire.o ../transports.o ../transport_common.o ../transport_loopback.o ../transport_sctp.o ../transport_udp.o ../links_acl.o ../links_acl_ip.o ../links_acl_loopback.o ../lib_config.o -lknet -lpthread 388s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_links_acl_ip_test int_links_acl_ip.o ../common.o ../compat.o ../logging.o ../netutils.o ../threads_common.o ../onwire.o ../transports.o ../transport_common.o ../transport_loopback.o ../transport_sctp.o ../transport_udp.o ../links_acl.o ../links_acl_ip.o ../links_acl_loopback.o ../lib_config.o -lknet -lpthread -pthread 388s PASS: int_links_acl_ip_test 388s depbase=`echo int_timediff.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT int_timediff.o -MD -MP -MF $depbase.Tpo -c -o int_timediff.o int_timediff.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 388s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_timediff_test int_timediff.o -lknet -lpthread 388s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_timediff_test int_timediff.o -lknet -lpthread -pthread 388s PASS: int_timediff_test 388s depbase=`echo fun_config_crypto.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 388s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT fun_config_crypto.o -MD -MP -MF $depbase.Tpo -c -o fun_config_crypto.o fun_config_crypto.c &&\ 388s mv -f $depbase.Tpo $depbase.Po 389s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_config_crypto_test fun_config_crypto.o test-common.o -lknet -lpthread 389s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_config_crypto_test fun_config_crypto.o test-common.o -lknet -lpthread -pthread 443s PASS: fun_config_crypto_test 443s depbase=`echo fun_acl_check.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 443s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libknet -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -MT fun_acl_check.o -MD -MP -MF $depbase.Tpo -c -o fun_acl_check.o fun_acl_check.c &&\ 443s mv -f $depbase.Tpo $depbase.Po 444s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -pthread -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_acl_check_test fun_acl_check.o test-common.o -lknet -lpthread 444s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o fun_acl_check_test fun_acl_check.o test-common.o -lknet -lpthread -pthread 478s PASS: fun_acl_check_test 478s ============================================================================ 478s Testsuite summary for kronosnet 1.29 478s ============================================================================ 478s # TOTAL: 74 478s # PASS: 74 478s # SKIP: 0 478s # XFAIL: 0 478s # FAIL: 0 478s # XPASS: 0 478s # ERROR: 0 478s ============================================================================ 478s make[1]: Leaving directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libknet/tests' 478s make: Leaving directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libknet/tests' 478s make[1]: warning: Clock skew detected. Your build may be incomplete. 478s make: warning: Clock skew detected. Your build may be incomplete. 478s + [ /tmp/autopkgtest.zFYuQO/libknet-artifacts ] 478s + mkdir /tmp/autopkgtest.zFYuQO/libknet-artifacts/libknet 479s + mv libknet/tests/api_knet_addrtostr_test.log libknet/tests/api_knet_get_compress_list_test.log libknet/tests/api_knet_get_crypto_list_test.log libknet/tests/api_knet_get_transport_id_by_name_test.log libknet/tests/api_knet_get_transport_list_test.log libknet/tests/api_knet_get_transport_name_by_id_test.log libknet/tests/api_knet_handle_add_datafd_test.log libknet/tests/api_knet_handle_clear_stats_test.log libknet/tests/api_knet_handle_compress_test.log libknet/tests/api_knet_handle_crypto_rx_clear_traffic_test.log libknet/tests/api_knet_handle_crypto_set_config_test.log libknet/tests/api_knet_handle_crypto_test.log libknet/tests/api_knet_handle_crypto_use_config_test.log libknet/tests/api_knet_handle_enable_access_lists_test.log libknet/tests/api_knet_handle_enable_filter_test.log libknet/tests/api_knet_handle_enable_pmtud_notify_test.log libknet/tests/api_knet_handle_enable_sock_notify_test.log libknet/tests/api_knet_handle_free_test.log libknet/tests/api_knet_handle_get_channel_test.log libknet/tests/api_knet_handle_get_datafd_test.log libknet/tests/api_knet_handle_get_stats_test.log libknet/tests/api_knet_handle_get_transport_reconnect_interval_test.log libknet/tests/api_knet_handle_new_test.log libknet/tests/api_knet_handle_pmtud_get_test.log libknet/tests/api_knet_handle_pmtud_getfreq_test.log libknet/tests/api_knet_handle_pmtud_set_test.log libknet/tests/api_knet_handle_pmtud_setfreq_test.log libknet/tests/api_knet_handle_remove_datafd_test.log libknet/tests/api_knet_handle_set_transport_reconnect_interval_test.log libknet/tests/api_knet_handle_setfwd_test.log libknet/tests/api_knet_host_add_test.log libknet/tests/api_knet_host_enable_status_change_notify_test.log libknet/tests/api_knet_host_get_host_list_test.log libknet/tests/api_knet_host_get_id_by_host_name_test.log libknet/tests/api_knet_host_get_name_by_host_id_test.log libknet/tests/api_knet_host_get_policy_test.log libknet/tests/api_knet_host_get_status_test.log libknet/tests/api_knet_host_remove_test.log libknet/tests/api_knet_host_set_name_test.log libknet/tests/api_knet_host_set_policy_test.log libknet/tests/api_knet_link_add_acl_test.log libknet/tests/api_knet_link_clear_acl_test.log libknet/tests/api_knet_link_clear_config_test.log libknet/tests/api_knet_link_get_config_test.log libknet/tests/api_knet_link_get_enable_test.log libknet/tests/api_knet_link_get_link_list_test.log libknet/tests/api_knet_link_get_ping_timers_test.log libknet/tests/api_knet_link_get_pong_count_test.log libknet/tests/api_knet_link_get_priority_test.log libknet/tests/api_knet_link_get_status_test.log libknet/tests/api_knet_link_insert_acl_test.log libknet/tests/api_knet_link_rm_acl_test.log libknet/tests/api_knet_link_set_config_test.log libknet/tests/api_knet_link_set_enable_test.log libknet/tests/api_knet_link_set_ping_timers_test.log libknet/tests/api_knet_link_set_pong_count_test.log libknet/tests/api_knet_link_set_priority_test.log libknet/tests/api_knet_log_get_loglevel_id_test.log libknet/tests/api_knet_log_get_loglevel_name_test.log libknet/tests/api_knet_log_get_loglevel_test.log libknet/tests/api_knet_log_get_subsystem_id_test.log libknet/tests/api_knet_log_get_subsystem_name_test.log libknet/tests/api_knet_log_set_loglevel_test.log libknet/tests/api_knet_recv_test.log libknet/tests/api_knet_send_compress_test.log libknet/tests/api_knet_send_crypto_test.log libknet/tests/api_knet_send_loopback_test.log libknet/tests/api_knet_send_sync_test.log libknet/tests/api_knet_send_test.log libknet/tests/api_knet_strtoaddr_test.log libknet/tests/fun_acl_check_test.log libknet/tests/fun_config_crypto_test.log libknet/tests/int_links_acl_ip_test.log libknet/tests/int_timediff_test.log libknet/tests/test-suite.log libknet/tests/api_knet_addrtostr_test.trs libknet/tests/api_knet_get_compress_list_test.trs libknet/tests/api_knet_get_crypto_list_test.trs libknet/tests/api_knet_get_transport_id_by_name_test.trs libknet/tests/api_knet_get_transport_list_test.trs libknet/tests/api_knet_get_transport_name_by_id_test.trs libknet/tests/api_knet_handle_add_datafd_test.trs libknet/tests/api_knet_handle_clear_stats_test.trs libknet/tests/api_knet_handle_compress_test.trs libknet/tests/api_knet_handle_crypto_rx_clear_traffic_test.trs libknet/tests/api_knet_handle_crypto_set_config_test.trs libknet/tests/api_knet_handle_crypto_test.trs libknet/tests/api_knet_handle_crypto_use_config_test.trs libknet/tests/api_knet_handle_enable_access_lists_test.trs libknet/tests/api_knet_handle_enable_filter_test.trs libknet/tests/api_knet_handle_enable_pmtud_notify_test.trs libknet/tests/api_knet_handle_enable_sock_notify_test.trs libknet/tests/api_knet_handle_free_test.trs libknet/tests/api_knet_handle_get_channel_test.trs libknet/tests/api_knet_handle_get_datafd_test.trs libknet/tests/api_knet_handle_get_stats_test.trs libknet/tests/api_knet_handle_get_transport_reconnect_interval_test.trs libknet/tests/api_knet_handle_new_test.trs libknet/tests/api_knet_handle_pmtud_get_test.trs libknet/tests/api_knet_handle_pmtud_getfreq_test.trs libknet/tests/api_knet_handle_pmtud_set_test.trs libknet/tests/api_knet_handle_pmtud_setfreq_test.trs libknet/tests/api_knet_handle_remove_datafd_test.trs libknet/tests/api_knet_handle_set_transport_reconnect_interval_test.trs libknet/tests/api_knet_handle_setfwd_test.trs libknet/tests/api_knet_host_add_test.trs libknet/tests/api_knet_host_enable_status_change_notify_test.trs libknet/tests/api_knet_host_get_host_list_test.trs libknet/tests/api_knet_host_get_id_by_host_name_test.trs libknet/tests/api_knet_host_get_name_by_host_id_test.trs libknet/tests/api_knet_host_get_policy_test.trs libknet/tests/api_knet_host_get_status_test.trs libknet/tests/api_knet_host_remove_test.trs libknet/tests/api_knet_host_set_name_test.trs libknet/tests/api_knet_host_set_policy_test.trs libknet/tests/api_knet_link_add_acl_test.trs libknet/tests/api_knet_link_clear_acl_test.trs libknet/tests/api_knet_link_clear_config_test.trs libknet/tests/api_knet_link_get_config_test.trs libknet/tests/api_knet_link_get_enable_test.trs libknet/tests/api_knet_link_get_link_list_test.trs libknet/tests/api_knet_link_get_ping_timers_test.trs libknet/tests/api_knet_link_get_pong_count_test.trs libknet/tests/api_knet_link_get_priority_test.trs libknet/tests/api_knet_link_get_status_test.trs libknet/tests/api_knet_link_insert_acl_test.trs libknet/tests/api_knet_link_rm_acl_test.trs libknet/tests/api_knet_link_set_config_test.trs libknet/tests/api_knet_link_set_enable_test.trs libknet/tests/api_knet_link_set_ping_timers_test.trs libknet/tests/api_knet_link_set_pong_count_test.trs libknet/tests/api_knet_link_set_priority_test.trs libknet/tests/api_knet_log_get_loglevel_id_test.trs libknet/tests/api_knet_log_get_loglevel_name_test.trs libknet/tests/api_knet_log_get_loglevel_test.trs libknet/tests/api_knet_log_get_subsystem_id_test.trs libknet/tests/api_knet_log_get_subsystem_name_test.trs libknet/tests/api_knet_log_set_loglevel_test.trs libknet/tests/api_knet_recv_test.trs libknet/tests/api_knet_send_compress_test.trs libknet/tests/api_knet_send_crypto_test.trs libknet/tests/api_knet_send_loopback_test.trs libknet/tests/api_knet_send_sync_test.trs libknet/tests/api_knet_send_test.trs libknet/tests/api_knet_strtoaddr_test.trs libknet/tests/fun_acl_check_test.trs libknet/tests/fun_config_crypto_test.trs libknet/tests/int_links_acl_ip_test.trs libknet/tests/int_timediff_test.trs /tmp/autopkgtest.zFYuQO/libknet-artifacts/libknet 479s + exit 479s /tmp/autopkgtest.zFYuQO/wrapper.sh: checking for leaked background processes... 479s /tmp/autopkgtest.zFYuQO/wrapper.sh: waiting for tee/cat subprocesses... 479s /tmp/autopkgtest.zFYuQO/wrapper.sh: cleaning up... 479s /tmp/autopkgtest.zFYuQO/wrapper.sh: Exit status: 0 479s autopkgtest: DBG: testbed command exited with code 0 479s autopkgtest [23:23:41]: test libknet: -----------------------] 479s autopkgtest: DBG: testbed executing test finished with exit status 0 479s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libknet-stdout /tmp/autopkgtest-work.9jha134r/out/libknet-stdout 479s autopkgtest: DBG: got reply from testbed: ok 479s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libknet-stderr /tmp/autopkgtest-work.9jha134r/out/libknet-stderr 480s autopkgtest: DBG: got reply from testbed: ok 480s autopkgtest [23:23:42]: test libknet: - - - - - - - - - - results - - - - - - - - - - 480s libknet PASS 480s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libknet-artifacts/ /tmp/autopkgtest-work.9jha134r/out/artifacts/ 480s autopkgtest: DBG: got reply from testbed: ok 480s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.zFYuQO/libknet-artifacts', '/tmp/autopkgtest.zFYuQO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 480s autopkgtest: DBG: testbed command exited with code 0 480s autopkgtest [23:23:42]: test libnozzle: preparing testbed 480s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'], deps_new=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 480s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 480s autopkgtest: DBG: install_deps: deps_new=['libknet-dev', 'libnozzle-dev', 'build-essential', 'iproute2 [linux-any]', 'net-tools [kfreebsd-any]', 'pkg-config', 'libnl-3-dev', 'libnl-route-3-dev', 'libqb-dev', 'libsctp-dev', 'libbz2-dev', 'liblz4-dev', 'liblzma-dev', 'liblzo2-dev', 'libzstd-dev', 'zlib1g-dev', 'libnss3-dev', 'libssl-dev'] 480s autopkgtest: DBG: install-deps: satisfying libknet-dev, libnozzle-dev, build-essential, iproute2 [linux-any], net-tools [kfreebsd-any], pkg-config, libnl-3-dev, libnl-route-3-dev, libqb-dev, libsctp-dev, libbz2-dev, liblz4-dev, liblzma-dev, liblzo2-dev, libzstd-dev, zlib1g-dev, libnss3-dev, libssl-dev 480s autopkgtest: DBG: can use apt-get on testbed: True 480s 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', 'libknet-dev, libnozzle-dev, build-essential, iproute2 [linux-any], net-tools [kfreebsd-any], pkg-config, libnl-3-dev, libnl-route-3-dev, libqb-dev, libsctp-dev, libbz2-dev, liblz4-dev, liblzma-dev, liblzo2-dev, libzstd-dev, zlib1g-dev, libnss3-dev, libssl-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 480s Reading package lists... 480s Building dependency tree... 480s Reading state information... 481s Starting pkgProblemResolver with broken count: 0 481s Starting 2 pkgProblemResolver with broken count: 0 481s Done 481s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 481s autopkgtest: DBG: testbed command exited with code 0 481s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libknet-dev'], kind short, sout pipe, serr pipe, env [] 481s autopkgtest: DBG: testbed command exited with code 0 481s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libnozzle-dev'], kind short, sout pipe, serr pipe, env [] 481s autopkgtest: DBG: testbed command exited with code 0 481s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.zFYuQO/libnozzle-packages.all"], kind short, sout raw, serr pipe, env [] 481s autopkgtest: DBG: testbed command exited with code 0 481s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libnozzle-packages.all /tmp/autopkgtest-work.9jha134r/out/libnozzle-packages.all 482s autopkgtest: DBG: got reply from testbed: ok 482s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.zFYuQO/build.ffp/src'], kind short, sout raw, serr raw, env [] 482s autopkgtest: DBG: testbed command exited with code 0 482s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.zFYuQO/build.ffp/src already exists 482s autopkgtest [23:23:44]: test libnozzle: [----------------------- 482s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', "set -e; exec /tmp/autopkgtest.zFYuQO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.zFYuQO/libnozzle-artifacts --chdir=/tmp/autopkgtest.zFYuQO/build.ffp/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.zFYuQO/libnozzle-stderr --stdout=/tmp/autopkgtest.zFYuQO/libnozzle-stdout --tmp=/tmp/autopkgtest.zFYuQO/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu '--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.zFYuQO/build.ffp/src/debian/tests/libnozzle -- /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/libnozzle"], kind test, sout raw, serr raw, env [] 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.zFYuQO/libnozzle-artifacts 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: changing to directory: /tmp/autopkgtest.zFYuQO/build.ffp/src 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: LANG=C.UTF-8 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LANGUAGE 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_ADDRESS 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_ALL 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_COLLATE 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_CTYPE 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MEASUREMENT 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MESSAGES 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_MONETARY 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_NAME 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_NUMERIC 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_PAPER 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_TELEPHONE 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: unsetting environment: LC_TIME 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: pretending to be a login shell 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: will write standard error to /tmp/autopkgtest.zFYuQO/libnozzle-stderr 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: will write stdout to /tmp/autopkgtest.zFYuQO/libnozzle-stdout 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.zFYuQO/autopkgtest_tmp 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 483s /tmp/autopkgtest.zFYuQO/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 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: marking as executable: /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/libnozzle 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: command to run: /tmp/autopkgtest.zFYuQO/build.ffp/src/debian/tests/libnozzle 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: copying /tmp/tmp.OngOeefuTK/out to stdout and file: /tmp/autopkgtest.zFYuQO/libnozzle-stdout 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: copying /tmp/tmp.OngOeefuTK/err to standard error and file: /tmp/autopkgtest.zFYuQO/libnozzle-stdout 483s /tmp/autopkgtest.zFYuQO/wrapper.sh: writing script pid 15258 to /tmp/autopkgtest_script_pid 483s + dpkg-architecture -q DEB_HOST_GNU_TYPE 483s + DEB_HOST_GNU_TYPE=s390x-linux-gnu 483s + PKG_CONFIG=s390x-linux-gnu-pkg-config 483s + touch aclocal.m4 configure config.status libnozzle/tests/Makefile.in libnozzle/tests/Makefile 483s + mkdir -p /dev/net 483s + [ -c /dev/net/tun ] 483s + s390x-linux-gnu-pkg-config --libs libnozzle 483s + make LIBS=-lnozzle $(PTHREAD_LIBS) $(libnl_LIBS) VERBOSE=1 -C libnozzle/tests all check-TESTS 483s make: Entering directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests' 483s depbase=`echo api_nozzle_open.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_open.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_open.o api_nozzle_open.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s depbase=`echo test-common.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT test-common.o -MD -MP -MF $depbase.Tpo -c -o test-common.o test-common.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_open_test api_nozzle_open.o test-common.o -lnozzle -lpthread -lnl-3 483s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_open_test api_nozzle_open.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 483s depbase=`echo api_nozzle_close.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_close.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_close.o api_nozzle_close.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_close_test api_nozzle_close.o test-common.o -lnozzle -lpthread -lnl-3 483s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_close_test api_nozzle_close.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 483s depbase=`echo api_nozzle_set_up.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_set_up.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_set_up.o api_nozzle_set_up.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s depbase=`echo ../internals.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT ../internals.o -MD -MP -MF $depbase.Tpo -c -o ../internals.o ../internals.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_up_test api_nozzle_set_up.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 483s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_up_test api_nozzle_set_up.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 483s depbase=`echo api_nozzle_set_down.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_set_down.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_set_down.o api_nozzle_set_down.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_down_test api_nozzle_set_down.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 483s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_down_test api_nozzle_set_down.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 483s depbase=`echo api_nozzle_get_mtu.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 483s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_get_mtu.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_get_mtu.o api_nozzle_get_mtu.c &&\ 483s mv -f $depbase.Tpo $depbase.Po 483s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_mtu_test api_nozzle_get_mtu.o test-common.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_mtu_test api_nozzle_get_mtu.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_set_mtu.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_set_mtu.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_set_mtu.o api_nozzle_set_mtu.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 484s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_mtu_test api_nozzle_set_mtu.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_mtu_test api_nozzle_set_mtu.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_get_mac.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_get_mac.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_get_mac.o api_nozzle_get_mac.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 484s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_mac_test api_nozzle_get_mac.o test-common.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_mac_test api_nozzle_get_mac.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_set_mac.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_set_mac.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_set_mac.o api_nozzle_set_mac.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 484s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_mac_test api_nozzle_set_mac.o test-common.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_set_mac_test api_nozzle_set_mac.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_get_handle_by_name.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_get_handle_by_name.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_get_handle_by_name.o api_nozzle_get_handle_by_name.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 484s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_handle_by_name_test api_nozzle_get_handle_by_name.o test-common.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_handle_by_name_test api_nozzle_get_handle_by_name.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_get_name_by_handle.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_get_name_by_handle.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_get_name_by_handle.o api_nozzle_get_name_by_handle.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 484s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_name_by_handle_test api_nozzle_get_name_by_handle.o test-common.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_name_by_handle_test api_nozzle_get_name_by_handle.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_get_fd.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_get_fd.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_get_fd.o api_nozzle_get_fd.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 484s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_fd_test api_nozzle_get_fd.o test-common.o -lnozzle -lpthread -lnl-3 484s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_fd_test api_nozzle_get_fd.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 484s depbase=`echo api_nozzle_run_updown.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 484s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_run_updown.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_run_updown.o api_nozzle_run_updown.c &&\ 484s mv -f $depbase.Tpo $depbase.Po 485s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_run_updown_test api_nozzle_run_updown.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 485s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_run_updown_test api_nozzle_run_updown.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 485s depbase=`echo api_nozzle_add_ip.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 485s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_add_ip.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_add_ip.o api_nozzle_add_ip.c &&\ 485s mv -f $depbase.Tpo $depbase.Po 485s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_add_ip_test api_nozzle_add_ip.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 485s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_add_ip_test api_nozzle_add_ip.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 485s depbase=`echo api_nozzle_del_ip.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 485s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_del_ip.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_del_ip.o api_nozzle_del_ip.c &&\ 485s mv -f $depbase.Tpo $depbase.Po 485s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_del_ip_test api_nozzle_del_ip.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 485s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_del_ip_test api_nozzle_del_ip.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 485s depbase=`echo api_nozzle_get_ips.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 485s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT api_nozzle_get_ips.o -MD -MP -MF $depbase.Tpo -c -o api_nozzle_get_ips.o api_nozzle_get_ips.c &&\ 485s mv -f $depbase.Tpo $depbase.Po 485s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_ips_test api_nozzle_get_ips.o test-common.o -lnozzle -lpthread -lnl-3 485s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o api_nozzle_get_ips_test api_nozzle_get_ips.o test-common.o -lnozzle -lpthread -lnl-3 -pthread 485s depbase=`echo int_execute_bin_sh_command.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ 485s s390x-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../libnozzle -DABSBUILDDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -DABSSRCDIR=\"/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests\" -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -MT int_execute_bin_sh_command.o -MD -MP -MF $depbase.Tpo -c -o int_execute_bin_sh_command.o int_execute_bin_sh_command.c &&\ 485s mv -f $depbase.Tpo $depbase.Po 485s /bin/bash ../../libtool --tag=CC --mode=link s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -pthread -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_execute_bin_sh_command_test int_execute_bin_sh_command.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 485s libtool: link: s390x-linux-gnu-gcc -O3 -ggdb3 -Werror -Wall -Wextra -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -Wno-unused-parameter -I/usr/include/libnl3 -Wl,--enable-new-dtags -Wl,--as-needed -fPIC -DPIC -pie -fstack-protector-strong -fexceptions -D_GLIBCXX_ASSERTIONS -Wl,-z -Wl,now -fstack-clash-protection -D_FORTIFY_SOURCE=3 -o int_execute_bin_sh_command_test int_execute_bin_sh_command.o test-common.o ../internals.o -lnozzle -lpthread -lnl-3 -pthread 485s make[1]: Entering directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests' 485s PASS: api_nozzle_open_test 486s PASS: api_nozzle_close_test 486s PASS: api_nozzle_set_up_test 486s PASS: api_nozzle_set_down_test 486s PASS: api_nozzle_get_mtu_test 486s PASS: api_nozzle_set_mtu_test 486s PASS: api_nozzle_get_mac_test 486s PASS: api_nozzle_set_mac_test 486s PASS: api_nozzle_get_handle_by_name_test 486s PASS: api_nozzle_get_name_by_handle_test 486s PASS: api_nozzle_get_fd_test 486s PASS: api_nozzle_run_updown_test 486s PASS: api_nozzle_add_ip_test 486s PASS: api_nozzle_del_ip_test 486s PASS: api_nozzle_get_ips_test 486s PASS: int_execute_bin_sh_command_test 486s ============================================================================ 486s Testsuite summary for kronosnet 1.29 486s ============================================================================ 486s # TOTAL: 16 486s # PASS: 16 486s # SKIP: 0 486s # XFAIL: 0 486s # FAIL: 0 486s # XPASS: 0 486s # ERROR: 0 486s ============================================================================ 486s make[1]: Leaving directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests' 486s make: Leaving directory '/tmp/autopkgtest.zFYuQO/build.ffp/src/libnozzle/tests' 486s + [ /tmp/autopkgtest.zFYuQO/libnozzle-artifacts ] 486s + mkdir /tmp/autopkgtest.zFYuQO/libnozzle-artifacts/libnozzle 486s + mv libnozzle/tests/api_nozzle_add_ip_test.log libnozzle/tests/api_nozzle_close_test.log libnozzle/tests/api_nozzle_del_ip_test.log libnozzle/tests/api_nozzle_get_fd_test.log libnozzle/tests/api_nozzle_get_handle_by_name_test.log libnozzle/tests/api_nozzle_get_ips_test.log libnozzle/tests/api_nozzle_get_mac_test.log libnozzle/tests/api_nozzle_get_mtu_test.log libnozzle/tests/api_nozzle_get_name_by_handle_test.log libnozzle/tests/api_nozzle_open_test.log libnozzle/tests/api_nozzle_run_updown_test.log libnozzle/tests/api_nozzle_set_down_test.log libnozzle/tests/api_nozzle_set_mac_test.log libnozzle/tests/api_nozzle_set_mtu_test.log libnozzle/tests/api_nozzle_set_up_test.log libnozzle/tests/int_execute_bin_sh_command_test.log libnozzle/tests/test-suite.log libnozzle/tests/api_nozzle_add_ip_test.trs libnozzle/tests/api_nozzle_close_test.trs libnozzle/tests/api_nozzle_del_ip_test.trs libnozzle/tests/api_nozzle_get_fd_test.trs libnozzle/tests/api_nozzle_get_handle_by_name_test.trs libnozzle/tests/api_nozzle_get_ips_test.trs libnozzle/tests/api_nozzle_get_mac_test.trs libnozzle/tests/api_nozzle_get_mtu_test.trs libnozzle/tests/api_nozzle_get_name_by_handle_test.trs libnozzle/tests/api_nozzle_open_test.trs libnozzle/tests/api_nozzle_run_updown_test.trs libnozzle/tests/api_nozzle_set_down_test.trs libnozzle/tests/api_nozzle_set_mac_test.trs libnozzle/tests/api_nozzle_set_mtu_test.trs libnozzle/tests/api_nozzle_set_up_test.trs libnozzle/tests/int_execute_bin_sh_command_test.trs /tmp/autopkgtest.zFYuQO/libnozzle-artifacts/libnozzle 486s + exit 486s /tmp/autopkgtest.zFYuQO/wrapper.sh: checking for leaked background processes... 486s /tmp/autopkgtest.zFYuQO/wrapper.sh: waiting for tee/cat subprocesses... 486s /tmp/autopkgtest.zFYuQO/wrapper.sh: cleaning up... 486s /tmp/autopkgtest.zFYuQO/wrapper.sh: Exit status: 0 486s autopkgtest: DBG: testbed command exited with code 0 487s autopkgtest [23:23:49]: test libnozzle: -----------------------] 487s autopkgtest: DBG: testbed executing test finished with exit status 0 487s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libnozzle-stdout /tmp/autopkgtest-work.9jha134r/out/libnozzle-stdout 487s autopkgtest: DBG: got reply from testbed: ok 487s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libnozzle-stderr /tmp/autopkgtest-work.9jha134r/out/libnozzle-stderr 487s autopkgtest: DBG: got reply from testbed: ok 487s libnozzle PASS 487s autopkgtest [23:23:49]: test libnozzle: - - - - - - - - - - results - - - - - - - - - - 487s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.zFYuQO/libnozzle-artifacts/ /tmp/autopkgtest-work.9jha134r/out/artifacts/ 487s autopkgtest: DBG: got reply from testbed: ok 487s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.zFYuQO/libnozzle-artifacts', '/tmp/autopkgtest.zFYuQO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 487s autopkgtest: DBG: testbed command exited with code 0 487s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 487s autopkgtest [23:23:49]: @@@@@@@@@@@@@@@@@@@@ summary 487s configure PASS 487s libknet PASS 487s libnozzle PASS 487s autopkgtest: DBG: testbed stop 487s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.zFYuQO 487s autopkgtest: DBG: sending command to testbed: close 505s autopkgtest: DBG: got reply from testbed: ok 505s autopkgtest: DBG: sending command to testbed: quit 505s nova [W] Using flock in prodstack6-s390x 505s flock: timeout while waiting to get lock 505s Creating nova instance adt-plucky-s390x-kronosnet-20250215-231541-juju-7f2275-prod-proposed-migration-environment-15-5b95aa3a-4b99-4fd0-82a9-52b8d8937e20 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 505s nova [W] Timed out waiting for e3ac282d-821c-438c-a179-e6e73b7b5820 to get deleted.