0s autopkgtest: DBG: testbed init 0s autopkgtest [02:51:30]: starting date and time: 2025-02-16 02:51:30+0000 0s autopkgtest [02:51:30]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [02:51:30]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.5t3svkb1/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:notary --apt-upgrade notary --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=notary/0.7.0+git20240416.9d2b3b3+ds1-3 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-18.secgroup --name adt-plucky-s390x-notary-20250216-025130-juju-7f2275-prod-proposed-migration-environment-15-a74ad006-5b9f-450e-8b49-1c6a1d390023 --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 97s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.M2Z2np 97s autopkgtest: DBG: sending command to testbed: print-execute-command 97s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.n6wvubo3/runcmd 97s autopkgtest: DBG: sending command to testbed: capabilities 97s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu isolation-machine revert-full-system reboot revert root-on-testbed 97s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'isolation-machine', 'revert-full-system', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.M2Z2np'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.M2Z2np/wrapper.sh 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.M2Z2np/wrapper.sh'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [02:53:08]: testbed dpkg architecture: s390x 98s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [02:53:08]: testbed apt version: 2.9.28 98s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed has eatmydata 98s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [02:53:08]: @@@@@@@@@@@@@@@@@@@@ test bed setup 98s 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest [02:53:08]: testbed release detected to be: None 98s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: adding APT source: Types: deb deb-src 99s URIs: http://ftpmaster.internal/ubuntu/ 99s Suites: plucky-proposed 99s Components: main restricted universe multiverse 99s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 99s Package: * 99s Pin: release plucky-proposed 99s Pin-Priority: 500 99s 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 [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest [02:53:09]: updating testbed package index (apt update) 99s 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'] 99s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 100s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 100s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 100s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 100s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 100s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 100s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 100s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 100s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 100s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 100s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 100s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 100s Fetched 2083 kB in 1s (2113 kB/s) 101s Reading package lists... 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 101s Package: * 101s Pin: release plucky-proposed 101s Pin-Priority: 100 101s 101s Package: src:notary:any 101s Pin: release plucky-proposed 101s Pin-Priority: 995 101s 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:notary:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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.M2Z2np/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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'] 102s + lsb_release --codename --short 102s + RELEASE=plucky 102s + cat 102s + [ plucky != trusty ] 102s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 102s Reading package lists... 102s Building dependency tree... 102s Reading state information... 102s Calculating upgrade... 102s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 102s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 102s + /usr/lib/apt/apt-helper analyze-pattern ?true 102s + uname -r 102s + sed s/\./\\./g 102s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 102s + apt list ?obsolete 102s + tail -n+2 102s + cut -d/ -f1 102s + grep -v ^linux-.*6\.12\.0-15-generic.* 102s + obsolete_pkgs=linux-image-6.11.0-8-generic 102s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove linux-image-6.11.0-8-generic 102s Reading package lists... 102s Building dependency tree... 102s Reading state information... 102s The following packages will be REMOVED: 102s linux-image-6.11.0-8-generic* 103s 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 103s After this operation, 10.5 MB disk space will be freed. 103s (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 ... 80973 files and directories currently installed.) 103s Removing linux-image-6.11.0-8-generic (6.11.0-8.8) ... 103s I: /boot/vmlinuz.old is now a symlink to vmlinuz-6.12.0-15-generic 103s I: /boot/initrd.img.old is now a symlink to initrd.img-6.12.0-15-generic 103s /etc/kernel/postrm.d/initramfs-tools: 103s update-initramfs: Deleting /boot/initrd.img-6.11.0-8-generic 103s /etc/kernel/postrm.d/zz-zipl: 103s Using config file '/etc/zipl.conf' 103s Building bootmap in '/boot' 103s Adding IPL section 'ubuntu' (default) 103s Preparing boot device for LD-IPL: vda (0000). 103s Done. 103s (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.) 103s Purging configuration files for linux-image-6.11.0-8-generic (6.11.0-8.8) ... 103s rmdir: failed to remove '/lib/modules/6.11.0-8-generic': Directory not empty 103s + grep -q trusty /etc/lsb-release 103s + [ ! -d /usr/share/doc/unattended-upgrades ] 103s + [ ! -d /usr/share/doc/lxd ] 103s + [ ! -d /usr/share/doc/lxd-client ] 103s + [ ! -d /usr/share/doc/snapd ] 103s + type iptables 103s + cat 103s + chmod 755 /etc/rc.local 103s + . /etc/rc.local 103s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 103s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 103s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 103s + uname -m 103s + [ s390x = ppc64le ] 103s + [ -d /run/systemd/system ] 103s + systemd-detect-virt --quiet --vm 103s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 103s + cat 103s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 103s + echo COMPRESS=lz4 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [02:53:13]: upgrading testbed (apt dist-upgrade and autopurge) 103s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 103s Reading package lists... 103s Building dependency tree... 103s Reading state information... 104s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 104s Starting 2 pkgProblemResolver with broken count: 0 104s Done 104s Entering ResolveByKeep 104s 104s The following packages were automatically installed and are no longer required: 104s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 104s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 104s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 104s linux-tools-6.11.0-8-generic 104s Use 'sudo apt autoremove' to remove them. 104s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 104s autopkgtest: DBG: testbed command exited with code 0 104s 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'] 104s Reading package lists... 104s Building dependency tree... 104s Reading state information... 105s Starting pkgProblemResolver with broken count: 0 105s Starting 2 pkgProblemResolver with broken count: 0 105s Done 105s The following packages will be REMOVED: 105s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 105s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 105s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 105s linux-tools-6.11.0-8-generic* 105s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 105s After this operation, 167 MB disk space will be freed. 105s (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.) 105s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 105s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 105s Removing libpython3.12t64:s390x (3.12.9-1) ... 105s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 105s Removing libnsl2:s390x (1.3.0-3build3) ... 105s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 105s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 105s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 106s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 106s Processing triggers for libc-bin (2.40-4ubuntu1) ... 106s (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.) 106s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 106s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 106s autopkgtest: DBG: testbed command exited with code 0 106s 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.M2Z2np/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 107s autopkgtest: DBG: testbed command exited with code 1 107s autopkgtest [02:53:17]: rebooting testbed after setup commands that affected boot 107s autopkgtest: DBG: sending command to testbed: reboot 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.M2Z2np'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.M2Z2np/autopkgtest-reboot 124s autopkgtest: DBG: got reply from testbed: ok 124s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.M2Z2np'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.M2Z2np/autopkgtest-reboot-prepare 125s autopkgtest: DBG: got reply from testbed: ok 125s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [02:53:35]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 125s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.M2Z2np/testbed-packages"], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/testbed-packages /tmp/autopkgtest-work.5t3svkb1/out/testbed-packages 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 126s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.M2Z2np'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.M2Z2np/autopkgtest-reboot 126s autopkgtest: DBG: got reply from testbed: ok 126s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.M2Z2np'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.M2Z2np/autopkgtest-reboot-prepare 127s autopkgtest: DBG: got reply from testbed: ok 127s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.M2Z2np/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: Binaries: initialising 128s autopkgtest [02:53:38]: @@@@@@@@@@@@@@@@@@@@ apt-source notary 128s autopkgtest: DBG: blame += notary 128s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 128s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'notary'], kind short, sout pipe, serr pipe, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^golang-github-docker-notary-dev$'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'golang-github-docker-notary-dev=0.7.0+git20240416.9d2b3b3+ds1-3'], kind short, sout pipe, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 0 128s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^notary$'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'notary=0.7.0+git20240416.9d2b3b3+ds1-3'], kind short, sout pipe, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s autopkgtest: DBG: install_deps: deps_new=[] 129s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 129s autopkgtest: DBG: testbed command exited with code 0 129s 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.M2Z2np/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source notary=0.7.0+git20240416.9d2b3b3+ds1-3 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 notary_*.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=notary/0.7.0+git20240416.9d2b3b3+ds1-3'] 129s + cd / 129s + mktemp -d /tmp/autopkgtest.M2Z2np/build.XXX 129s + builddir=/tmp/autopkgtest.M2Z2np/build.rbd 129s + cd /tmp/autopkgtest.M2Z2np/build.rbd 129s + apt-get source -d -q --only-source notary=0.7.0+git20240416.9d2b3b3+ds1-3 130s + OUT=Reading package lists... 130s NOTICE: 'notary' packaging is maintained in the 'Git' version control system at: 130s https://salsa.debian.org/go-team/packages/notary.git 130s Please use: 130s git clone https://salsa.debian.org/go-team/packages/notary.git 130s to retrieve the latest (possibly unreleased) updates to the package. 130s Need to get 1506 kB of source archives. 130s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (dsc) [3601 B] 130s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (tar) [1461 kB] 130s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (diff) [41.9 kB] 130s Fetched 1506 kB in 1s (2446 kB/s) 130s Download complete and in download only mode 130s + [ -n ] 130s + echo+ Reading package lists... 130s NOTICE: 'notary' packaging is maintained in the 'Git' version control system at: 130s https://salsa.debian.org/go-team/packages/notary.git 130s Please use: 130s git clone https://salsa.debian.org/go-team/packages/notary.git 130s to retrieve the latest (possibly unreleased) updates to the package. 130s Need to get 1506 kB of source archives. 130s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (dsc) [3601 B] 130s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (tar) [1461 kB] 130s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (diff) [41.9 kB] 130s Fetched 1506 kB in 1s (2446 kB/s) 130s Download complete and in download only mode 130s grep ^Get: 130s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (dsc) [3601 B] 130s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (tar) [1461 kB] 130s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe notary 0.7.0+git20240416.9d2b3b3+ds1-3 (diff) [41.9 kB] 130s + dpkg-source -x notary_0.7.0+git20240416.9d2b3b3+ds1-3.dsc src 130s gpgv: Signature made Sat Feb 15 16:33:44 2025 UTC 130s gpgv: using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2 130s gpgv: issuer "simon@josefsson.org" 130s gpgv: Can't check signature: No public key 130s dpkg-source: warning: cannot verify inline signature for ./notary_0.7.0+git20240416.9d2b3b3+ds1-3.dsc: no acceptable signature found 130s + chmod -R a+rX . 130s + cd src/. 130s + pwd 130s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 130s autopkgtest: DBG: testbed command exited with code 0 130s autopkgtest [02:53:40]: testing package notary version 0.7.0+git20240416.9d2b3b3+ds1-3 130s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/build.rbd/src/debian/ /tmp/autopkgtest-work.5t3svkb1/out/pkg/debian/ 130s autopkgtest: DBG: got reply from testbed: ok 130s autopkgtest: DBG: autodep8 generated control: ----- 130s Test-Command: /usr/bin/dh_golang_autopkgtest 130s Depends: @, @builddeps@, dh-golang, 130s Restrictions: allow-stderr, 130s Features: test-name=dh-golang-autopkgtest 130s 130s 130s ------- 130s autopkgtest: DBG: processing dependency @ 130s autopkgtest: DBG: synthesised dependency notary 130s autopkgtest: DBG: synthesised dependency golang-github-docker-notary-dev 130s autopkgtest: DBG: processing dependency @builddeps@ 130s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 130s autopkgtest: DBG: synthesised dependency dh-golang 130s autopkgtest: DBG: synthesised dependency golang-any 130s autopkgtest: DBG: synthesised dependency golang-github-bugsnag-bugsnag-go-dev 130s autopkgtest: DBG: synthesised dependency golang-github-cloudflare-cfssl-dev (>= 1.6.5) 130s autopkgtest: DBG: synthesised dependency golang-github-docker-distribution-dev (>= 2.7.1~) 130s autopkgtest: DBG: synthesised dependency golang-github-docker-go-connections-dev 130s autopkgtest: DBG: synthesised dependency golang-github-docker-go-dev 130s autopkgtest: DBG: synthesised dependency golang-github-dvsekhvalnov-jose2go-dev 130s autopkgtest: DBG: synthesised dependency golang-github-go-sql-driver-mysql-dev 130s autopkgtest: DBG: synthesised dependency golang-github-golang-protobuf-1-5-dev 130s autopkgtest: DBG: synthesised dependency golang-github-gorilla-mux-dev 130s autopkgtest: DBG: synthesised dependency golang-github-jinzhu-gorm-dev 130s autopkgtest: DBG: synthesised dependency golang-github-lib-pq-dev 130s autopkgtest: DBG: synthesised dependency golang-github-mattn-go-sqlite3-dev 130s autopkgtest: DBG: synthesised dependency golang-github-miekg-pkcs11-dev 130s autopkgtest: DBG: synthesised dependency golang-github-shopify-logrus-bugsnag-dev 130s autopkgtest: DBG: synthesised dependency golang-github-sirupsen-logrus-dev 130s autopkgtest: DBG: synthesised dependency golang-github-spf13-cobra-dev 130s autopkgtest: DBG: synthesised dependency golang-github-spf13-viper-dev 130s autopkgtest: DBG: synthesised dependency golang-github-stretchr-testify-dev 130s autopkgtest: DBG: synthesised dependency golang-golang-x-crypto-dev 130s autopkgtest: DBG: synthesised dependency golang-golang-x-net-dev 130s autopkgtest: DBG: synthesised dependency golang-golang-x-sys-dev 130s autopkgtest: DBG: synthesised dependency golang-google-grpc-dev 130s autopkgtest: DBG: synthesised dependency golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~) 130s autopkgtest: DBG: synthesised dependency openssl 130s autopkgtest: DBG: synthesised dependency protoc-gen-go-grpc 130s autopkgtest: DBG: synthesised dependency protoc-gen-go-1-5 130s autopkgtest: DBG: synthesised dependency build-essential 130s autopkgtest: DBG: processing dependency dh-golang 130s autopkgtest: DBG: Test defined: name dh-golang-autopkgtest path None command "/usr/bin/dh_golang_autopkgtest" restrictions ['allow-stderr'] features ['test-name=dh-golang-autopkgtest'] depends ['notary', 'golang-github-docker-notary-dev', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-bugsnag-bugsnag-go-dev', 'golang-github-cloudflare-cfssl-dev (>= 1.6.5)', 'golang-github-docker-distribution-dev (>= 2.7.1~)', 'golang-github-docker-go-connections-dev', 'golang-github-docker-go-dev', 'golang-github-dvsekhvalnov-jose2go-dev', 'golang-github-go-sql-driver-mysql-dev', 'golang-github-golang-protobuf-1-5-dev', 'golang-github-gorilla-mux-dev', 'golang-github-jinzhu-gorm-dev', 'golang-github-lib-pq-dev', 'golang-github-mattn-go-sqlite3-dev', 'golang-github-miekg-pkcs11-dev', 'golang-github-shopify-logrus-bugsnag-dev', 'golang-github-sirupsen-logrus-dev', 'golang-github-spf13-cobra-dev', 'golang-github-spf13-viper-dev', 'golang-github-stretchr-testify-dev', 'golang-golang-x-crypto-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sys-dev', 'golang-google-grpc-dev', 'golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~)', 'openssl', 'protoc-gen-go-grpc', 'protoc-gen-go-1-5', 'build-essential', 'dh-golang'] 130s autopkgtest [02:53:40]: build not needed 130s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/build.rbd/src/ /tmp/autopkgtest-work.5t3svkb1/out/tests-tree/ 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: autodep8 generated control: ----- 131s Test-Command: /usr/bin/dh_golang_autopkgtest 131s Depends: @, @builddeps@, dh-golang, 131s Restrictions: allow-stderr, 131s Features: test-name=dh-golang-autopkgtest 131s 131s 131s ------- 131s autopkgtest: DBG: processing dependency @ 131s autopkgtest: DBG: synthesised dependency notary 131s autopkgtest: DBG: synthesised dependency golang-github-docker-notary-dev 131s autopkgtest: DBG: processing dependency @builddeps@ 131s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 131s autopkgtest: DBG: synthesised dependency dh-golang 131s autopkgtest: DBG: synthesised dependency golang-any 131s autopkgtest: DBG: synthesised dependency golang-github-bugsnag-bugsnag-go-dev 131s autopkgtest: DBG: synthesised dependency golang-github-cloudflare-cfssl-dev (>= 1.6.5) 131s autopkgtest: DBG: synthesised dependency golang-github-docker-distribution-dev (>= 2.7.1~) 131s autopkgtest: DBG: synthesised dependency golang-github-docker-go-connections-dev 131s autopkgtest: DBG: synthesised dependency golang-github-docker-go-dev 131s autopkgtest: DBG: synthesised dependency golang-github-dvsekhvalnov-jose2go-dev 131s autopkgtest: DBG: synthesised dependency golang-github-go-sql-driver-mysql-dev 131s autopkgtest: DBG: synthesised dependency golang-github-golang-protobuf-1-5-dev 131s autopkgtest: DBG: synthesised dependency golang-github-gorilla-mux-dev 131s autopkgtest: DBG: synthesised dependency golang-github-jinzhu-gorm-dev 131s autopkgtest: DBG: synthesised dependency golang-github-lib-pq-dev 131s autopkgtest: DBG: synthesised dependency golang-github-mattn-go-sqlite3-dev 131s autopkgtest: DBG: synthesised dependency golang-github-miekg-pkcs11-dev 131s autopkgtest: DBG: synthesised dependency golang-github-shopify-logrus-bugsnag-dev 131s autopkgtest: DBG: synthesised dependency golang-github-sirupsen-logrus-dev 131s autopkgtest: DBG: synthesised dependency golang-github-spf13-cobra-dev 131s autopkgtest: DBG: synthesised dependency golang-github-spf13-viper-dev 131s autopkgtest: DBG: synthesised dependency golang-github-stretchr-testify-dev 131s autopkgtest: DBG: synthesised dependency golang-golang-x-crypto-dev 131s autopkgtest: DBG: synthesised dependency golang-golang-x-net-dev 131s autopkgtest: DBG: synthesised dependency golang-golang-x-sys-dev 131s autopkgtest: DBG: synthesised dependency golang-google-grpc-dev 131s autopkgtest: DBG: synthesised dependency golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~) 131s autopkgtest: DBG: synthesised dependency openssl 131s autopkgtest: DBG: synthesised dependency protoc-gen-go-grpc 131s autopkgtest: DBG: synthesised dependency protoc-gen-go-1-5 131s autopkgtest: DBG: synthesised dependency build-essential 131s autopkgtest: DBG: processing dependency dh-golang 131s autopkgtest: DBG: Test defined: name dh-golang-autopkgtest path None command "/usr/bin/dh_golang_autopkgtest" restrictions ['allow-stderr'] features ['test-name=dh-golang-autopkgtest'] depends ['notary', 'golang-github-docker-notary-dev', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-bugsnag-bugsnag-go-dev', 'golang-github-cloudflare-cfssl-dev (>= 1.6.5)', 'golang-github-docker-distribution-dev (>= 2.7.1~)', 'golang-github-docker-go-connections-dev', 'golang-github-docker-go-dev', 'golang-github-dvsekhvalnov-jose2go-dev', 'golang-github-go-sql-driver-mysql-dev', 'golang-github-golang-protobuf-1-5-dev', 'golang-github-gorilla-mux-dev', 'golang-github-jinzhu-gorm-dev', 'golang-github-lib-pq-dev', 'golang-github-mattn-go-sqlite3-dev', 'golang-github-miekg-pkcs11-dev', 'golang-github-shopify-logrus-bugsnag-dev', 'golang-github-sirupsen-logrus-dev', 'golang-github-spf13-cobra-dev', 'golang-github-spf13-viper-dev', 'golang-github-stretchr-testify-dev', 'golang-golang-x-crypto-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sys-dev', 'golang-google-grpc-dev', 'golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~)', 'openssl', 'protoc-gen-go-grpc', 'protoc-gen-go-1-5', 'build-essential', 'dh-golang'] 131s autopkgtest [02:53:41]: test dh-golang-autopkgtest: preparing testbed 131s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['notary', 'golang-github-docker-notary-dev', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-bugsnag-bugsnag-go-dev', 'golang-github-cloudflare-cfssl-dev (>= 1.6.5)', 'golang-github-docker-distribution-dev (>= 2.7.1~)', 'golang-github-docker-go-connections-dev', 'golang-github-docker-go-dev', 'golang-github-dvsekhvalnov-jose2go-dev', 'golang-github-go-sql-driver-mysql-dev', 'golang-github-golang-protobuf-1-5-dev', 'golang-github-gorilla-mux-dev', 'golang-github-jinzhu-gorm-dev', 'golang-github-lib-pq-dev', 'golang-github-mattn-go-sqlite3-dev', 'golang-github-miekg-pkcs11-dev', 'golang-github-shopify-logrus-bugsnag-dev', 'golang-github-sirupsen-logrus-dev', 'golang-github-spf13-cobra-dev', 'golang-github-spf13-viper-dev', 'golang-github-stretchr-testify-dev', 'golang-golang-x-crypto-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sys-dev', 'golang-google-grpc-dev', 'golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~)', 'openssl', 'protoc-gen-go-grpc', 'protoc-gen-go-1-5', 'build-essential', 'dh-golang'] 131s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 131s autopkgtest: DBG: install_deps: deps_new=['notary', 'golang-github-docker-notary-dev', 'debhelper-compat (= 13)', 'dh-golang', 'golang-any', 'golang-github-bugsnag-bugsnag-go-dev', 'golang-github-cloudflare-cfssl-dev (>= 1.6.5)', 'golang-github-docker-distribution-dev (>= 2.7.1~)', 'golang-github-docker-go-connections-dev', 'golang-github-docker-go-dev', 'golang-github-dvsekhvalnov-jose2go-dev', 'golang-github-go-sql-driver-mysql-dev', 'golang-github-golang-protobuf-1-5-dev', 'golang-github-gorilla-mux-dev', 'golang-github-jinzhu-gorm-dev', 'golang-github-lib-pq-dev', 'golang-github-mattn-go-sqlite3-dev', 'golang-github-miekg-pkcs11-dev', 'golang-github-shopify-logrus-bugsnag-dev', 'golang-github-sirupsen-logrus-dev', 'golang-github-spf13-cobra-dev', 'golang-github-spf13-viper-dev', 'golang-github-stretchr-testify-dev', 'golang-golang-x-crypto-dev', 'golang-golang-x-net-dev', 'golang-golang-x-sys-dev', 'golang-google-grpc-dev', 'golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~)', 'openssl', 'protoc-gen-go-grpc', 'protoc-gen-go-1-5', 'build-essential', 'dh-golang'] 131s autopkgtest: DBG: install-deps: satisfying notary, golang-github-docker-notary-dev, debhelper-compat (= 13), dh-golang, golang-any, golang-github-bugsnag-bugsnag-go-dev, golang-github-cloudflare-cfssl-dev (>= 1.6.5), golang-github-docker-distribution-dev (>= 2.7.1~), golang-github-docker-go-connections-dev, golang-github-docker-go-dev, golang-github-dvsekhvalnov-jose2go-dev, golang-github-go-sql-driver-mysql-dev, golang-github-golang-protobuf-1-5-dev, golang-github-gorilla-mux-dev, golang-github-jinzhu-gorm-dev, golang-github-lib-pq-dev, golang-github-mattn-go-sqlite3-dev, golang-github-miekg-pkcs11-dev, golang-github-shopify-logrus-bugsnag-dev, golang-github-sirupsen-logrus-dev, golang-github-spf13-cobra-dev, golang-github-spf13-viper-dev, golang-github-stretchr-testify-dev, golang-golang-x-crypto-dev, golang-golang-x-net-dev, golang-golang-x-sys-dev, golang-google-grpc-dev, golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~), openssl, protoc-gen-go-grpc, protoc-gen-go-1-5, build-essential, dh-golang 131s autopkgtest: DBG: can use apt-get on testbed: True 131s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'notary, golang-github-docker-notary-dev, debhelper-compat (= 13), dh-golang, golang-any, golang-github-bugsnag-bugsnag-go-dev, golang-github-cloudflare-cfssl-dev (>= 1.6.5), golang-github-docker-distribution-dev (>= 2.7.1~), golang-github-docker-go-connections-dev, golang-github-docker-go-dev, golang-github-dvsekhvalnov-jose2go-dev, golang-github-go-sql-driver-mysql-dev, golang-github-golang-protobuf-1-5-dev, golang-github-gorilla-mux-dev, golang-github-jinzhu-gorm-dev, golang-github-lib-pq-dev, golang-github-mattn-go-sqlite3-dev, golang-github-miekg-pkcs11-dev, golang-github-shopify-logrus-bugsnag-dev, golang-github-sirupsen-logrus-dev, golang-github-spf13-cobra-dev, golang-github-spf13-viper-dev, golang-github-stretchr-testify-dev, golang-golang-x-crypto-dev, golang-golang-x-net-dev, golang-golang-x-sys-dev, golang-google-grpc-dev, golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (>> 6.2.1-3~), openssl, protoc-gen-go-grpc, protoc-gen-go-1-5, build-essential, dh-golang'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 131s Reading package lists... 132s Building dependency tree... 132s Reading state information... 132s Starting pkgProblemResolver with broken count: 0 132s Starting 2 pkgProblemResolver with broken count: 0 132s Done 132s The following NEW packages will be installed: 132s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 132s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 132s dh-golang dh-strip-nondeterminism dwz g++ g++-14 g++-14-s390x-linux-gnu 132s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 132s gettext golang-1.23-go golang-1.23-src golang-any golang-dbus-dev 132s golang-filippo-edwards25519-dev golang-github-akavel-rsrc-dev 132s golang-github-alecthomas-units-dev golang-github-antlr-antlr4-dev 132s golang-github-aws-aws-sdk-go-dev golang-github-beorn7-perks-dev 132s golang-github-bmizerany-assert-dev golang-github-bugsnag-bugsnag-go-dev 132s golang-github-bugsnag-panicwrap-dev golang-github-burntsushi-toml-dev 132s golang-github-cespare-xxhash-dev golang-github-chzyer-readline-dev 132s golang-github-cloudflare-backoff-dev golang-github-cloudflare-cfssl-dev 132s golang-github-cloudflare-go-metrics-dev 132s golang-github-cloudflare-redoctober-dev golang-github-coreos-go-systemd-dev 132s golang-github-cpuguy83-go-md2man-v2-dev golang-github-creack-pty-dev 132s golang-github-daaku-go.zipexe-dev golang-github-davecgh-go-spew-dev 132s golang-github-denisenkom-go-mssqldb-dev 132s golang-github-distribution-reference-dev 132s golang-github-docker-distribution-dev 132s golang-github-docker-go-connections-dev golang-github-docker-go-dev 132s golang-github-docker-go-metrics-dev golang-github-docker-libtrust-dev 132s golang-github-docker-notary-dev golang-github-dvsekhvalnov-jose2go-dev 132s golang-github-felixge-httpsnoop-dev golang-github-fsnotify-fsnotify-dev 132s golang-github-garyburd-redigo-dev 132s golang-github-geertjohan-go.incremental-dev 132s golang-github-geertjohan-go.rice-dev golang-github-gin-contrib-sse-dev 132s golang-github-gin-gonic-gin-dev golang-github-go-kit-log-dev 132s golang-github-go-logfmt-logfmt-dev golang-github-go-logr-logr-dev 132s golang-github-go-playground-locales-dev 132s golang-github-go-playground-universal-translator-dev 132s golang-github-go-playground-validator-v10-dev 132s golang-github-go-sql-driver-mysql-dev golang-github-golang-groupcache-dev 132s golang-github-golang-mock-dev golang-github-golang-protobuf-1-5-dev 132s golang-github-google-btree-dev golang-github-google-cel-go-dev 132s golang-github-google-certificate-transparency-dev 132s golang-github-google-go-cmp-dev golang-github-google-go-github-dev 132s golang-github-google-go-querystring-dev golang-github-google-martian-dev 132s golang-github-google-pprof-dev golang-github-google-uuid-dev 132s golang-github-googleapis-gax-go-dev golang-github-gorilla-handlers-dev 132s golang-github-gorilla-mux-dev golang-github-gorilla-securecookie-dev 132s golang-github-gorilla-sessions-dev golang-github-hailocab-go-hostpool-dev 132s golang-github-hashicorp-go-uuid-dev 132s golang-github-hashicorp-golang-lru-v2-dev golang-github-hashicorp-hcl-dev 132s golang-github-ianlancetaylor-demangle-dev 132s golang-github-jcmturner-aescts.v2-dev 132s golang-github-jcmturner-dnsutils.v2-dev golang-github-jcmturner-gofork-dev 132s golang-github-jcmturner-goidentity.v6-dev 132s golang-github-jcmturner-gokrb5.v8-dev golang-github-jcmturner-rpc.v2-dev 132s golang-github-jessevdk-go-flags-dev golang-github-jinzhu-gorm-dev 132s golang-github-jinzhu-inflection-dev golang-github-jmespath-go-jmespath-dev 132s golang-github-jmhodges-clock-dev golang-github-jmoiron-sqlx-dev 132s golang-github-jpillora-backoff-dev golang-github-json-iterator-go-dev 132s golang-github-juju-ratelimit-dev golang-github-julienschmidt-httprouter-dev 132s golang-github-kisielk-sqlstruct-dev golang-github-kisom-goutils-dev 132s golang-github-klauspost-compress-dev golang-github-kr-fs-dev 132s golang-github-kr-pretty-dev golang-github-kr-text-dev 132s golang-github-kylelemons-godebug-dev golang-github-leodido-go-urn-dev 132s golang-github-lib-pq-dev golang-github-magiconair-properties-dev 132s golang-github-mattn-go-isatty-dev golang-github-mattn-go-sqlite3-dev 132s golang-github-miekg-pkcs11-dev golang-github-mitchellh-mapstructure-dev 132s golang-github-modern-go-concurrent-dev golang-github-modern-go-reflect2-dev 132s golang-github-mreiferson-go-httpclient-dev 132s golang-github-munnerz-goautoneg-dev golang-github-mwitkow-go-conntrack-dev 132s golang-github-ncw-swift-dev golang-github-nkovacs-streamquote-dev 132s golang-github-op-go-logging-dev golang-github-opencontainers-go-digest-dev 132s golang-github-opencontainers-image-spec-dev 132s golang-github-opentracing-opentracing-go-dev 132s golang-github-pelletier-go-toml-dev golang-github-pelletier-go-toml.v2-dev 132s golang-github-pkg-errors-dev golang-github-pkg-sftp-dev 132s golang-github-pmezard-go-difflib-dev 132s golang-github-prometheus-client-golang-dev 132s golang-github-prometheus-client-model-dev 132s golang-github-prometheus-common-dev golang-github-prometheus-procfs-dev 132s golang-github-rcrowley-go-metrics-dev golang-github-rogpeppe-go-internal-dev 132s golang-github-rs-cors-dev golang-github-russross-blackfriday-v2-dev 132s golang-github-shopify-logrus-bugsnag-dev 132s golang-github-shurcool-sanitized-anchor-name-dev 132s golang-github-sirupsen-logrus-dev golang-github-spf13-afero-dev 132s golang-github-spf13-cast-dev golang-github-spf13-cobra-dev 132s golang-github-spf13-jwalterweatherman-dev golang-github-spf13-pflag-dev 132s golang-github-spf13-viper-dev golang-github-stathat-go-dev 132s golang-github-stoewer-go-strcase-dev golang-github-stretchr-objx-dev 132s golang-github-stretchr-testify-dev golang-github-subosito-gotenv-dev 132s golang-github-transparency-dev-merkle-dev golang-github-ugorji-go-codec-dev 132s golang-github-valyala-bytebufferpool-dev 132s golang-github-valyala-fasttemplate-dev 132s golang-github-weppos-publicsuffix-go-dev 132s golang-github-xeipuuv-gojsonpointer-dev 132s golang-github-xeipuuv-gojsonreference-dev 132s golang-github-xeipuuv-gojsonschema-dev golang-github-yuin-goldmark-dev 132s golang-github-zmap-rc2-dev golang-github-zmap-zcrypto-dev 132s golang-github-zmap-zlint-dev golang-glog-dev golang-go golang-go-flags-dev 132s golang-go.opencensus-dev golang-golang-x-crypto-dev golang-golang-x-exp-dev 132s golang-golang-x-mod-dev golang-golang-x-net-dev golang-golang-x-oauth2-dev 132s golang-golang-x-oauth2-google-dev golang-golang-x-sync-dev 132s golang-golang-x-sys-dev golang-golang-x-term-dev golang-golang-x-text-dev 132s golang-golang-x-time-dev golang-golang-x-tools-dev golang-google-api-dev 132s golang-google-cloud-compute-metadata-dev golang-google-cloud-dev 132s golang-google-genproto-dev golang-google-grpc-dev golang-google-protobuf-dev 132s golang-gopkg-alecthomas-kingpin.v2-dev golang-gopkg-check.v1-dev 132s golang-gopkg-ini.v1-dev golang-gopkg-rethinkdb-rethinkdb-go.v6-dev 132s golang-gopkg-yaml.v2-dev golang-gopkg-yaml.v3-dev golang-k8s-klog-dev 132s golang-rsc-binaryregexp-dev golang-src intltool-debian libarchive-zip-perl 132s libasan8 libcap-dev libcc1-0 libdebhelper-perl 132s libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 libisl23 libitm1 132s libltdl-dev libltdl7 libmpc3 libnspr4-dev libnss3-dev libpkgconf3 132s libprotobuf-dev libprotobuf-lite32t64 libprotobuf32t64 libprotoc32t64 132s libsqlite3-dev libstdc++-14-dev libsystemd-dev libtool libubsan1 m4 notary 132s pkgconf pkgconf-bin po-debconf protobuf-compiler protoc-gen-go-1-5 132s protoc-gen-go-grpc tzdata-legacy zlib1g-dev 132s 0 upgraded, 241 newly installed, 0 to remove and 0 not upgraded. 132s Need to get 211 MB of archives. 132s After this operation, 1236 MB of additional disk space will be used. 132s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-sys-dev all 0.22.0-1 [457 kB] 133s Get:2 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-sirupsen-logrus-dev all 1.9.0-1 [43.8 kB] 133s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 133s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 133s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 133s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 133s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 133s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 133s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 133s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 134s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 134s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 134s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 134s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 134s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 134s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 134s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 134s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 134s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 134s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 134s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 135s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 135s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 135s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 135s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 135s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 135s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 135s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 135s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 135s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 135s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 135s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 135s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 135s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 135s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 135s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 135s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 135s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 135s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 135s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 135s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 135s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x golang-1.23-src all 1.23.6-4 [19.8 MB] 135s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x golang-1.23-go s390x 1.23.6-4 [26.3 MB] 136s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x golang-src all 2:1.23~2 [5102 B] 136s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x golang-go s390x 2:1.23~2 [44.0 kB] 136s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-any s390x 2:1.23~2 [2838 B] 136s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-filippo-edwards25519-dev all 1.0.0~rc1+git20210721-0.1 [34.6 kB] 136s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-exp-dev all 0.0~git20231006.7918f67-1 [109 kB] 136s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-antlr-antlr4-dev all 4.11.1+ds-2 [99.9 kB] 136s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cloudflare-backoff-dev all 0.0~git20161212.647f3cd-2 [5408 B] 136s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-pmezard-go-difflib-dev all 1.0.0-3 [12.4 kB] 136s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-shurcool-sanitized-anchor-name-dev all 1.0.0-3 [3590 B] 136s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-russross-blackfriday-v2-dev all 2.1.0-1 [79.6 kB] 136s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cpuguy83-go-md2man-v2-dev all 2.0.4-1 [11.0 kB] 136s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-creack-pty-dev all 1.1.21-1 [14.8 kB] 136s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-opencontainers-go-digest-dev all 1.0.0-2 [12.4 kB] 136s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-distribution-reference-dev all 0.6.0-4 [18.9 kB] 136s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-felixge-httpsnoop-dev all 1.0.3-3 [8668 B] 136s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-logfmt-logfmt-dev all 0.5.0-2 [12.8 kB] 136s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-kit-log-dev all 0.2.1-1 [27.4 kB] 136s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-logr-logr-dev all 1.4.2-2 [36.0 kB] 136s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-text-dev all 0.16.0-1 [4603 kB] 136s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-playground-locales-dev all 0.14.0-3 [440 kB] 136s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-playground-universal-translator-dev all 0.17.0-2 [14.5 kB] 136s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-davecgh-go-spew-dev all 1.1.1-3 [31.1 kB] 136s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-stretchr-objx-dev all 0.5.2-1 [26.5 kB] 136s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-yaml.v3-dev all 3.0.1-3 [76.1 kB] 136s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-stretchr-testify-dev all 1.9.0-1 [75.6 kB] 136s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-leodido-go-urn-dev all 1.2.1-3 [10.2 kB] 136s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-term-dev all 0.22.0-1 [14.6 kB] 136s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-crypto-dev all 1:0.25.0-1 [1724 kB] 136s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-playground-validator-v10-dev all 10.4.1-4 [96.3 kB] 136s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-go-cmp-dev all 0.6.0-1 [89.8 kB] 136s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-protobuf-dev all 1.33.0-1 [632 kB] 136s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-golang-protobuf-1-5-dev all 1.5.4-1 [140 kB] 136s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-stoewer-go-strcase-dev all 1.2.0-4 [5596 B] 136s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-uuid-dev all 1.6.0-1 [20.4 kB] 136s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-glog-dev all 1.2.4-1 [32.9 kB] 137s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-golang-groupcache-dev all 0.0~git20210331.41bb18b-1 [23.5 kB] 137s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-net-dev all 1:0.27.0-1 [935 kB] 137s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-go.opencensus-dev all 0.24.0-2 [136 kB] 137s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-oauth2-dev all 0.15.0-1 [38.8 kB] 137s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-cloud-compute-metadata-dev all 0.56.0-5 [17.7 kB] 137s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-oauth2-google-dev all 0.15.0-1 [46.8 kB] 137s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-sync-dev all 0.7.0-1 [19.5 kB] 137s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-golang-mock-dev all 1.6.0-2build1 [48.7 kB] 137s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-btree-dev all 1.0.1-1 [13.7 kB] 137s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-martian-dev all 3.3.2-3 [111 kB] 137s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-chzyer-readline-dev all 1.4.39.g2972be2-3 [30.2 kB] 137s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-ianlancetaylor-demangle-dev all 0.0~git20200824.28f6c0f-2 [50.2 kB] 137s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-pprof-dev all 0.0~git20211008.947d60d-1 [1067 kB] 137s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-googleapis-gax-go-dev all 2.14.1-1 [35.4 kB] 137s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-time-dev all 0.5.0-1 [13.2 kB] 137s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-api-dev all 0.61.0-5 [5051 kB] 137s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-rsc-binaryregexp-dev all 0.2.0-3 [424 kB] 137s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-cloud-dev all 0.56.0-5 [797 kB] 137s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-grpc-dev all 1.64.0-6 [1247 kB] 137s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-google-genproto-dev all 0.0~git20210726.e7812ac-4 [5100 kB] 138s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-cel-go-dev all 0.18.2+ds-5 [408 kB] 138s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-go-querystring-dev all 1.1.0-2 [9422 B] 138s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-go-github-dev all 60.0.0-1 [225 kB] 138s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-hashicorp-golang-lru-v2-dev all 2.0.7-2 [21.2 kB] 138s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jcmturner-aescts.v2-dev all 2.0.0-2 [4814 B] 138s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jcmturner-dnsutils.v2-dev all 2.0.0-2 [3804 B] 138s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jcmturner-gofork-dev all 1.0.0-4 [25.8 kB] 138s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-hashicorp-go-uuid-dev all 1.0.3-1 [8752 B] 138s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jcmturner-goidentity.v6-dev all 6.0.1-2 [3668 B] 138s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-gorilla-securecookie-dev all 1.1.2-1 [14.3 kB] 138s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-gorilla-sessions-dev all 1.2.1-1 [13.1 kB] 138s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jcmturner-rpc.v2-dev all 2.0.3-2 [25.4 kB] 138s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jcmturner-gokrb5.v8-dev all 8.4.3-2 [123 kB] 138s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jessevdk-go-flags-dev all 1.4.0-6 [49.2 kB] 138s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jpillora-backoff-dev all 1.0.0-1.1 [3744 B] 138s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-modern-go-concurrent-dev all 1.0.3-1.1 [4708 B] 138s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-modern-go-reflect2-dev all 1.0.2-2 [11.0 kB] 138s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-json-iterator-go-dev all 1.1.12-2 [63.9 kB] 138s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-mattn-go-isatty-dev all 0.0.20-1 [6204 B] 138s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-munnerz-goautoneg-dev all 0.0~git20191010.a7dc8b6-2 [4348 B] 138s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-beorn7-perks-dev all 1.0.1-1 [12.2 kB] 138s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cespare-xxhash-dev all 2.3.0-1 [11.1 kB] 138s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-klauspost-compress-dev all 1.17.11+ds1-1 [33.5 MB] 142s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kylelemons-godebug-dev all 1.1.0-2 [14.9 kB] 142s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-client-model-dev all 0.6.0-1 [11.5 kB] 142s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-yaml.v2-dev all 2.4.0-4 [62.6 kB] 142s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jmespath-go-jmespath-dev all 0.4.0-2 [93.9 kB] 142s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-aws-aws-sdk-go-dev all 1.49.0-2 [12.3 MB] 144s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-julienschmidt-httprouter-dev all 1.3.0-2 [19.4 kB] 144s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-alecthomas-units-dev all 0.0~git20240626.61d1e34-1 [9232 B] 144s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-alecthomas-kingpin.v2-dev all 2.2.6-4 [43.6 kB] 144s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-common-dev all 0.62.0-2 [122 kB] 144s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-procfs-dev all 0.14.0-1 [187 kB] 144s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-prometheus-client-golang-dev all 1.20.5-1 [183 kB] 144s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-mwitkow-go-conntrack-dev all 0.0~git20190716.2f06839-3 [15.1 kB] 144s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-nkovacs-streamquote-dev all 1.0.0-5 [5576 B] 144s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-op-go-logging-dev all 1+git20160315.970db52-2 [17.1 kB] 144s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-pelletier-go-toml.v2-dev all 2.2.1-1 [877 kB] 144s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-stathat-go-dev all 0.0~git20130314.0.01d012b-2.1 [5336 B] 144s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-rcrowley-go-metrics-dev all 0.0~git20180125.8732c61-3 [29.5 kB] 144s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-mod-dev all 0.19.0-1 [106 kB] 144s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-yuin-goldmark-dev all 1.7.4-1 [119 kB] 144s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-golang-x-tools-dev all 1:0.22.0+ds-1 [1581 kB] 144s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-rogpeppe-go-internal-dev all 1.12.0-3 [105 kB] 144s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-gin-contrib-sse-dev all 0.1.0-2 [6864 B] 144s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-ugorji-go-codec-dev all 1.2.8-1build1 [241 kB] 144s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-gin-gonic-gin-dev all 1.8.1-2 [99.7 kB] 144s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-rs-cors-dev all 1.7.0-4 [14.3 kB] 144s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-subosito-gotenv-dev all 1.3.0-1 [8808 B] 144s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-transparency-dev-merkle-dev all 0.0.2-2 [30.3 kB] 144s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-valyala-bytebufferpool-dev all 1.0.0-4 [6896 B] 144s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-valyala-fasttemplate-dev all 1.2.2+ds1-2 [9618 B] 144s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-weppos-publicsuffix-go-dev all 0.30.1-1 [61.0 kB] 144s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-zmap-rc2-dev all 0.0~git20190804.abaa705-4 [4612 B] 144s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-mreiferson-go-httpclient-dev all 0.0~git20160630.0.31f0106-3 [6708 B] 144s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kr-text-dev all 0.2.0-2 [10.3 kB] 144s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kr-pretty-dev all 0.3.1-1 [12.1 kB] 144s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-check.v1-dev all 0.0+git20200902.038fdea-1 [31.7 kB] 144s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-zmap-zcrypto-dev all 0.0~git20240512.0fef58d-2 [783 kB] 144s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-burntsushi-toml-dev all 1.4.0-1 [119 kB] 144s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-pelletier-go-toml-dev all 1.9.5-1build1 [79.6 kB] 144s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-zmap-zlint-dev all 3.6.2-4 [206 kB] 144s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-bmizerany-assert-dev all 0.0~git20120716-4 [4108 B] 144s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-hailocab-go-hostpool-dev all 0.0~git20160125.0.e80d13c-1.1 [7932 B] 144s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-opentracing-opentracing-go-dev all 1.2.0-2 [28.5 kB] 144s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-rethinkdb-rethinkdb-go.v6-dev all 6.2.1-3 [99.2 kB] 144s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-k8s-klog-dev all 2.130.1-1 [80.6 kB] 144s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libcap-dev s390x 1:2.66-5ubuntu3 [563 kB] 144s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 144s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl-dev s390x 2.5.4-3build1 [173 kB] 144s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libnspr4-dev s390x 2:4.36-1ubuntu1 [229 kB] 144s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x libnss3-dev s390x 2:3.106-1ubuntu1 [255 kB] 144s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 144s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-lite32t64 s390x 3.21.12-10build1 [238 kB] 144s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf32t64 s390x 3.21.12-10build1 [944 kB] 145s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libprotoc32t64 s390x 3.21.12-10build1 [695 kB] 145s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libsqlite3-dev s390x 3.46.1-1 [975 kB] 145s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x libsystemd-dev s390x 257.2-3ubuntu1 [1424 kB] 145s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 145s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 145s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 145s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x libprotobuf-dev s390x 3.21.12-10build1 [1433 kB] 145s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x protobuf-compiler s390x 3.21.12-10build1 [29.1 kB] 145s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x protoc-gen-go-1-5 s390x 1.5.4-1 [1474 kB] 145s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x protoc-gen-go-grpc s390x 1.64.0-6 [1418 kB] 145s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2024b-6ubuntu1 [99.3 kB] 145s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x dh-golang all 1.62 [25.2 kB] 145s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-dbus-dev all 5.1.0-1 [65.0 kB] 145s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-akavel-rsrc-dev all 1:0.8.0-2 [12.4 kB] 145s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-bugsnag-panicwrap-dev all 1.2.0-2 [10.8 kB] 146s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-pkg-errors-dev all 0.9.1-3 [13.2 kB] 146s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-bugsnag-bugsnag-go-dev all 2.2.0-1 [50.0 kB] 146s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cloudflare-go-metrics-dev all 0.0~git20151117.0.6a9aea3-4 [28.7 kB] 146s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-coreos-go-systemd-dev all 22.5.0-1 [58.5 kB] 146s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cloudflare-redoctober-dev all 0.0~git20161017.0.78e9720-5build1 [70.3 kB] 146s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-daaku-go.zipexe-dev all 1.0.1-2 [4088 B] 146s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-geertjohan-go.incremental-dev all 1.0.0-2 [6460 B] 146s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-go-flags-dev all 1.4.0-6 [1874 B] 146s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-geertjohan-go.rice-dev all 1.0.2-1build1 [68.5 kB] 146s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-gorilla-mux-dev all 1.8.1-1 [47.3 kB] 146s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-go-sql-driver-mysql-dev all 1.8.1-3 [78.5 kB] 146s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-lib-pq-dev all 1.10.9-2 [89.1 kB] 146s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-mattn-go-sqlite3-dev s390x 1.14.24~ds1-1 [86.1 kB] 146s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jmoiron-sqlx-dev all 1.3.5-1 [44.7 kB] 146s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-juju-ratelimit-dev all 1.0.1-1.1 [9040 B] 146s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-pflag-dev all 1.0.6~git20210604-d5e0c0615ace-1 [43.6 kB] 146s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-fsnotify-fsnotify-dev all 1.8.0-1 [55.4 kB] 146s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-hashicorp-hcl-dev all 1.0.0-1.1 [58.9 kB] 146s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-magiconair-properties-dev all 1.8.7-1 [27.3 kB] 146s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-mitchellh-mapstructure-dev all 1.5.0+git20231216.8508981-1 [28.3 kB] 146s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kr-fs-dev all 0.1.0-2 [6344 B] 146s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-pkg-sftp-dev all 1.13.6-1 [104 kB] 146s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-afero-dev all 1.11.0-1 [59.6 kB] 146s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-cast-dev all 1.6.0-2 [14.4 kB] 146s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-jwalterweatherman-dev all 1.1.0+really1.1.0-2 [6828 B] 146s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-gopkg-ini.v1-dev all 1.67.0-1 [40.8 kB] 146s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-viper-dev all 1.12.0-1 [71.0 kB] 146s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-spf13-cobra-dev all 1.8.1-1 [76.2 kB] 146s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-google-certificate-transparency-dev all 1.3.1-2 [674 kB] 146s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jmhodges-clock-dev all 1.1-1 [7312 B] 146s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kisielk-sqlstruct-dev all 0.0~git20150917.0.0b86a3e-2.1 [6348 B] 146s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-kisom-goutils-dev all 0.0~git20161101.0.858c9cb-2.1 [29.8 kB] 146s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-cloudflare-cfssl-dev all 1.6.5-2 [1047 kB] 146s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-denisenkom-go-mssqldb-dev all 0.0~git20170717.0.8fccfc8-7 [279 kB] 146s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-docker-go-metrics-dev all 0.0.1-2 [19.0 kB] 147s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-docker-libtrust-dev all 0.0~git20160708.aabc10e-1 [32.3 kB] 147s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-garyburd-redigo-dev all 0.0~git20150901.0.d8dbe4d-2.1 [28.2 kB] 147s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-gorilla-handlers-dev all 1.5.2-1 [21.4 kB] 147s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-ncw-swift-dev all 1.0.53-2 [55.4 kB] 147s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-xeipuuv-gojsonpointer-dev all 0.0~git20190905.02993c4-3 [5802 B] 147s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-xeipuuv-gojsonreference-dev all 0.0~git20180127.bd5ef7b-3 [5056 B] 147s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-xeipuuv-gojsonschema-dev all 1.2.0-3 [46.2 kB] 147s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-opencontainers-image-spec-dev all 1.1.0-2 [36.9 kB] 147s Get:232 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-docker-distribution-dev all 2.8.3+ds1-2 [254 kB] 147s Get:233 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-docker-go-connections-dev all 0.4.0-4 [26.4 kB] 147s Get:234 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-docker-go-dev all 1.5.2~git20160303.d30aec9-1 [167 kB] 147s Get:235 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-dvsekhvalnov-jose2go-dev all 1.5-1 [55.7 kB] 147s Get:236 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jinzhu-inflection-dev all 1.0.0-1 [6124 B] 147s Get:237 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-jinzhu-gorm-dev all 1.9.6-2 [82.2 kB] 147s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-miekg-pkcs11-dev all 1.0.3+dfsg1-3 [34.1 kB] 147s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x golang-github-shopify-logrus-bugsnag-dev all 0.0~git20171204.577dee2-3 [5034 B] 147s Get:240 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x golang-github-docker-notary-dev all 0.7.0+git20240416.9d2b3b3+ds1-3 [400 kB] 147s Get:241 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x notary s390x 0.7.0+git20240416.9d2b3b3+ds1-3 [19.4 MB] 151s Fetched 211 MB in 18s (11.7 MB/s) 151s Selecting previously unselected package golang-golang-x-sys-dev. 151s (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.) 151s Preparing to unpack .../000-golang-golang-x-sys-dev_0.22.0-1_all.deb ... 151s Unpacking golang-golang-x-sys-dev (0.22.0-1) ... 151s Selecting previously unselected package golang-github-sirupsen-logrus-dev. 151s Preparing to unpack .../001-golang-github-sirupsen-logrus-dev_1.9.0-1_all.deb ... 151s Unpacking golang-github-sirupsen-logrus-dev (1.9.0-1) ... 151s Selecting previously unselected package m4. 151s Preparing to unpack .../002-m4_1.4.19-5_s390x.deb ... 151s Unpacking m4 (1.4.19-5) ... 151s Selecting previously unselected package autoconf. 151s Preparing to unpack .../003-autoconf_2.72-3_all.deb ... 151s Unpacking autoconf (2.72-3) ... 151s Selecting previously unselected package autotools-dev. 151s Preparing to unpack .../004-autotools-dev_20220109.1_all.deb ... 151s Unpacking autotools-dev (20220109.1) ... 151s Selecting previously unselected package automake. 151s Preparing to unpack .../005-automake_1%3a1.17-3_all.deb ... 151s Unpacking automake (1:1.17-3) ... 151s Selecting previously unselected package autopoint. 151s Preparing to unpack .../006-autopoint_0.23.1-1_all.deb ... 151s Unpacking autopoint (0.23.1-1) ... 151s Selecting previously unselected package libisl23:s390x. 151s Preparing to unpack .../007-libisl23_0.27-1_s390x.deb ... 151s Unpacking libisl23:s390x (0.27-1) ... 151s Selecting previously unselected package libmpc3:s390x. 151s Preparing to unpack .../008-libmpc3_1.3.1-1build2_s390x.deb ... 151s Unpacking libmpc3:s390x (1.3.1-1build2) ... 151s Selecting previously unselected package cpp-14-s390x-linux-gnu. 151s Preparing to unpack .../009-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package cpp-14. 151s Preparing to unpack .../010-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package cpp-s390x-linux-gnu. 151s Preparing to unpack .../011-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 151s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 151s Selecting previously unselected package cpp. 151s Preparing to unpack .../012-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 151s Unpacking cpp (4:14.2.0-1ubuntu1) ... 151s Selecting previously unselected package libcc1-0:s390x. 151s Preparing to unpack .../013-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package libgomp1:s390x. 151s Preparing to unpack .../014-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package libitm1:s390x. 151s Preparing to unpack .../015-libitm1_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package libasan8:s390x. 151s Preparing to unpack .../016-libasan8_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package libubsan1:s390x. 151s Preparing to unpack .../017-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package libgcc-14-dev:s390x. 151s Preparing to unpack .../018-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 151s Selecting previously unselected package gcc-14-s390x-linux-gnu. 151s Preparing to unpack .../019-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 151s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package gcc-14. 152s Preparing to unpack .../020-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package gcc-s390x-linux-gnu. 152s Preparing to unpack .../021-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package gcc. 152s Preparing to unpack .../022-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking gcc (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package libstdc++-14-dev:s390x. 152s Preparing to unpack .../023-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package g++-14-s390x-linux-gnu. 152s Preparing to unpack .../024-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package g++-14. 152s Preparing to unpack .../025-g++-14_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking g++-14 (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package g++-s390x-linux-gnu. 152s Preparing to unpack .../026-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package g++. 152s Preparing to unpack .../027-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 152s Unpacking g++ (4:14.2.0-1ubuntu1) ... 152s Selecting previously unselected package build-essential. 152s Preparing to unpack .../028-build-essential_12.10ubuntu1_s390x.deb ... 152s Unpacking build-essential (12.10ubuntu1) ... 152s Selecting previously unselected package libdebhelper-perl. 152s Preparing to unpack .../029-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 152s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 152s Selecting previously unselected package libtool. 152s Preparing to unpack .../030-libtool_2.5.4-3build1_all.deb ... 152s Unpacking libtool (2.5.4-3build1) ... 152s Selecting previously unselected package dh-autoreconf. 152s Preparing to unpack .../031-dh-autoreconf_20_all.deb ... 152s Unpacking dh-autoreconf (20) ... 152s Selecting previously unselected package libarchive-zip-perl. 152s Preparing to unpack .../032-libarchive-zip-perl_1.68-1_all.deb ... 152s Unpacking libarchive-zip-perl (1.68-1) ... 152s Selecting previously unselected package libfile-stripnondeterminism-perl. 152s Preparing to unpack .../033-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 152s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 152s Selecting previously unselected package dh-strip-nondeterminism. 152s Preparing to unpack .../034-dh-strip-nondeterminism_1.14.1-2_all.deb ... 152s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 152s Selecting previously unselected package debugedit. 152s Preparing to unpack .../035-debugedit_1%3a5.1-2_s390x.deb ... 152s Unpacking debugedit (1:5.1-2) ... 152s Selecting previously unselected package dwz. 152s Preparing to unpack .../036-dwz_0.15-1build6_s390x.deb ... 152s Unpacking dwz (0.15-1build6) ... 152s Selecting previously unselected package gettext. 152s Preparing to unpack .../037-gettext_0.23.1-1_s390x.deb ... 152s Unpacking gettext (0.23.1-1) ... 152s Selecting previously unselected package intltool-debian. 152s Preparing to unpack .../038-intltool-debian_0.35.0+20060710.6_all.deb ... 152s Unpacking intltool-debian (0.35.0+20060710.6) ... 152s Selecting previously unselected package po-debconf. 152s Preparing to unpack .../039-po-debconf_1.0.21+nmu1_all.deb ... 152s Unpacking po-debconf (1.0.21+nmu1) ... 152s Selecting previously unselected package debhelper. 152s Preparing to unpack .../040-debhelper_13.24.1ubuntu2_all.deb ... 152s Unpacking debhelper (13.24.1ubuntu2) ... 152s Selecting previously unselected package golang-1.23-src. 152s Preparing to unpack .../041-golang-1.23-src_1.23.6-4_all.deb ... 152s Unpacking golang-1.23-src (1.23.6-4) ... 153s Selecting previously unselected package golang-1.23-go. 153s Preparing to unpack .../042-golang-1.23-go_1.23.6-4_s390x.deb ... 153s Unpacking golang-1.23-go (1.23.6-4) ... 154s Selecting previously unselected package golang-src. 154s Preparing to unpack .../043-golang-src_2%3a1.23~2_all.deb ... 154s Unpacking golang-src (2:1.23~2) ... 154s Selecting previously unselected package golang-go:s390x. 154s Preparing to unpack .../044-golang-go_2%3a1.23~2_s390x.deb ... 154s Unpacking golang-go:s390x (2:1.23~2) ... 154s Selecting previously unselected package golang-any:s390x. 154s Preparing to unpack .../045-golang-any_2%3a1.23~2_s390x.deb ... 154s Unpacking golang-any:s390x (2:1.23~2) ... 154s Selecting previously unselected package golang-filippo-edwards25519-dev. 154s Preparing to unpack .../046-golang-filippo-edwards25519-dev_1.0.0~rc1+git20210721-0.1_all.deb ... 154s Unpacking golang-filippo-edwards25519-dev (1.0.0~rc1+git20210721-0.1) ... 154s Selecting previously unselected package golang-golang-x-exp-dev. 154s Preparing to unpack .../047-golang-golang-x-exp-dev_0.0~git20231006.7918f67-1_all.deb ... 154s Unpacking golang-golang-x-exp-dev (0.0~git20231006.7918f67-1) ... 154s Selecting previously unselected package golang-github-antlr-antlr4-dev. 154s Preparing to unpack .../048-golang-github-antlr-antlr4-dev_4.11.1+ds-2_all.deb ... 154s Unpacking golang-github-antlr-antlr4-dev (4.11.1+ds-2) ... 154s Selecting previously unselected package golang-github-cloudflare-backoff-dev. 154s Preparing to unpack .../049-golang-github-cloudflare-backoff-dev_0.0~git20161212.647f3cd-2_all.deb ... 154s Unpacking golang-github-cloudflare-backoff-dev (0.0~git20161212.647f3cd-2) ... 154s Selecting previously unselected package golang-github-pmezard-go-difflib-dev. 154s Preparing to unpack .../050-golang-github-pmezard-go-difflib-dev_1.0.0-3_all.deb ... 154s Unpacking golang-github-pmezard-go-difflib-dev (1.0.0-3) ... 154s Selecting previously unselected package golang-github-shurcool-sanitized-anchor-name-dev. 154s Preparing to unpack .../051-golang-github-shurcool-sanitized-anchor-name-dev_1.0.0-3_all.deb ... 154s Unpacking golang-github-shurcool-sanitized-anchor-name-dev (1.0.0-3) ... 154s Selecting previously unselected package golang-github-russross-blackfriday-v2-dev. 154s Preparing to unpack .../052-golang-github-russross-blackfriday-v2-dev_2.1.0-1_all.deb ... 154s Unpacking golang-github-russross-blackfriday-v2-dev (2.1.0-1) ... 154s Selecting previously unselected package golang-github-cpuguy83-go-md2man-v2-dev. 154s Preparing to unpack .../053-golang-github-cpuguy83-go-md2man-v2-dev_2.0.4-1_all.deb ... 154s Unpacking golang-github-cpuguy83-go-md2man-v2-dev (2.0.4-1) ... 154s Selecting previously unselected package golang-github-creack-pty-dev. 154s Preparing to unpack .../054-golang-github-creack-pty-dev_1.1.21-1_all.deb ... 154s Unpacking golang-github-creack-pty-dev (1.1.21-1) ... 154s Selecting previously unselected package golang-github-opencontainers-go-digest-dev. 154s Preparing to unpack .../055-golang-github-opencontainers-go-digest-dev_1.0.0-2_all.deb ... 154s Unpacking golang-github-opencontainers-go-digest-dev (1.0.0-2) ... 154s Selecting previously unselected package golang-github-distribution-reference-dev. 154s Preparing to unpack .../056-golang-github-distribution-reference-dev_0.6.0-4_all.deb ... 154s Unpacking golang-github-distribution-reference-dev (0.6.0-4) ... 154s Selecting previously unselected package golang-github-felixge-httpsnoop-dev. 154s Preparing to unpack .../057-golang-github-felixge-httpsnoop-dev_1.0.3-3_all.deb ... 154s Unpacking golang-github-felixge-httpsnoop-dev (1.0.3-3) ... 154s Selecting previously unselected package golang-github-go-logfmt-logfmt-dev. 154s Preparing to unpack .../058-golang-github-go-logfmt-logfmt-dev_0.5.0-2_all.deb ... 154s Unpacking golang-github-go-logfmt-logfmt-dev (0.5.0-2) ... 154s Selecting previously unselected package golang-github-go-kit-log-dev. 154s Preparing to unpack .../059-golang-github-go-kit-log-dev_0.2.1-1_all.deb ... 154s Unpacking golang-github-go-kit-log-dev (0.2.1-1) ... 154s Selecting previously unselected package golang-github-go-logr-logr-dev. 154s Preparing to unpack .../060-golang-github-go-logr-logr-dev_1.4.2-2_all.deb ... 154s Unpacking golang-github-go-logr-logr-dev (1.4.2-2) ... 154s Selecting previously unselected package golang-golang-x-text-dev. 154s Preparing to unpack .../061-golang-golang-x-text-dev_0.16.0-1_all.deb ... 154s Unpacking golang-golang-x-text-dev (0.16.0-1) ... 154s Selecting previously unselected package golang-github-go-playground-locales-dev. 154s Preparing to unpack .../062-golang-github-go-playground-locales-dev_0.14.0-3_all.deb ... 154s Unpacking golang-github-go-playground-locales-dev (0.14.0-3) ... 155s Selecting previously unselected package golang-github-go-playground-universal-translator-dev. 155s Preparing to unpack .../063-golang-github-go-playground-universal-translator-dev_0.17.0-2_all.deb ... 155s Unpacking golang-github-go-playground-universal-translator-dev (0.17.0-2) ... 155s Selecting previously unselected package golang-github-davecgh-go-spew-dev. 155s Preparing to unpack .../064-golang-github-davecgh-go-spew-dev_1.1.1-3_all.deb ... 155s Unpacking golang-github-davecgh-go-spew-dev (1.1.1-3) ... 155s Selecting previously unselected package golang-github-stretchr-objx-dev. 155s Preparing to unpack .../065-golang-github-stretchr-objx-dev_0.5.2-1_all.deb ... 155s Unpacking golang-github-stretchr-objx-dev (0.5.2-1) ... 155s Selecting previously unselected package golang-gopkg-yaml.v3-dev. 155s Preparing to unpack .../066-golang-gopkg-yaml.v3-dev_3.0.1-3_all.deb ... 155s Unpacking golang-gopkg-yaml.v3-dev (3.0.1-3) ... 155s Selecting previously unselected package golang-github-stretchr-testify-dev. 155s Preparing to unpack .../067-golang-github-stretchr-testify-dev_1.9.0-1_all.deb ... 155s Unpacking golang-github-stretchr-testify-dev (1.9.0-1) ... 155s Selecting previously unselected package golang-github-leodido-go-urn-dev. 155s Preparing to unpack .../068-golang-github-leodido-go-urn-dev_1.2.1-3_all.deb ... 155s Unpacking golang-github-leodido-go-urn-dev (1.2.1-3) ... 155s Selecting previously unselected package golang-golang-x-term-dev. 155s Preparing to unpack .../069-golang-golang-x-term-dev_0.22.0-1_all.deb ... 155s Unpacking golang-golang-x-term-dev (0.22.0-1) ... 155s Selecting previously unselected package golang-golang-x-crypto-dev. 155s Preparing to unpack .../070-golang-golang-x-crypto-dev_1%3a0.25.0-1_all.deb ... 155s Unpacking golang-golang-x-crypto-dev (1:0.25.0-1) ... 155s Selecting previously unselected package golang-github-go-playground-validator-v10-dev. 155s Preparing to unpack .../071-golang-github-go-playground-validator-v10-dev_10.4.1-4_all.deb ... 155s Unpacking golang-github-go-playground-validator-v10-dev (10.4.1-4) ... 155s Selecting previously unselected package golang-github-google-go-cmp-dev. 155s Preparing to unpack .../072-golang-github-google-go-cmp-dev_0.6.0-1_all.deb ... 155s Unpacking golang-github-google-go-cmp-dev (0.6.0-1) ... 155s Selecting previously unselected package golang-google-protobuf-dev. 155s Preparing to unpack .../073-golang-google-protobuf-dev_1.33.0-1_all.deb ... 155s Unpacking golang-google-protobuf-dev (1.33.0-1) ... 155s Selecting previously unselected package golang-github-golang-protobuf-1-5-dev. 155s Preparing to unpack .../074-golang-github-golang-protobuf-1-5-dev_1.5.4-1_all.deb ... 155s Unpacking golang-github-golang-protobuf-1-5-dev (1.5.4-1) ... 155s Selecting previously unselected package golang-github-stoewer-go-strcase-dev. 155s Preparing to unpack .../075-golang-github-stoewer-go-strcase-dev_1.2.0-4_all.deb ... 155s Unpacking golang-github-stoewer-go-strcase-dev (1.2.0-4) ... 155s Selecting previously unselected package golang-github-google-uuid-dev. 155s Preparing to unpack .../076-golang-github-google-uuid-dev_1.6.0-1_all.deb ... 155s Unpacking golang-github-google-uuid-dev (1.6.0-1) ... 155s Selecting previously unselected package golang-glog-dev. 155s Preparing to unpack .../077-golang-glog-dev_1.2.4-1_all.deb ... 155s Unpacking golang-glog-dev (1.2.4-1) ... 155s Selecting previously unselected package golang-github-golang-groupcache-dev. 155s Preparing to unpack .../078-golang-github-golang-groupcache-dev_0.0~git20210331.41bb18b-1_all.deb ... 155s Unpacking golang-github-golang-groupcache-dev (0.0~git20210331.41bb18b-1) ... 155s Selecting previously unselected package golang-golang-x-net-dev. 155s Preparing to unpack .../079-golang-golang-x-net-dev_1%3a0.27.0-1_all.deb ... 155s Unpacking golang-golang-x-net-dev (1:0.27.0-1) ... 155s Selecting previously unselected package golang-go.opencensus-dev. 155s Preparing to unpack .../080-golang-go.opencensus-dev_0.24.0-2_all.deb ... 155s Unpacking golang-go.opencensus-dev (0.24.0-2) ... 155s Selecting previously unselected package golang-golang-x-oauth2-dev. 155s Preparing to unpack .../081-golang-golang-x-oauth2-dev_0.15.0-1_all.deb ... 155s Unpacking golang-golang-x-oauth2-dev (0.15.0-1) ... 155s Selecting previously unselected package golang-google-cloud-compute-metadata-dev. 155s Preparing to unpack .../082-golang-google-cloud-compute-metadata-dev_0.56.0-5_all.deb ... 155s Unpacking golang-google-cloud-compute-metadata-dev (0.56.0-5) ... 155s Selecting previously unselected package golang-golang-x-oauth2-google-dev. 155s Preparing to unpack .../083-golang-golang-x-oauth2-google-dev_0.15.0-1_all.deb ... 155s Unpacking golang-golang-x-oauth2-google-dev (0.15.0-1) ... 155s Selecting previously unselected package golang-golang-x-sync-dev. 155s Preparing to unpack .../084-golang-golang-x-sync-dev_0.7.0-1_all.deb ... 155s Unpacking golang-golang-x-sync-dev (0.7.0-1) ... 155s Selecting previously unselected package golang-github-golang-mock-dev. 155s Preparing to unpack .../085-golang-github-golang-mock-dev_1.6.0-2build1_all.deb ... 155s Unpacking golang-github-golang-mock-dev (1.6.0-2build1) ... 155s Selecting previously unselected package golang-github-google-btree-dev. 155s Preparing to unpack .../086-golang-github-google-btree-dev_1.0.1-1_all.deb ... 155s Unpacking golang-github-google-btree-dev (1.0.1-1) ... 155s Selecting previously unselected package golang-github-google-martian-dev. 155s Preparing to unpack .../087-golang-github-google-martian-dev_3.3.2-3_all.deb ... 155s Unpacking golang-github-google-martian-dev (3.3.2-3) ... 155s Selecting previously unselected package golang-github-chzyer-readline-dev. 155s Preparing to unpack .../088-golang-github-chzyer-readline-dev_1.4.39.g2972be2-3_all.deb ... 155s Unpacking golang-github-chzyer-readline-dev (1.4.39.g2972be2-3) ... 155s Selecting previously unselected package golang-github-ianlancetaylor-demangle-dev. 155s Preparing to unpack .../089-golang-github-ianlancetaylor-demangle-dev_0.0~git20200824.28f6c0f-2_all.deb ... 155s Unpacking golang-github-ianlancetaylor-demangle-dev (0.0~git20200824.28f6c0f-2) ... 155s Selecting previously unselected package golang-github-google-pprof-dev. 155s Preparing to unpack .../090-golang-github-google-pprof-dev_0.0~git20211008.947d60d-1_all.deb ... 155s Unpacking golang-github-google-pprof-dev (0.0~git20211008.947d60d-1) ... 155s Selecting previously unselected package golang-github-googleapis-gax-go-dev. 155s Preparing to unpack .../091-golang-github-googleapis-gax-go-dev_2.14.1-1_all.deb ... 155s Unpacking golang-github-googleapis-gax-go-dev (2.14.1-1) ... 155s Selecting previously unselected package golang-golang-x-time-dev. 155s Preparing to unpack .../092-golang-golang-x-time-dev_0.5.0-1_all.deb ... 155s Unpacking golang-golang-x-time-dev (0.5.0-1) ... 155s Selecting previously unselected package golang-google-api-dev. 155s Preparing to unpack .../093-golang-google-api-dev_0.61.0-5_all.deb ... 155s Unpacking golang-google-api-dev (0.61.0-5) ... 156s Selecting previously unselected package golang-rsc-binaryregexp-dev. 156s Preparing to unpack .../094-golang-rsc-binaryregexp-dev_0.2.0-3_all.deb ... 156s Unpacking golang-rsc-binaryregexp-dev (0.2.0-3) ... 156s Selecting previously unselected package golang-google-cloud-dev. 156s Preparing to unpack .../095-golang-google-cloud-dev_0.56.0-5_all.deb ... 156s Unpacking golang-google-cloud-dev (0.56.0-5) ... 156s Selecting previously unselected package golang-google-grpc-dev. 156s Preparing to unpack .../096-golang-google-grpc-dev_1.64.0-6_all.deb ... 156s Unpacking golang-google-grpc-dev (1.64.0-6) ... 156s Selecting previously unselected package golang-google-genproto-dev. 156s Preparing to unpack .../097-golang-google-genproto-dev_0.0~git20210726.e7812ac-4_all.deb ... 156s Unpacking golang-google-genproto-dev (0.0~git20210726.e7812ac-4) ... 156s Selecting previously unselected package golang-github-google-cel-go-dev. 156s Preparing to unpack .../098-golang-github-google-cel-go-dev_0.18.2+ds-5_all.deb ... 156s Unpacking golang-github-google-cel-go-dev (0.18.2+ds-5) ... 156s Selecting previously unselected package golang-github-google-go-querystring-dev. 156s Preparing to unpack .../099-golang-github-google-go-querystring-dev_1.1.0-2_all.deb ... 156s Unpacking golang-github-google-go-querystring-dev (1.1.0-2) ... 156s Selecting previously unselected package golang-github-google-go-github-dev. 156s Preparing to unpack .../100-golang-github-google-go-github-dev_60.0.0-1_all.deb ... 156s Unpacking golang-github-google-go-github-dev (60.0.0-1) ... 156s Selecting previously unselected package golang-github-hashicorp-golang-lru-v2-dev. 156s Preparing to unpack .../101-golang-github-hashicorp-golang-lru-v2-dev_2.0.7-2_all.deb ... 156s Unpacking golang-github-hashicorp-golang-lru-v2-dev (2.0.7-2) ... 156s Selecting previously unselected package golang-github-jcmturner-aescts.v2-dev. 156s Preparing to unpack .../102-golang-github-jcmturner-aescts.v2-dev_2.0.0-2_all.deb ... 156s Unpacking golang-github-jcmturner-aescts.v2-dev (2.0.0-2) ... 156s Selecting previously unselected package golang-github-jcmturner-dnsutils.v2-dev. 156s Preparing to unpack .../103-golang-github-jcmturner-dnsutils.v2-dev_2.0.0-2_all.deb ... 156s Unpacking golang-github-jcmturner-dnsutils.v2-dev (2.0.0-2) ... 156s Selecting previously unselected package golang-github-jcmturner-gofork-dev. 156s Preparing to unpack .../104-golang-github-jcmturner-gofork-dev_1.0.0-4_all.deb ... 156s Unpacking golang-github-jcmturner-gofork-dev (1.0.0-4) ... 156s Selecting previously unselected package golang-github-hashicorp-go-uuid-dev. 156s Preparing to unpack .../105-golang-github-hashicorp-go-uuid-dev_1.0.3-1_all.deb ... 156s Unpacking golang-github-hashicorp-go-uuid-dev (1.0.3-1) ... 156s Selecting previously unselected package golang-github-jcmturner-goidentity.v6-dev. 156s Preparing to unpack .../106-golang-github-jcmturner-goidentity.v6-dev_6.0.1-2_all.deb ... 156s Unpacking golang-github-jcmturner-goidentity.v6-dev (6.0.1-2) ... 156s Selecting previously unselected package golang-github-gorilla-securecookie-dev. 156s Preparing to unpack .../107-golang-github-gorilla-securecookie-dev_1.1.2-1_all.deb ... 156s Unpacking golang-github-gorilla-securecookie-dev (1.1.2-1) ... 156s Selecting previously unselected package golang-github-gorilla-sessions-dev. 156s Preparing to unpack .../108-golang-github-gorilla-sessions-dev_1.2.1-1_all.deb ... 156s Unpacking golang-github-gorilla-sessions-dev (1.2.1-1) ... 156s Selecting previously unselected package golang-github-jcmturner-rpc.v2-dev. 156s Preparing to unpack .../109-golang-github-jcmturner-rpc.v2-dev_2.0.3-2_all.deb ... 156s Unpacking golang-github-jcmturner-rpc.v2-dev (2.0.3-2) ... 156s Selecting previously unselected package golang-github-jcmturner-gokrb5.v8-dev. 156s Preparing to unpack .../110-golang-github-jcmturner-gokrb5.v8-dev_8.4.3-2_all.deb ... 156s Unpacking golang-github-jcmturner-gokrb5.v8-dev (8.4.3-2) ... 157s Selecting previously unselected package golang-github-jessevdk-go-flags-dev. 157s Preparing to unpack .../111-golang-github-jessevdk-go-flags-dev_1.4.0-6_all.deb ... 157s Unpacking golang-github-jessevdk-go-flags-dev (1.4.0-6) ... 157s Selecting previously unselected package golang-github-jpillora-backoff-dev. 157s Preparing to unpack .../112-golang-github-jpillora-backoff-dev_1.0.0-1.1_all.deb ... 157s Unpacking golang-github-jpillora-backoff-dev (1.0.0-1.1) ... 157s Selecting previously unselected package golang-github-modern-go-concurrent-dev. 157s Preparing to unpack .../113-golang-github-modern-go-concurrent-dev_1.0.3-1.1_all.deb ... 157s Unpacking golang-github-modern-go-concurrent-dev (1.0.3-1.1) ... 157s Selecting previously unselected package golang-github-modern-go-reflect2-dev. 157s Preparing to unpack .../114-golang-github-modern-go-reflect2-dev_1.0.2-2_all.deb ... 157s Unpacking golang-github-modern-go-reflect2-dev (1.0.2-2) ... 157s Selecting previously unselected package golang-github-json-iterator-go-dev. 157s Preparing to unpack .../115-golang-github-json-iterator-go-dev_1.1.12-2_all.deb ... 157s Unpacking golang-github-json-iterator-go-dev (1.1.12-2) ... 157s Selecting previously unselected package golang-github-mattn-go-isatty-dev. 157s Preparing to unpack .../116-golang-github-mattn-go-isatty-dev_0.0.20-1_all.deb ... 157s Unpacking golang-github-mattn-go-isatty-dev (0.0.20-1) ... 157s Selecting previously unselected package golang-github-munnerz-goautoneg-dev. 157s Preparing to unpack .../117-golang-github-munnerz-goautoneg-dev_0.0~git20191010.a7dc8b6-2_all.deb ... 157s Unpacking golang-github-munnerz-goautoneg-dev (0.0~git20191010.a7dc8b6-2) ... 157s Selecting previously unselected package golang-github-beorn7-perks-dev. 157s Preparing to unpack .../118-golang-github-beorn7-perks-dev_1.0.1-1_all.deb ... 157s Unpacking golang-github-beorn7-perks-dev (1.0.1-1) ... 157s Selecting previously unselected package golang-github-cespare-xxhash-dev. 157s Preparing to unpack .../119-golang-github-cespare-xxhash-dev_2.3.0-1_all.deb ... 157s Unpacking golang-github-cespare-xxhash-dev (2.3.0-1) ... 157s Selecting previously unselected package golang-github-klauspost-compress-dev. 157s Preparing to unpack .../120-golang-github-klauspost-compress-dev_1.17.11+ds1-1_all.deb ... 157s Unpacking golang-github-klauspost-compress-dev (1.17.11+ds1-1) ... 157s Selecting previously unselected package golang-github-kylelemons-godebug-dev. 157s Preparing to unpack .../121-golang-github-kylelemons-godebug-dev_1.1.0-2_all.deb ... 157s Unpacking golang-github-kylelemons-godebug-dev (1.1.0-2) ... 157s Selecting previously unselected package golang-github-prometheus-client-model-dev. 157s Preparing to unpack .../122-golang-github-prometheus-client-model-dev_0.6.0-1_all.deb ... 157s Unpacking golang-github-prometheus-client-model-dev (0.6.0-1) ... 157s Selecting previously unselected package golang-gopkg-yaml.v2-dev. 157s Preparing to unpack .../123-golang-gopkg-yaml.v2-dev_2.4.0-4_all.deb ... 157s Unpacking golang-gopkg-yaml.v2-dev (2.4.0-4) ... 157s Selecting previously unselected package golang-github-jmespath-go-jmespath-dev. 157s Preparing to unpack .../124-golang-github-jmespath-go-jmespath-dev_0.4.0-2_all.deb ... 157s Unpacking golang-github-jmespath-go-jmespath-dev (0.4.0-2) ... 157s Selecting previously unselected package golang-github-aws-aws-sdk-go-dev. 157s Preparing to unpack .../125-golang-github-aws-aws-sdk-go-dev_1.49.0-2_all.deb ... 157s Unpacking golang-github-aws-aws-sdk-go-dev (1.49.0-2) ... 158s Selecting previously unselected package golang-github-julienschmidt-httprouter-dev. 158s Preparing to unpack .../126-golang-github-julienschmidt-httprouter-dev_1.3.0-2_all.deb ... 158s Unpacking golang-github-julienschmidt-httprouter-dev (1.3.0-2) ... 158s Selecting previously unselected package golang-github-alecthomas-units-dev. 158s Preparing to unpack .../127-golang-github-alecthomas-units-dev_0.0~git20240626.61d1e34-1_all.deb ... 158s Unpacking golang-github-alecthomas-units-dev (0.0~git20240626.61d1e34-1) ... 158s Selecting previously unselected package golang-gopkg-alecthomas-kingpin.v2-dev. 158s Preparing to unpack .../128-golang-gopkg-alecthomas-kingpin.v2-dev_2.2.6-4_all.deb ... 158s Unpacking golang-gopkg-alecthomas-kingpin.v2-dev (2.2.6-4) ... 158s Selecting previously unselected package golang-github-prometheus-common-dev. 158s Preparing to unpack .../129-golang-github-prometheus-common-dev_0.62.0-2_all.deb ... 158s Unpacking golang-github-prometheus-common-dev (0.62.0-2) ... 158s Selecting previously unselected package golang-github-prometheus-procfs-dev. 158s Preparing to unpack .../130-golang-github-prometheus-procfs-dev_0.14.0-1_all.deb ... 158s Unpacking golang-github-prometheus-procfs-dev (0.14.0-1) ... 158s Selecting previously unselected package golang-github-prometheus-client-golang-dev. 158s Preparing to unpack .../131-golang-github-prometheus-client-golang-dev_1.20.5-1_all.deb ... 158s Unpacking golang-github-prometheus-client-golang-dev (1.20.5-1) ... 158s Selecting previously unselected package golang-github-mwitkow-go-conntrack-dev. 158s Preparing to unpack .../132-golang-github-mwitkow-go-conntrack-dev_0.0~git20190716.2f06839-3_all.deb ... 158s Unpacking golang-github-mwitkow-go-conntrack-dev (0.0~git20190716.2f06839-3) ... 158s Selecting previously unselected package golang-github-nkovacs-streamquote-dev. 158s Preparing to unpack .../133-golang-github-nkovacs-streamquote-dev_1.0.0-5_all.deb ... 158s Unpacking golang-github-nkovacs-streamquote-dev (1.0.0-5) ... 158s Selecting previously unselected package golang-github-op-go-logging-dev. 158s Preparing to unpack .../134-golang-github-op-go-logging-dev_1+git20160315.970db52-2_all.deb ... 158s Unpacking golang-github-op-go-logging-dev (1+git20160315.970db52-2) ... 158s Selecting previously unselected package golang-github-pelletier-go-toml.v2-dev. 158s Preparing to unpack .../135-golang-github-pelletier-go-toml.v2-dev_2.2.1-1_all.deb ... 158s Unpacking golang-github-pelletier-go-toml.v2-dev (2.2.1-1) ... 158s Selecting previously unselected package golang-github-stathat-go-dev. 158s Preparing to unpack .../136-golang-github-stathat-go-dev_0.0~git20130314.0.01d012b-2.1_all.deb ... 158s Unpacking golang-github-stathat-go-dev (0.0~git20130314.0.01d012b-2.1) ... 158s Selecting previously unselected package golang-github-rcrowley-go-metrics-dev. 158s Preparing to unpack .../137-golang-github-rcrowley-go-metrics-dev_0.0~git20180125.8732c61-3_all.deb ... 158s Unpacking golang-github-rcrowley-go-metrics-dev (0.0~git20180125.8732c61-3) ... 158s Selecting previously unselected package golang-golang-x-mod-dev. 158s Preparing to unpack .../138-golang-golang-x-mod-dev_0.19.0-1_all.deb ... 158s Unpacking golang-golang-x-mod-dev (0.19.0-1) ... 158s Selecting previously unselected package golang-github-yuin-goldmark-dev. 158s Preparing to unpack .../139-golang-github-yuin-goldmark-dev_1.7.4-1_all.deb ... 158s Unpacking golang-github-yuin-goldmark-dev (1.7.4-1) ... 158s Selecting previously unselected package golang-golang-x-tools-dev. 158s Preparing to unpack .../140-golang-golang-x-tools-dev_1%3a0.22.0+ds-1_all.deb ... 158s Unpacking golang-golang-x-tools-dev (1:0.22.0+ds-1) ... 158s Selecting previously unselected package golang-github-rogpeppe-go-internal-dev. 158s Preparing to unpack .../141-golang-github-rogpeppe-go-internal-dev_1.12.0-3_all.deb ... 158s Unpacking golang-github-rogpeppe-go-internal-dev (1.12.0-3) ... 158s Selecting previously unselected package golang-github-gin-contrib-sse-dev. 158s Preparing to unpack .../142-golang-github-gin-contrib-sse-dev_0.1.0-2_all.deb ... 158s Unpacking golang-github-gin-contrib-sse-dev (0.1.0-2) ... 158s Selecting previously unselected package golang-github-ugorji-go-codec-dev. 158s Preparing to unpack .../143-golang-github-ugorji-go-codec-dev_1.2.8-1build1_all.deb ... 158s Unpacking golang-github-ugorji-go-codec-dev (1.2.8-1build1) ... 158s Selecting previously unselected package golang-github-gin-gonic-gin-dev. 158s Preparing to unpack .../144-golang-github-gin-gonic-gin-dev_1.8.1-2_all.deb ... 158s Unpacking golang-github-gin-gonic-gin-dev (1.8.1-2) ... 158s Selecting previously unselected package golang-github-rs-cors-dev. 158s Preparing to unpack .../145-golang-github-rs-cors-dev_1.7.0-4_all.deb ... 158s Unpacking golang-github-rs-cors-dev (1.7.0-4) ... 158s Selecting previously unselected package golang-github-subosito-gotenv-dev. 158s Preparing to unpack .../146-golang-github-subosito-gotenv-dev_1.3.0-1_all.deb ... 158s Unpacking golang-github-subosito-gotenv-dev (1.3.0-1) ... 158s Selecting previously unselected package golang-github-transparency-dev-merkle-dev. 158s Preparing to unpack .../147-golang-github-transparency-dev-merkle-dev_0.0.2-2_all.deb ... 158s Unpacking golang-github-transparency-dev-merkle-dev (0.0.2-2) ... 158s Selecting previously unselected package golang-github-valyala-bytebufferpool-dev. 158s Preparing to unpack .../148-golang-github-valyala-bytebufferpool-dev_1.0.0-4_all.deb ... 158s Unpacking golang-github-valyala-bytebufferpool-dev (1.0.0-4) ... 158s Selecting previously unselected package golang-github-valyala-fasttemplate-dev. 158s Preparing to unpack .../149-golang-github-valyala-fasttemplate-dev_1.2.2+ds1-2_all.deb ... 158s Unpacking golang-github-valyala-fasttemplate-dev (1.2.2+ds1-2) ... 158s Selecting previously unselected package golang-github-weppos-publicsuffix-go-dev. 158s Preparing to unpack .../150-golang-github-weppos-publicsuffix-go-dev_0.30.1-1_all.deb ... 158s Unpacking golang-github-weppos-publicsuffix-go-dev (0.30.1-1) ... 158s Selecting previously unselected package golang-github-zmap-rc2-dev. 158s Preparing to unpack .../151-golang-github-zmap-rc2-dev_0.0~git20190804.abaa705-4_all.deb ... 158s Unpacking golang-github-zmap-rc2-dev (0.0~git20190804.abaa705-4) ... 158s Selecting previously unselected package golang-github-mreiferson-go-httpclient-dev. 158s Preparing to unpack .../152-golang-github-mreiferson-go-httpclient-dev_0.0~git20160630.0.31f0106-3_all.deb ... 158s Unpacking golang-github-mreiferson-go-httpclient-dev (0.0~git20160630.0.31f0106-3) ... 158s Selecting previously unselected package golang-github-kr-text-dev. 158s Preparing to unpack .../153-golang-github-kr-text-dev_0.2.0-2_all.deb ... 158s Unpacking golang-github-kr-text-dev (0.2.0-2) ... 158s Selecting previously unselected package golang-github-kr-pretty-dev. 158s Preparing to unpack .../154-golang-github-kr-pretty-dev_0.3.1-1_all.deb ... 158s Unpacking golang-github-kr-pretty-dev (0.3.1-1) ... 158s Selecting previously unselected package golang-gopkg-check.v1-dev. 158s Preparing to unpack .../155-golang-gopkg-check.v1-dev_0.0+git20200902.038fdea-1_all.deb ... 158s Unpacking golang-gopkg-check.v1-dev (0.0+git20200902.038fdea-1) ... 158s Selecting previously unselected package golang-github-zmap-zcrypto-dev. 158s Preparing to unpack .../156-golang-github-zmap-zcrypto-dev_0.0~git20240512.0fef58d-2_all.deb ... 158s Unpacking golang-github-zmap-zcrypto-dev (0.0~git20240512.0fef58d-2) ... 159s Selecting previously unselected package golang-github-burntsushi-toml-dev. 159s Preparing to unpack .../157-golang-github-burntsushi-toml-dev_1.4.0-1_all.deb ... 159s Unpacking golang-github-burntsushi-toml-dev (1.4.0-1) ... 159s Selecting previously unselected package golang-github-pelletier-go-toml-dev. 159s Preparing to unpack .../158-golang-github-pelletier-go-toml-dev_1.9.5-1build1_all.deb ... 159s Unpacking golang-github-pelletier-go-toml-dev (1.9.5-1build1) ... 159s Selecting previously unselected package golang-github-zmap-zlint-dev. 159s Preparing to unpack .../159-golang-github-zmap-zlint-dev_3.6.2-4_all.deb ... 159s Unpacking golang-github-zmap-zlint-dev (3.6.2-4) ... 159s Selecting previously unselected package golang-github-bmizerany-assert-dev. 159s Preparing to unpack .../160-golang-github-bmizerany-assert-dev_0.0~git20120716-4_all.deb ... 159s Unpacking golang-github-bmizerany-assert-dev (0.0~git20120716-4) ... 159s Selecting previously unselected package golang-github-hailocab-go-hostpool-dev. 159s Preparing to unpack .../161-golang-github-hailocab-go-hostpool-dev_0.0~git20160125.0.e80d13c-1.1_all.deb ... 159s Unpacking golang-github-hailocab-go-hostpool-dev (0.0~git20160125.0.e80d13c-1.1) ... 159s Selecting previously unselected package golang-github-opentracing-opentracing-go-dev. 159s Preparing to unpack .../162-golang-github-opentracing-opentracing-go-dev_1.2.0-2_all.deb ... 159s Unpacking golang-github-opentracing-opentracing-go-dev (1.2.0-2) ... 159s Selecting previously unselected package golang-gopkg-rethinkdb-rethinkdb-go.v6-dev. 159s Preparing to unpack .../163-golang-gopkg-rethinkdb-rethinkdb-go.v6-dev_6.2.1-3_all.deb ... 159s Unpacking golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (6.2.1-3) ... 159s Selecting previously unselected package golang-k8s-klog-dev. 159s Preparing to unpack .../164-golang-k8s-klog-dev_2.130.1-1_all.deb ... 159s Unpacking golang-k8s-klog-dev (2.130.1-1) ... 159s Selecting previously unselected package libcap-dev:s390x. 159s Preparing to unpack .../165-libcap-dev_1%3a2.66-5ubuntu3_s390x.deb ... 159s Unpacking libcap-dev:s390x (1:2.66-5ubuntu3) ... 159s Selecting previously unselected package libltdl7:s390x. 159s Preparing to unpack .../166-libltdl7_2.5.4-3build1_s390x.deb ... 159s Unpacking libltdl7:s390x (2.5.4-3build1) ... 159s Selecting previously unselected package libltdl-dev:s390x. 159s Preparing to unpack .../167-libltdl-dev_2.5.4-3build1_s390x.deb ... 159s Unpacking libltdl-dev:s390x (2.5.4-3build1) ... 159s Selecting previously unselected package libnspr4-dev. 159s Preparing to unpack .../168-libnspr4-dev_2%3a4.36-1ubuntu1_s390x.deb ... 159s Unpacking libnspr4-dev (2:4.36-1ubuntu1) ... 159s Selecting previously unselected package libnss3-dev:s390x. 159s Preparing to unpack .../169-libnss3-dev_2%3a3.106-1ubuntu1_s390x.deb ... 159s Unpacking libnss3-dev:s390x (2:3.106-1ubuntu1) ... 159s Selecting previously unselected package libpkgconf3:s390x. 159s Preparing to unpack .../170-libpkgconf3_1.8.1-4_s390x.deb ... 159s Unpacking libpkgconf3:s390x (1.8.1-4) ... 159s Selecting previously unselected package libprotobuf-lite32t64:s390x. 159s Preparing to unpack .../171-libprotobuf-lite32t64_3.21.12-10build1_s390x.deb ... 159s Unpacking libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 159s Selecting previously unselected package libprotobuf32t64:s390x. 159s Preparing to unpack .../172-libprotobuf32t64_3.21.12-10build1_s390x.deb ... 159s Unpacking libprotobuf32t64:s390x (3.21.12-10build1) ... 159s Selecting previously unselected package libprotoc32t64:s390x. 159s Preparing to unpack .../173-libprotoc32t64_3.21.12-10build1_s390x.deb ... 159s Unpacking libprotoc32t64:s390x (3.21.12-10build1) ... 159s Selecting previously unselected package libsqlite3-dev:s390x. 159s Preparing to unpack .../174-libsqlite3-dev_3.46.1-1_s390x.deb ... 159s Unpacking libsqlite3-dev:s390x (3.46.1-1) ... 159s Selecting previously unselected package libsystemd-dev:s390x. 159s Preparing to unpack .../175-libsystemd-dev_257.2-3ubuntu1_s390x.deb ... 159s Unpacking libsystemd-dev:s390x (257.2-3ubuntu1) ... 159s Selecting previously unselected package pkgconf-bin. 159s Preparing to unpack .../176-pkgconf-bin_1.8.1-4_s390x.deb ... 159s Unpacking pkgconf-bin (1.8.1-4) ... 159s Selecting previously unselected package pkgconf:s390x. 159s Preparing to unpack .../177-pkgconf_1.8.1-4_s390x.deb ... 159s Unpacking pkgconf:s390x (1.8.1-4) ... 159s Selecting previously unselected package zlib1g-dev:s390x. 159s Preparing to unpack .../178-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 159s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 159s Selecting previously unselected package libprotobuf-dev:s390x. 159s Preparing to unpack .../179-libprotobuf-dev_3.21.12-10build1_s390x.deb ... 159s Unpacking libprotobuf-dev:s390x (3.21.12-10build1) ... 159s Selecting previously unselected package protobuf-compiler. 159s Preparing to unpack .../180-protobuf-compiler_3.21.12-10build1_s390x.deb ... 159s Unpacking protobuf-compiler (3.21.12-10build1) ... 159s Selecting previously unselected package protoc-gen-go-1-5. 159s Preparing to unpack .../181-protoc-gen-go-1-5_1.5.4-1_s390x.deb ... 159s Unpacking protoc-gen-go-1-5 (1.5.4-1) ... 159s Selecting previously unselected package protoc-gen-go-grpc. 159s Preparing to unpack .../182-protoc-gen-go-grpc_1.64.0-6_s390x.deb ... 159s Unpacking protoc-gen-go-grpc (1.64.0-6) ... 159s Selecting previously unselected package tzdata-legacy. 159s Preparing to unpack .../183-tzdata-legacy_2024b-6ubuntu1_all.deb ... 159s Unpacking tzdata-legacy (2024b-6ubuntu1) ... 159s Selecting previously unselected package dh-golang. 159s Preparing to unpack .../184-dh-golang_1.62_all.deb ... 159s Unpacking dh-golang (1.62) ... 159s Selecting previously unselected package golang-dbus-dev. 159s Preparing to unpack .../185-golang-dbus-dev_5.1.0-1_all.deb ... 159s Unpacking golang-dbus-dev (5.1.0-1) ... 159s Selecting previously unselected package golang-github-akavel-rsrc-dev. 159s Preparing to unpack .../186-golang-github-akavel-rsrc-dev_1%3a0.8.0-2_all.deb ... 159s Unpacking golang-github-akavel-rsrc-dev (1:0.8.0-2) ... 159s Selecting previously unselected package golang-github-bugsnag-panicwrap-dev. 159s Preparing to unpack .../187-golang-github-bugsnag-panicwrap-dev_1.2.0-2_all.deb ... 159s Unpacking golang-github-bugsnag-panicwrap-dev (1.2.0-2) ... 159s Selecting previously unselected package golang-github-pkg-errors-dev. 159s Preparing to unpack .../188-golang-github-pkg-errors-dev_0.9.1-3_all.deb ... 159s Unpacking golang-github-pkg-errors-dev (0.9.1-3) ... 159s Selecting previously unselected package golang-github-bugsnag-bugsnag-go-dev. 159s Preparing to unpack .../189-golang-github-bugsnag-bugsnag-go-dev_2.2.0-1_all.deb ... 159s Unpacking golang-github-bugsnag-bugsnag-go-dev (2.2.0-1) ... 159s Selecting previously unselected package golang-github-cloudflare-go-metrics-dev. 159s Preparing to unpack .../190-golang-github-cloudflare-go-metrics-dev_0.0~git20151117.0.6a9aea3-4_all.deb ... 159s Unpacking golang-github-cloudflare-go-metrics-dev (0.0~git20151117.0.6a9aea3-4) ... 159s Selecting previously unselected package golang-github-coreos-go-systemd-dev. 159s Preparing to unpack .../191-golang-github-coreos-go-systemd-dev_22.5.0-1_all.deb ... 159s Unpacking golang-github-coreos-go-systemd-dev (22.5.0-1) ... 159s Selecting previously unselected package golang-github-cloudflare-redoctober-dev. 159s Preparing to unpack .../192-golang-github-cloudflare-redoctober-dev_0.0~git20161017.0.78e9720-5build1_all.deb ... 159s Unpacking golang-github-cloudflare-redoctober-dev (0.0~git20161017.0.78e9720-5build1) ... 159s Selecting previously unselected package golang-github-daaku-go.zipexe-dev. 159s Preparing to unpack .../193-golang-github-daaku-go.zipexe-dev_1.0.1-2_all.deb ... 159s Unpacking golang-github-daaku-go.zipexe-dev (1.0.1-2) ... 159s Selecting previously unselected package golang-github-geertjohan-go.incremental-dev. 159s Preparing to unpack .../194-golang-github-geertjohan-go.incremental-dev_1.0.0-2_all.deb ... 159s Unpacking golang-github-geertjohan-go.incremental-dev (1.0.0-2) ... 159s Selecting previously unselected package golang-go-flags-dev. 159s Preparing to unpack .../195-golang-go-flags-dev_1.4.0-6_all.deb ... 159s Unpacking golang-go-flags-dev (1.4.0-6) ... 159s Selecting previously unselected package golang-github-geertjohan-go.rice-dev. 159s Preparing to unpack .../196-golang-github-geertjohan-go.rice-dev_1.0.2-1build1_all.deb ... 159s Unpacking golang-github-geertjohan-go.rice-dev (1.0.2-1build1) ... 159s Selecting previously unselected package golang-github-gorilla-mux-dev. 159s Preparing to unpack .../197-golang-github-gorilla-mux-dev_1.8.1-1_all.deb ... 159s Unpacking golang-github-gorilla-mux-dev (1.8.1-1) ... 159s Selecting previously unselected package golang-github-go-sql-driver-mysql-dev. 159s Preparing to unpack .../198-golang-github-go-sql-driver-mysql-dev_1.8.1-3_all.deb ... 159s Unpacking golang-github-go-sql-driver-mysql-dev (1.8.1-3) ... 159s Selecting previously unselected package golang-github-lib-pq-dev. 159s Preparing to unpack .../199-golang-github-lib-pq-dev_1.10.9-2_all.deb ... 159s Unpacking golang-github-lib-pq-dev (1.10.9-2) ... 159s Selecting previously unselected package golang-github-mattn-go-sqlite3-dev:s390x. 160s Preparing to unpack .../200-golang-github-mattn-go-sqlite3-dev_1.14.24~ds1-1_s390x.deb ... 160s Unpacking golang-github-mattn-go-sqlite3-dev:s390x (1.14.24~ds1-1) ... 160s Selecting previously unselected package golang-github-jmoiron-sqlx-dev. 160s Preparing to unpack .../201-golang-github-jmoiron-sqlx-dev_1.3.5-1_all.deb ... 160s Unpacking golang-github-jmoiron-sqlx-dev (1.3.5-1) ... 160s Selecting previously unselected package golang-github-juju-ratelimit-dev. 160s Preparing to unpack .../202-golang-github-juju-ratelimit-dev_1.0.1-1.1_all.deb ... 160s Unpacking golang-github-juju-ratelimit-dev (1.0.1-1.1) ... 160s Selecting previously unselected package golang-github-spf13-pflag-dev. 160s Preparing to unpack .../203-golang-github-spf13-pflag-dev_1.0.6~git20210604-d5e0c0615ace-1_all.deb ... 160s Unpacking golang-github-spf13-pflag-dev (1.0.6~git20210604-d5e0c0615ace-1) ... 160s Selecting previously unselected package golang-github-fsnotify-fsnotify-dev. 160s Preparing to unpack .../204-golang-github-fsnotify-fsnotify-dev_1.8.0-1_all.deb ... 160s Unpacking golang-github-fsnotify-fsnotify-dev (1.8.0-1) ... 160s Selecting previously unselected package golang-github-hashicorp-hcl-dev. 160s Preparing to unpack .../205-golang-github-hashicorp-hcl-dev_1.0.0-1.1_all.deb ... 160s Unpacking golang-github-hashicorp-hcl-dev (1.0.0-1.1) ... 160s Selecting previously unselected package golang-github-magiconair-properties-dev. 160s Preparing to unpack .../206-golang-github-magiconair-properties-dev_1.8.7-1_all.deb ... 160s Unpacking golang-github-magiconair-properties-dev (1.8.7-1) ... 160s Selecting previously unselected package golang-github-mitchellh-mapstructure-dev. 160s Preparing to unpack .../207-golang-github-mitchellh-mapstructure-dev_1.5.0+git20231216.8508981-1_all.deb ... 160s Unpacking golang-github-mitchellh-mapstructure-dev (1.5.0+git20231216.8508981-1) ... 160s Selecting previously unselected package golang-github-kr-fs-dev. 160s Preparing to unpack .../208-golang-github-kr-fs-dev_0.1.0-2_all.deb ... 160s Unpacking golang-github-kr-fs-dev (0.1.0-2) ... 160s Selecting previously unselected package golang-github-pkg-sftp-dev. 160s Preparing to unpack .../209-golang-github-pkg-sftp-dev_1.13.6-1_all.deb ... 160s Unpacking golang-github-pkg-sftp-dev (1.13.6-1) ... 160s Selecting previously unselected package golang-github-spf13-afero-dev. 160s Preparing to unpack .../210-golang-github-spf13-afero-dev_1.11.0-1_all.deb ... 160s Unpacking golang-github-spf13-afero-dev (1.11.0-1) ... 160s Selecting previously unselected package golang-github-spf13-cast-dev. 160s Preparing to unpack .../211-golang-github-spf13-cast-dev_1.6.0-2_all.deb ... 160s Unpacking golang-github-spf13-cast-dev (1.6.0-2) ... 160s Selecting previously unselected package golang-github-spf13-jwalterweatherman-dev. 160s Preparing to unpack .../212-golang-github-spf13-jwalterweatherman-dev_1.1.0+really1.1.0-2_all.deb ... 160s Unpacking golang-github-spf13-jwalterweatherman-dev (1.1.0+really1.1.0-2) ... 160s Selecting previously unselected package golang-gopkg-ini.v1-dev. 160s Preparing to unpack .../213-golang-gopkg-ini.v1-dev_1.67.0-1_all.deb ... 160s Unpacking golang-gopkg-ini.v1-dev (1.67.0-1) ... 160s Selecting previously unselected package golang-github-spf13-viper-dev. 160s Preparing to unpack .../214-golang-github-spf13-viper-dev_1.12.0-1_all.deb ... 160s Unpacking golang-github-spf13-viper-dev (1.12.0-1) ... 160s Selecting previously unselected package golang-github-spf13-cobra-dev. 160s Preparing to unpack .../215-golang-github-spf13-cobra-dev_1.8.1-1_all.deb ... 160s Unpacking golang-github-spf13-cobra-dev (1.8.1-1) ... 160s Selecting previously unselected package golang-github-google-certificate-transparency-dev. 160s Preparing to unpack .../216-golang-github-google-certificate-transparency-dev_1.3.1-2_all.deb ... 160s Unpacking golang-github-google-certificate-transparency-dev (1.3.1-2) ... 160s Selecting previously unselected package golang-github-jmhodges-clock-dev. 160s Preparing to unpack .../217-golang-github-jmhodges-clock-dev_1.1-1_all.deb ... 160s Unpacking golang-github-jmhodges-clock-dev (1.1-1) ... 160s Selecting previously unselected package golang-github-kisielk-sqlstruct-dev. 160s Preparing to unpack .../218-golang-github-kisielk-sqlstruct-dev_0.0~git20150917.0.0b86a3e-2.1_all.deb ... 160s Unpacking golang-github-kisielk-sqlstruct-dev (0.0~git20150917.0.0b86a3e-2.1) ... 160s Selecting previously unselected package golang-github-kisom-goutils-dev. 160s Preparing to unpack .../219-golang-github-kisom-goutils-dev_0.0~git20161101.0.858c9cb-2.1_all.deb ... 160s Unpacking golang-github-kisom-goutils-dev (0.0~git20161101.0.858c9cb-2.1) ... 160s Selecting previously unselected package golang-github-cloudflare-cfssl-dev. 160s Preparing to unpack .../220-golang-github-cloudflare-cfssl-dev_1.6.5-2_all.deb ... 160s Unpacking golang-github-cloudflare-cfssl-dev (1.6.5-2) ... 160s Selecting previously unselected package golang-github-denisenkom-go-mssqldb-dev. 160s Preparing to unpack .../221-golang-github-denisenkom-go-mssqldb-dev_0.0~git20170717.0.8fccfc8-7_all.deb ... 160s Unpacking golang-github-denisenkom-go-mssqldb-dev (0.0~git20170717.0.8fccfc8-7) ... 160s Selecting previously unselected package golang-github-docker-go-metrics-dev. 160s Preparing to unpack .../222-golang-github-docker-go-metrics-dev_0.0.1-2_all.deb ... 160s Unpacking golang-github-docker-go-metrics-dev (0.0.1-2) ... 160s Selecting previously unselected package golang-github-docker-libtrust-dev. 160s Preparing to unpack .../223-golang-github-docker-libtrust-dev_0.0~git20160708.aabc10e-1_all.deb ... 160s Unpacking golang-github-docker-libtrust-dev (0.0~git20160708.aabc10e-1) ... 160s Selecting previously unselected package golang-github-garyburd-redigo-dev. 160s Preparing to unpack .../224-golang-github-garyburd-redigo-dev_0.0~git20150901.0.d8dbe4d-2.1_all.deb ... 160s Unpacking golang-github-garyburd-redigo-dev (0.0~git20150901.0.d8dbe4d-2.1) ... 160s Selecting previously unselected package golang-github-gorilla-handlers-dev. 160s Preparing to unpack .../225-golang-github-gorilla-handlers-dev_1.5.2-1_all.deb ... 160s Unpacking golang-github-gorilla-handlers-dev (1.5.2-1) ... 160s Selecting previously unselected package golang-github-ncw-swift-dev. 160s Preparing to unpack .../226-golang-github-ncw-swift-dev_1.0.53-2_all.deb ... 160s Unpacking golang-github-ncw-swift-dev (1.0.53-2) ... 160s Selecting previously unselected package golang-github-xeipuuv-gojsonpointer-dev. 160s Preparing to unpack .../227-golang-github-xeipuuv-gojsonpointer-dev_0.0~git20190905.02993c4-3_all.deb ... 160s Unpacking golang-github-xeipuuv-gojsonpointer-dev (0.0~git20190905.02993c4-3) ... 160s Selecting previously unselected package golang-github-xeipuuv-gojsonreference-dev. 160s Preparing to unpack .../228-golang-github-xeipuuv-gojsonreference-dev_0.0~git20180127.bd5ef7b-3_all.deb ... 160s Unpacking golang-github-xeipuuv-gojsonreference-dev (0.0~git20180127.bd5ef7b-3) ... 160s Selecting previously unselected package golang-github-xeipuuv-gojsonschema-dev. 160s Preparing to unpack .../229-golang-github-xeipuuv-gojsonschema-dev_1.2.0-3_all.deb ... 160s Unpacking golang-github-xeipuuv-gojsonschema-dev (1.2.0-3) ... 160s Selecting previously unselected package golang-github-opencontainers-image-spec-dev. 160s Preparing to unpack .../230-golang-github-opencontainers-image-spec-dev_1.1.0-2_all.deb ... 160s Unpacking golang-github-opencontainers-image-spec-dev (1.1.0-2) ... 160s Selecting previously unselected package golang-github-docker-distribution-dev. 160s Preparing to unpack .../231-golang-github-docker-distribution-dev_2.8.3+ds1-2_all.deb ... 160s Unpacking golang-github-docker-distribution-dev (2.8.3+ds1-2) ... 160s Selecting previously unselected package golang-github-docker-go-connections-dev. 160s Preparing to unpack .../232-golang-github-docker-go-connections-dev_0.4.0-4_all.deb ... 160s Unpacking golang-github-docker-go-connections-dev (0.4.0-4) ... 160s Selecting previously unselected package golang-github-docker-go-dev. 160s Preparing to unpack .../233-golang-github-docker-go-dev_1.5.2~git20160303.d30aec9-1_all.deb ... 160s Unpacking golang-github-docker-go-dev (1.5.2~git20160303.d30aec9-1) ... 160s Selecting previously unselected package golang-github-dvsekhvalnov-jose2go-dev. 160s Preparing to unpack .../234-golang-github-dvsekhvalnov-jose2go-dev_1.5-1_all.deb ... 160s Unpacking golang-github-dvsekhvalnov-jose2go-dev (1.5-1) ... 160s Selecting previously unselected package golang-github-jinzhu-inflection-dev. 160s Preparing to unpack .../235-golang-github-jinzhu-inflection-dev_1.0.0-1_all.deb ... 160s Unpacking golang-github-jinzhu-inflection-dev (1.0.0-1) ... 160s Selecting previously unselected package golang-github-jinzhu-gorm-dev. 160s Preparing to unpack .../236-golang-github-jinzhu-gorm-dev_1.9.6-2_all.deb ... 160s Unpacking golang-github-jinzhu-gorm-dev (1.9.6-2) ... 160s Selecting previously unselected package golang-github-miekg-pkcs11-dev. 160s Preparing to unpack .../237-golang-github-miekg-pkcs11-dev_1.0.3+dfsg1-3_all.deb ... 160s Unpacking golang-github-miekg-pkcs11-dev (1.0.3+dfsg1-3) ... 160s Selecting previously unselected package golang-github-shopify-logrus-bugsnag-dev. 160s Preparing to unpack .../238-golang-github-shopify-logrus-bugsnag-dev_0.0~git20171204.577dee2-3_all.deb ... 160s Unpacking golang-github-shopify-logrus-bugsnag-dev (0.0~git20171204.577dee2-3) ... 160s Selecting previously unselected package golang-github-docker-notary-dev. 160s Preparing to unpack .../239-golang-github-docker-notary-dev_0.7.0+git20240416.9d2b3b3+ds1-3_all.deb ... 160s Unpacking golang-github-docker-notary-dev (0.7.0+git20240416.9d2b3b3+ds1-3) ... 160s Selecting previously unselected package notary. 160s Preparing to unpack .../240-notary_0.7.0+git20240416.9d2b3b3+ds1-3_s390x.deb ... 160s Unpacking notary (0.7.0+git20240416.9d2b3b3+ds1-3) ... 161s Setting up golang-github-xeipuuv-gojsonpointer-dev (0.0~git20190905.02993c4-3) ... 161s Setting up libprotobuf-lite32t64:s390x (3.21.12-10build1) ... 161s Setting up golang-golang-x-time-dev (0.5.0-1) ... 161s Setting up golang-github-pelletier-go-toml.v2-dev (2.2.1-1) ... 161s Setting up libnspr4-dev (2:4.36-1ubuntu1) ... 161s Setting up golang-github-google-go-cmp-dev (0.6.0-1) ... 161s Setting up golang-github-opentracing-opentracing-go-dev (1.2.0-2) ... 161s Setting up golang-gopkg-yaml.v2-dev (2.4.0-4) ... 161s Setting up golang-github-opencontainers-go-digest-dev (1.0.0-2) ... 161s Setting up libprotobuf32t64:s390x (3.21.12-10build1) ... 161s Setting up golang-github-jcmturner-gofork-dev (1.0.0-4) ... 161s Setting up golang-github-hashicorp-go-uuid-dev (1.0.3-1) ... 161s Setting up golang-github-ianlancetaylor-demangle-dev (0.0~git20200824.28f6c0f-2) ... 161s Setting up golang-github-google-go-querystring-dev (1.1.0-2) ... 161s Setting up golang-github-mitchellh-mapstructure-dev (1.5.0+git20231216.8508981-1) ... 161s Setting up golang-github-gin-contrib-sse-dev (0.1.0-2) ... 161s Setting up golang-dbus-dev (5.1.0-1) ... 161s Setting up golang-github-creack-pty-dev (1.1.21-1) ... 161s Setting up golang-github-felixge-httpsnoop-dev (1.0.3-3) ... 161s Setting up golang-github-shurcool-sanitized-anchor-name-dev (1.0.0-3) ... 161s Setting up golang-github-golang-mock-dev (1.6.0-2build1) ... 161s Setting up golang-github-stretchr-objx-dev (0.5.2-1) ... 161s Setting up golang-github-ncw-swift-dev (1.0.53-2) ... 161s Setting up golang-github-pkg-errors-dev (0.9.1-3) ... 161s Setting up golang-github-kisielk-sqlstruct-dev (0.0~git20150917.0.0b86a3e-2.1) ... 161s Setting up golang-github-jmhodges-clock-dev (1.1-1) ... 161s Setting up libarchive-zip-perl (1.68-1) ... 161s Setting up golang-rsc-binaryregexp-dev (0.2.0-3) ... 161s Setting up golang-github-kylelemons-godebug-dev (1.1.0-2) ... 161s Setting up golang-github-dvsekhvalnov-jose2go-dev (1.5-1) ... 161s Setting up golang-gopkg-yaml.v3-dev (3.0.1-3) ... 161s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 161s Setting up golang-github-burntsushi-toml-dev (1.4.0-1) ... 161s Setting up golang-golang-x-sys-dev (0.22.0-1) ... 161s Setting up golang-github-kr-fs-dev (0.1.0-2) ... 161s Setting up golang-github-subosito-gotenv-dev (1.3.0-1) ... 161s Setting up golang-github-geertjohan-go.incremental-dev (1.0.0-2) ... 161s Setting up golang-github-pmezard-go-difflib-dev (1.0.0-3) ... 161s Setting up golang-github-modern-go-concurrent-dev (1.0.3-1.1) ... 161s Setting up m4 (1.4.19-5) ... 161s Setting up golang-golang-x-term-dev (0.22.0-1) ... 161s Setting up golang-github-nkovacs-streamquote-dev (1.0.0-5) ... 161s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 161s Setting up golang-github-google-btree-dev (1.0.1-1) ... 161s Setting up golang-github-stoewer-go-strcase-dev (1.2.0-4) ... 161s Setting up golang-github-beorn7-perks-dev (1.0.1-1) ... 161s Setting up tzdata-legacy (2024b-6ubuntu1) ... 161s Setting up golang-github-gorilla-handlers-dev (1.5.2-1) ... 161s Setting up golang-github-cespare-xxhash-dev (2.3.0-1) ... 161s Setting up golang-github-spf13-pflag-dev (1.0.6~git20210604-d5e0c0615ace-1) ... 161s Setting up golang-github-jpillora-backoff-dev (1.0.0-1.1) ... 161s Setting up golang-github-davecgh-go-spew-dev (1.1.1-3) ... 161s Setting up golang-github-jinzhu-inflection-dev (1.0.0-1) ... 161s Setting up autotools-dev (20220109.1) ... 161s Setting up libpkgconf3:s390x (1.8.1-4) ... 161s Setting up golang-github-stathat-go-dev (0.0~git20130314.0.01d012b-2.1) ... 161s Setting up golang-github-go-logfmt-logfmt-dev (0.5.0-2) ... 161s Setting up golang-github-rcrowley-go-metrics-dev (0.0~git20180125.8732c61-3) ... 161s Setting up libsqlite3-dev:s390x (3.46.1-1) ... 161s Setting up golang-google-protobuf-dev (1.33.0-1) ... 161s Setting up golang-github-kr-text-dev (0.2.0-2) ... 161s Setting up golang-github-stretchr-testify-dev (1.9.0-1) ... 161s Setting up golang-github-cloudflare-backoff-dev (0.0~git20161212.647f3cd-2) ... 161s Setting up golang-github-jcmturner-aescts.v2-dev (2.0.0-2) ... 161s Setting up golang-github-op-go-logging-dev (1+git20160315.970db52-2) ... 161s Setting up golang-github-juju-ratelimit-dev (1.0.1-1.1) ... 161s Setting up golang-github-yuin-goldmark-dev (1.7.4-1) ... 161s Setting up golang-github-chzyer-readline-dev (1.4.39.g2972be2-3) ... 161s Setting up golang-github-docker-libtrust-dev (0.0~git20160708.aabc10e-1) ... 161s Setting up golang-gopkg-ini.v1-dev (1.67.0-1) ... 161s Setting up libmpc3:s390x (1.3.1-1build2) ... 161s Setting up golang-github-xeipuuv-gojsonreference-dev (0.0~git20180127.bd5ef7b-3) ... 161s Setting up golang-golang-x-sync-dev (0.7.0-1) ... 161s Setting up golang-golang-x-mod-dev (0.19.0-1) ... 161s Setting up golang-1.23-src (1.23.6-4) ... 161s Setting up autopoint (0.23.1-1) ... 161s Setting up golang-github-magiconair-properties-dev (1.8.7-1) ... 161s Setting up notary (0.7.0+git20240416.9d2b3b3+ds1-3) ... 161s Setting up golang-github-hashicorp-hcl-dev (1.0.0-1.1) ... 161s Setting up pkgconf-bin (1.8.1-4) ... 161s Setting up golang-github-akavel-rsrc-dev (1:0.8.0-2) ... 161s Setting up libltdl7:s390x (2.5.4-3build1) ... 161s Setting up golang-github-klauspost-compress-dev (1.17.11+ds1-1) ... 161s Setting up golang-github-zmap-rc2-dev (0.0~git20190804.abaa705-4) ... 161s Setting up golang-glog-dev (1.2.4-1) ... 161s Setting up golang-github-julienschmidt-httprouter-dev (1.3.0-2) ... 161s Setting up golang-github-mreiferson-go-httpclient-dev (0.0~git20160630.0.31f0106-3) ... 161s Setting up autoconf (2.72-3) ... 161s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 161s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 161s Setting up golang-github-jessevdk-go-flags-dev (1.4.0-6) ... 161s Setting up dwz (0.15-1build6) ... 161s Setting up golang-github-munnerz-goautoneg-dev (0.0~git20191010.a7dc8b6-2) ... 161s Setting up libnss3-dev:s390x (2:3.106-1ubuntu1) ... 161s Setting up golang-golang-x-text-dev (0.16.0-1) ... 161s Setting up golang-github-go-logr-logr-dev (1.4.2-2) ... 161s Setting up golang-github-google-uuid-dev (1.6.0-1) ... 161s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 161s Setting up golang-github-spf13-cast-dev (1.6.0-2) ... 161s Setting up golang-github-fsnotify-fsnotify-dev (1.8.0-1) ... 161s Setting up golang-github-gorilla-mux-dev (1.8.1-1) ... 161s Setting up golang-github-prometheus-procfs-dev (0.14.0-1) ... 161s Setting up debugedit (1:5.1-2) ... 161s Setting up golang-github-alecthomas-units-dev (0.0~git20240626.61d1e34-1) ... 161s Setting up golang-github-modern-go-reflect2-dev (1.0.2-2) ... 161s Setting up golang-filippo-edwards25519-dev (1.0.0~rc1+git20210721-0.1) ... 161s Setting up golang-golang-x-crypto-dev (1:0.25.0-1) ... 161s Setting up golang-golang-x-exp-dev (0.0~git20231006.7918f67-1) ... 161s Setting up golang-go-flags-dev (1.4.0-6) ... 161s Setting up golang-github-jcmturner-goidentity.v6-dev (6.0.1-2) ... 161s Setting up golang-github-prometheus-client-model-dev (0.6.0-1) ... 161s Setting up golang-github-pelletier-go-toml-dev (1.9.5-1build1) ... 161s Setting up golang-github-spf13-jwalterweatherman-dev (1.1.0+really1.1.0-2) ... 161s Setting up golang-golang-x-oauth2-dev (0.15.0-1) ... 161s Setting up libprotoc32t64:s390x (3.21.12-10build1) ... 161s Setting up libisl23:s390x (0.27-1) ... 161s Setting up golang-github-hashicorp-golang-lru-v2-dev (2.0.7-2) ... 161s Setting up golang-github-valyala-bytebufferpool-dev (1.0.0-4) ... 161s Setting up golang-github-transparency-dev-merkle-dev (0.0.2-2) ... 161s Setting up golang-src (2:1.23~2) ... 161s Setting up libcap-dev:s390x (1:2.66-5ubuntu3) ... 161s Setting up golang-github-gorilla-securecookie-dev (1.1.2-1) ... 161s Setting up golang-github-ugorji-go-codec-dev (1.2.8-1build1) ... 161s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 161s Setting up libsystemd-dev:s390x (257.2-3ubuntu1) ... 161s Setting up golang-github-jmespath-go-jmespath-dev (0.4.0-2) ... 161s Setting up golang-github-gorilla-sessions-dev (1.2.1-1) ... 161s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 161s Setting up golang-github-daaku-go.zipexe-dev (1.0.1-2) ... 161s Setting up golang-github-bugsnag-panicwrap-dev (1.2.0-2) ... 161s Setting up golang-github-google-go-github-dev (60.0.0-1) ... 161s Setting up automake (1:1.17-3) ... 161s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 161s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 161s Setting up golang-github-mattn-go-isatty-dev (0.0.20-1) ... 161s Setting up golang-github-sirupsen-logrus-dev (1.9.0-1) ... 161s Setting up golang-github-distribution-reference-dev (0.6.0-4) ... 161s Setting up golang-github-go-kit-log-dev (0.2.1-1) ... 161s Setting up golang-github-golang-protobuf-1-5-dev (1.5.4-1) ... 161s Setting up gettext (0.23.1-1) ... 161s Setting up golang-github-cloudflare-go-metrics-dev (0.0~git20151117.0.6a9aea3-4) ... 161s Setting up golang-github-jcmturner-dnsutils.v2-dev (2.0.0-2) ... 161s Setting up golang-github-russross-blackfriday-v2-dev (2.1.0-1) ... 161s Setting up protobuf-compiler (3.21.12-10build1) ... 161s Setting up golang-gopkg-alecthomas-kingpin.v2-dev (2.2.6-4) ... 161s Setting up golang-github-antlr-antlr4-dev (4.11.1+ds-2) ... 161s Setting up golang-github-xeipuuv-gojsonschema-dev (1.2.0-3) ... 161s Setting up golang-github-golang-groupcache-dev (0.0~git20210331.41bb18b-1) ... 161s Setting up golang-github-bugsnag-bugsnag-go-dev (2.2.0-1) ... 161s Setting up golang-github-pkg-sftp-dev (1.13.6-1) ... 161s Setting up golang-github-json-iterator-go-dev (1.1.12-2) ... 161s Setting up golang-k8s-klog-dev (2.130.1-1) ... 161s Setting up golang-github-google-pprof-dev (0.0~git20211008.947d60d-1) ... 161s Setting up golang-github-go-playground-locales-dev (0.14.0-3) ... 161s Setting up pkgconf:s390x (1.8.1-4) ... 161s Setting up intltool-debian (0.35.0+20060710.6) ... 161s Setting up libprotobuf-dev:s390x (3.21.12-10build1) ... 161s Setting up golang-github-mattn-go-sqlite3-dev:s390x (1.14.24~ds1-1) ... 161s Setting up libltdl-dev:s390x (2.5.4-3build1) ... 161s Setting up golang-1.23-go (1.23.6-4) ... 161s Setting up golang-github-leodido-go-urn-dev (1.2.1-3) ... 161s Setting up golang-github-valyala-fasttemplate-dev (1.2.2+ds1-2) ... 161s Setting up golang-github-coreos-go-systemd-dev (22.5.0-1) ... 161s Setting up golang-github-shopify-logrus-bugsnag-dev (0.0~git20171204.577dee2-3) ... 161s Setting up golang-golang-x-net-dev (1:0.27.0-1) ... 161s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 161s Setting up cpp-14 (14.2.0-17ubuntu1) ... 161s Setting up dh-strip-nondeterminism (1.14.1-2) ... 161s Setting up golang-github-go-sql-driver-mysql-dev (1.8.1-3) ... 161s Setting up protoc-gen-go-grpc (1.64.0-6) ... 161s Setting up golang-github-spf13-afero-dev (1.11.0-1) ... 161s Setting up golang-github-opencontainers-image-spec-dev (1.1.0-2) ... 161s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 161s Setting up golang-github-miekg-pkcs11-dev (1.0.3+dfsg1-3) ... 161s Setting up golang-github-aws-aws-sdk-go-dev (1.49.0-2) ... 161s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 161s Setting up golang-github-google-martian-dev (3.3.2-3) ... 161s Setting up golang-github-kisom-goutils-dev (0.0~git20161101.0.858c9cb-2.1) ... 161s Setting up golang-github-cpuguy83-go-md2man-v2-dev (2.0.4-1) ... 161s Setting up golang-github-geertjohan-go.rice-dev (1.0.2-1build1) ... 161s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 161s Setting up golang-go:s390x (2:1.23~2) ... 161s Setting up golang-github-weppos-publicsuffix-go-dev (0.30.1-1) ... 161s Setting up po-debconf (1.0.21+nmu1) ... 161s Setting up golang-github-go-playground-universal-translator-dev (0.17.0-2) ... 161s Setting up golang-github-jcmturner-rpc.v2-dev (2.0.3-2) ... 161s Setting up golang-github-denisenkom-go-mssqldb-dev (0.0~git20170717.0.8fccfc8-7) ... 161s Setting up protoc-gen-go-1-5 (1.5.4-1) ... 161s Setting up golang-google-cloud-compute-metadata-dev (0.56.0-5) ... 161s Setting up golang-golang-x-tools-dev (1:0.22.0+ds-1) ... 161s Setting up golang-github-docker-go-connections-dev (0.4.0-4) ... 161s Setting up golang-any:s390x (2:1.23~2) ... 161s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 161s Setting up golang-golang-x-oauth2-google-dev (0.15.0-1) ... 161s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 161s Setting up golang-github-go-playground-validator-v10-dev (10.4.1-4) ... 161s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 161s Setting up golang-github-spf13-viper-dev (1.12.0-1) ... 161s Setting up cpp (4:14.2.0-1ubuntu1) ... 161s Setting up golang-github-rogpeppe-go-internal-dev (1.12.0-3) ... 161s Setting up golang-github-gin-gonic-gin-dev (1.8.1-2) ... 161s Setting up golang-github-kr-pretty-dev (0.3.1-1) ... 161s Setting up golang-github-jcmturner-gokrb5.v8-dev (8.4.3-2) ... 161s Setting up golang-github-docker-go-dev (1.5.2~git20160303.d30aec9-1) ... 161s Setting up golang-github-garyburd-redigo-dev (0.0~git20150901.0.d8dbe4d-2.1) ... 161s Setting up golang-github-lib-pq-dev (1.10.9-2) ... 161s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 161s Setting up golang-gopkg-check.v1-dev (0.0+git20200902.038fdea-1) ... 161s Setting up gcc-14 (14.2.0-17ubuntu1) ... 161s Setting up golang-github-rs-cors-dev (1.7.0-4) ... 161s Setting up golang-github-spf13-cobra-dev (1.8.1-1) ... 161s Setting up golang-github-zmap-zcrypto-dev (0.0~git20240512.0fef58d-2) ... 161s Setting up golang-github-bmizerany-assert-dev (0.0~git20120716-4) ... 161s Setting up g++-14 (14.2.0-17ubuntu1) ... 161s Setting up libtool (2.5.4-3build1) ... 161s Setting up golang-github-jinzhu-gorm-dev (1.9.6-2) ... 161s Setting up golang-github-jmoiron-sqlx-dev (1.3.5-1) ... 161s Setting up golang-github-hailocab-go-hostpool-dev (0.0~git20160125.0.e80d13c-1.1) ... 161s Setting up gcc (4:14.2.0-1ubuntu1) ... 161s Setting up dh-autoreconf (20) ... 161s Setting up golang-github-zmap-zlint-dev (3.6.2-4) ... 161s Setting up g++ (4:14.2.0-1ubuntu1) ... 161s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 161s Setting up golang-github-google-certificate-transparency-dev (1.3.1-2) ... 161s Setting up build-essential (12.10ubuntu1) ... 161s Setting up golang-gopkg-rethinkdb-rethinkdb-go.v6-dev (6.2.1-3) ... 161s Setting up debhelper (13.24.1ubuntu2) ... 161s Setting up dh-golang (1.62) ... 161s Setting up golang-github-mwitkow-go-conntrack-dev (0.0~git20190716.2f06839-3) ... 161s Setting up golang-google-genproto-dev (0.0~git20210726.e7812ac-4) ... 161s Setting up golang-github-prometheus-common-dev (0.62.0-2) ... 161s Setting up golang-go.opencensus-dev (0.24.0-2) ... 161s Setting up golang-github-google-cel-go-dev (0.18.2+ds-5) ... 161s Setting up golang-github-prometheus-client-golang-dev (1.20.5-1) ... 161s Setting up golang-github-cloudflare-redoctober-dev (0.0~git20161017.0.78e9720-5build1) ... 161s Setting up golang-google-grpc-dev (1.64.0-6) ... 161s Setting up golang-github-cloudflare-cfssl-dev (1.6.5-2) ... 161s Setting up golang-github-docker-go-metrics-dev (0.0.1-2) ... 161s Setting up golang-github-docker-distribution-dev (2.8.3+ds1-2) ... 161s Setting up golang-github-googleapis-gax-go-dev (2.14.1-1) ... 161s Setting up golang-github-docker-notary-dev (0.7.0+git20240416.9d2b3b3+ds1-3) ... 161s Setting up golang-google-api-dev (0.61.0-5) ... 161s Setting up golang-google-cloud-dev (0.56.0-5) ... 161s Processing triggers for install-info (7.1.1-1) ... 161s Processing triggers for libc-bin (2.40-4ubuntu1) ... 161s Processing triggers for man-db (2.13.0-1) ... 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'notary'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'golang-github-docker-notary-dev'], kind short, sout pipe, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-packages.all /tmp/autopkgtest-work.5t3svkb1/out/dh-golang-autopkgtest-packages.all 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.M2Z2np/build.rbd/src'], kind short, sout raw, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.M2Z2np/build.rbd/src already exists 163s autopkgtest [02:54:13]: test dh-golang-autopkgtest: /usr/bin/dh_golang_autopkgtest 163s autopkgtest [02:54:13]: test dh-golang-autopkgtest: [----------------------- 163s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.M2Z2np/wrapper.sh --debug --artifacts=/tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-artifacts --chdir=/tmp/autopkgtest.M2Z2np/build.rbd/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.M2Z2np/dh-golang-autopkgtest-stderr --stdout=/tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stdout --tmp=/tmp/autopkgtest.M2Z2np/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=notary/0.7.0+git20240416.9d2b3b3+ds1-3 -- bash -ec /usr/bin/dh_golang_autopkgtest'], kind test, sout raw, serr raw, env [] 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-artifacts 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: changing to directory: /tmp/autopkgtest.M2Z2np/build.rbd/src 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: setting environment: LANG=C.UTF-8 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LANGUAGE 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_ADDRESS 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_ALL 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_COLLATE 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_CTYPE 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_IDENTIFICATION 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_MEASUREMENT 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_MESSAGES 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_MONETARY 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_NAME 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_NUMERIC 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_PAPER 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_TELEPHONE 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: unsetting environment: LC_TIME 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: pretending to be a login shell 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: will write standard error to /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stderr 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: will write stdout to /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stdout 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.M2Z2np/autopkgtest_tmp 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=notary/0.7.0+git20240416.9d2b3b3+ds1-3 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: command to run: bash -ec /usr/bin/dh_golang_autopkgtest 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: copying /tmp/tmp.L20ujnWOz4/out to stdout and file: /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stdout 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: copying /tmp/tmp.L20ujnWOz4/err to standard error and file: /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stdout 163s /tmp/autopkgtest.M2Z2np/wrapper.sh: writing script pid 3701 to /tmp/autopkgtest_script_pid 163s [info] Testing github.com/theupdateframework/notary... 163s [info] Source code installed by binary package, overriding dh_auto_configure... 163s [info] Disabling existing override_dh_auto_configure... 163s dh build --builddirectory=/tmp/autopkgtest.M2Z2np/autopkgtest_tmp/_build \ 163s --buildsystem=golang \ 163s --with=golang 164s dh_update_autotools_config -O--builddirectory=/tmp/autopkgtest.M2Z2np/autopkgtest_tmp/_build -O--buildsystem=golang 164s dh_autoreconf -O--builddirectory=/tmp/autopkgtest.M2Z2np/autopkgtest_tmp/_build -O--buildsystem=golang 164s debian/rules override_dh_auto_configure 164s make[1]: Entering directory '/tmp/autopkgtest.M2Z2np/autopkgtest_tmp' 164s mkdir -p "_build" 164s # remove existing symlinks, since "cp -a" won't convert them 164s find "_build" -type l -exec rm "{}" \; 164s cp -a /usr/share/gocode/src "_build" 165s make[1]: Leaving directory '/tmp/autopkgtest.M2Z2np/autopkgtest_tmp' 165s debian/rules override_dh_auto_build 165s make[1]: Entering directory '/tmp/autopkgtest.M2Z2np/autopkgtest_tmp' 165s dh_auto_build -- -tags "pkcs11" 165s cd _build && go generate -v -tags pkcs11 github.com/theupdateframework/notary github.com/theupdateframework/notary/client github.com/theupdateframework/notary/client/changelist github.com/theupdateframework/notary/cmd/escrow github.com/theupdateframework/notary/cmd/notary github.com/theupdateframework/notary/cmd/notary-server github.com/theupdateframework/notary/cmd/notary-signer github.com/theupdateframework/notary/cryptoservice github.com/theupdateframework/notary/passphrase github.com/theupdateframework/notary/proto github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto github.com/theupdateframework/notary/server github.com/theupdateframework/notary/server/errors github.com/theupdateframework/notary/server/handlers github.com/theupdateframework/notary/server/snapshot github.com/theupdateframework/notary/server/storage github.com/theupdateframework/notary/server/timestamp github.com/theupdateframework/notary/signer github.com/theupdateframework/notary/signer/api github.com/theupdateframework/notary/signer/client github.com/theupdateframework/notary/signer/keydbstore github.com/theupdateframework/notary/storage github.com/theupdateframework/notary/storage/rethinkdb github.com/theupdateframework/notary/trustmanager github.com/theupdateframework/notary/trustmanager/remoteks github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks github.com/theupdateframework/notary/trustmanager/yubikey github.com/theupdateframework/notary/trustpinning github.com/theupdateframework/notary/tuf github.com/theupdateframework/notary/tuf/data github.com/theupdateframework/notary/tuf/signed github.com/theupdateframework/notary/tuf/testutils github.com/theupdateframework/notary/tuf/testutils/interfaces github.com/theupdateframework/notary/tuf/testutils/keys github.com/theupdateframework/notary/tuf/utils github.com/theupdateframework/notary/tuf/validation github.com/theupdateframework/notary/utils github.com/theupdateframework/notary/version 165s src/github.com/theupdateframework/notary/const.go 165s src/github.com/theupdateframework/notary/const_nowindows.go 165s src/github.com/theupdateframework/notary/fips.go 165s src/github.com/theupdateframework/notary/notary.go 165s src/github.com/theupdateframework/notary/client/backwards_compatibility_test.go 165s src/github.com/theupdateframework/notary/client/client.go 165s src/github.com/theupdateframework/notary/client/client_pkcs11_test.go 165s src/github.com/theupdateframework/notary/client/client_test.go 165s src/github.com/theupdateframework/notary/client/client_update_test.go 165s src/github.com/theupdateframework/notary/client/delegations.go 165s src/github.com/theupdateframework/notary/client/errors.go 165s src/github.com/theupdateframework/notary/client/example_client_test.go 165s src/github.com/theupdateframework/notary/client/helpers.go 165s src/github.com/theupdateframework/notary/client/helpers_test.go 165s src/github.com/theupdateframework/notary/client/interface.go 165s src/github.com/theupdateframework/notary/client/reader.go 165s src/github.com/theupdateframework/notary/client/repo_pkcs11.go 165s src/github.com/theupdateframework/notary/client/tufclient.go 165s src/github.com/theupdateframework/notary/client/witness.go 165s src/github.com/theupdateframework/notary/client/changelist/change.go 165s src/github.com/theupdateframework/notary/client/changelist/change_test.go 165s src/github.com/theupdateframework/notary/client/changelist/changelist.go 165s src/github.com/theupdateframework/notary/client/changelist/changelist_test.go 165s src/github.com/theupdateframework/notary/client/changelist/file_changelist.go 165s src/github.com/theupdateframework/notary/client/changelist/file_changelist_test.go 165s src/github.com/theupdateframework/notary/client/changelist/interface.go 165s src/github.com/theupdateframework/notary/cmd/escrow/config.go 165s src/github.com/theupdateframework/notary/cmd/escrow/config_test.go 165s src/github.com/theupdateframework/notary/cmd/escrow/main.go 165s src/github.com/theupdateframework/notary/cmd/notary/delegations.go 165s src/github.com/theupdateframework/notary/cmd/notary/delegations_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/integration_pkcs11_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/integration_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/keys.go 165s src/github.com/theupdateframework/notary/cmd/notary/keys_pkcs11.go 165s src/github.com/theupdateframework/notary/cmd/notary/keys_pkcs11_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/keys_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/main.go 165s src/github.com/theupdateframework/notary/cmd/notary/main_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/prettyprint.go 165s src/github.com/theupdateframework/notary/cmd/notary/prettyprint_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/repo_factory.go 165s src/github.com/theupdateframework/notary/cmd/notary/tuf.go 165s src/github.com/theupdateframework/notary/cmd/notary/tuf_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/util.go 165s src/github.com/theupdateframework/notary/cmd/notary/util_test.go 165s src/github.com/theupdateframework/notary/cmd/notary/util_unix.go 165s src/github.com/theupdateframework/notary/cmd/notary-server/bootstrap.go 165s src/github.com/theupdateframework/notary/cmd/notary-server/bootstrap_test.go 165s src/github.com/theupdateframework/notary/cmd/notary-server/config.go 165s src/github.com/theupdateframework/notary/cmd/notary-server/main.go 165s src/github.com/theupdateframework/notary/cmd/notary-server/main_test.go 165s src/github.com/theupdateframework/notary/cmd/notary-signer/config.go 165s src/github.com/theupdateframework/notary/cmd/notary-signer/dump_linux.go 165s src/github.com/theupdateframework/notary/cmd/notary-signer/main.go 165s src/github.com/theupdateframework/notary/cmd/notary-signer/main_test.go 165s src/github.com/theupdateframework/notary/cryptoservice/certificate.go 165s src/github.com/theupdateframework/notary/cryptoservice/certificate_test.go 165s src/github.com/theupdateframework/notary/cryptoservice/crypto_service.go 165s src/github.com/theupdateframework/notary/cryptoservice/crypto_service_test.go 165s src/github.com/theupdateframework/notary/passphrase/passphrase.go 165s src/github.com/theupdateframework/notary/passphrase/passphrase_test.go 165s src/github.com/theupdateframework/notary/proto/generator.go 165s src/github.com/theupdateframework/notary/proto/signer.pb.go 165s src/github.com/theupdateframework/notary/proto/signer_grpc.pb.go 165s src/github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto/signer.pb.go 165s src/github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto/signer_grpc.pb.go 165s src/github.com/theupdateframework/notary/server/integration_test.go 165s src/github.com/theupdateframework/notary/server/server.go 165s src/github.com/theupdateframework/notary/server/server_test.go 165s src/github.com/theupdateframework/notary/server/errors/errors.go 165s src/github.com/theupdateframework/notary/server/handlers/changefeed.go 165s src/github.com/theupdateframework/notary/server/handlers/changefeed_test.go 165s src/github.com/theupdateframework/notary/server/handlers/default.go 165s src/github.com/theupdateframework/notary/server/handlers/default_test.go 165s src/github.com/theupdateframework/notary/server/handlers/roles.go 165s src/github.com/theupdateframework/notary/server/handlers/roles_test.go 165s src/github.com/theupdateframework/notary/server/handlers/utils_test.go 165s src/github.com/theupdateframework/notary/server/handlers/validation.go 165s src/github.com/theupdateframework/notary/server/handlers/validation_test.go 165s src/github.com/theupdateframework/notary/server/snapshot/snapshot.go 165s src/github.com/theupdateframework/notary/server/snapshot/snapshot_test.go 165s src/github.com/theupdateframework/notary/server/storage/errors.go 165s src/github.com/theupdateframework/notary/server/storage/interface.go 165s src/github.com/theupdateframework/notary/server/storage/memory.go 165s src/github.com/theupdateframework/notary/server/storage/memory_test.go 165s src/github.com/theupdateframework/notary/server/storage/rethinkdb.go 165s src/github.com/theupdateframework/notary/server/storage/rethinkdb_models.go 165s src/github.com/theupdateframework/notary/server/storage/rethinkdb_test.go 165s src/github.com/theupdateframework/notary/server/storage/sql_models.go 165s src/github.com/theupdateframework/notary/server/storage/sqldb.go 165s src/github.com/theupdateframework/notary/server/storage/sqldb_test.go 165s src/github.com/theupdateframework/notary/server/storage/sqlite_test.go 165s src/github.com/theupdateframework/notary/server/storage/storage_test.go 165s src/github.com/theupdateframework/notary/server/storage/tuf_store.go 165s src/github.com/theupdateframework/notary/server/storage/tuf_store_test.go 165s src/github.com/theupdateframework/notary/server/storage/types.go 165s src/github.com/theupdateframework/notary/server/timestamp/timestamp.go 165s src/github.com/theupdateframework/notary/server/timestamp/timestamp_test.go 165s src/github.com/theupdateframework/notary/signer/signer.go 165s src/github.com/theupdateframework/notary/signer/api/find_key.go 165s src/github.com/theupdateframework/notary/signer/api/rpc_api.go 165s src/github.com/theupdateframework/notary/signer/client/signer_trust.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/cachedcryptoservice.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/cachedcryptoservice_test.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/keydbstore.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/keydbstore_test.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/rethink_keydbstore.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/rethink_keydbstore_test.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/sql_keydbstore.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/sql_keydbstore_test.go 165s src/github.com/theupdateframework/notary/signer/keydbstore/sqlite_test.go 165s src/github.com/theupdateframework/notary/storage/errors.go 165s src/github.com/theupdateframework/notary/storage/filestore.go 165s src/github.com/theupdateframework/notary/storage/filestore_test.go 165s src/github.com/theupdateframework/notary/storage/httpstore.go 165s src/github.com/theupdateframework/notary/storage/httpstore_test.go 165s src/github.com/theupdateframework/notary/storage/interfaces.go 165s src/github.com/theupdateframework/notary/storage/memorystore.go 165s src/github.com/theupdateframework/notary/storage/memorystore_test.go 165s src/github.com/theupdateframework/notary/storage/offlinestore.go 165s src/github.com/theupdateframework/notary/storage/offlinestore_test.go 165s src/github.com/theupdateframework/notary/storage/store_test.go 165s src/github.com/theupdateframework/notary/storage/rethinkdb/bootstrap.go 165s src/github.com/theupdateframework/notary/storage/rethinkdb/rethinkdb.go 165s src/github.com/theupdateframework/notary/trustmanager/errors.go 165s src/github.com/theupdateframework/notary/trustmanager/interfaces.go 165s src/github.com/theupdateframework/notary/trustmanager/keys.go 165s src/github.com/theupdateframework/notary/trustmanager/keys_test.go 165s src/github.com/theupdateframework/notary/trustmanager/keystore.go 165s src/github.com/theupdateframework/notary/trustmanager/keystore_test.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/client.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/client_test.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/generator.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/keystore.pb.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/keystore_grpc.pb.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/server.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/server_test.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks/keystore.pb.go 165s src/github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks/keystore_grpc.pb.go 165s src/github.com/theupdateframework/notary/trustmanager/yubikey/import.go 165s src/github.com/theupdateframework/notary/trustmanager/yubikey/non_pkcs11.go 165s src/github.com/theupdateframework/notary/trustmanager/yubikey/pkcs11_interface.go 165s src/github.com/theupdateframework/notary/trustmanager/yubikey/pkcs11_linux.go 165s src/github.com/theupdateframework/notary/trustmanager/yubikey/yubikeystore.go 165s src/github.com/theupdateframework/notary/trustmanager/yubikey/yubikeystore_test.go 165s src/github.com/theupdateframework/notary/trustpinning/certs.go 165s src/github.com/theupdateframework/notary/trustpinning/trustpin.go 165s src/github.com/theupdateframework/notary/trustpinning/trustpin_test.go 165s src/github.com/theupdateframework/notary/trustpinning/certs_test.go 165s src/github.com/theupdateframework/notary/tuf/builder.go 165s src/github.com/theupdateframework/notary/tuf/tuf.go 165s src/github.com/theupdateframework/notary/tuf/tuf_test.go 165s src/github.com/theupdateframework/notary/tuf/builder_test.go 165s src/github.com/theupdateframework/notary/tuf/data/errors.go 165s src/github.com/theupdateframework/notary/tuf/data/keys.go 165s src/github.com/theupdateframework/notary/tuf/data/roles.go 165s src/github.com/theupdateframework/notary/tuf/data/roles_test.go 165s src/github.com/theupdateframework/notary/tuf/data/root.go 165s src/github.com/theupdateframework/notary/tuf/data/root_test.go 165s src/github.com/theupdateframework/notary/tuf/data/serializer.go 165s src/github.com/theupdateframework/notary/tuf/data/snapshot.go 165s src/github.com/theupdateframework/notary/tuf/data/snapshot_test.go 165s src/github.com/theupdateframework/notary/tuf/data/targets.go 165s src/github.com/theupdateframework/notary/tuf/data/targets_test.go 165s src/github.com/theupdateframework/notary/tuf/data/timestamp.go 165s src/github.com/theupdateframework/notary/tuf/data/timestamp_test.go 165s src/github.com/theupdateframework/notary/tuf/data/types.go 165s src/github.com/theupdateframework/notary/tuf/data/types_test.go 165s src/github.com/theupdateframework/notary/tuf/signed/ed25519.go 165s src/github.com/theupdateframework/notary/tuf/signed/ed25519_test.go 165s src/github.com/theupdateframework/notary/tuf/signed/errors.go 165s src/github.com/theupdateframework/notary/tuf/signed/interface.go 165s src/github.com/theupdateframework/notary/tuf/signed/sign.go 165s src/github.com/theupdateframework/notary/tuf/signed/sign_test.go 165s src/github.com/theupdateframework/notary/tuf/signed/verifiers.go 165s src/github.com/theupdateframework/notary/tuf/signed/verifiers_test.go 165s src/github.com/theupdateframework/notary/tuf/signed/verify.go 165s src/github.com/theupdateframework/notary/tuf/signed/verify_test.go 165s src/github.com/theupdateframework/notary/tuf/testutils/bootstrap.go 165s src/github.com/theupdateframework/notary/tuf/testutils/corrupt_memorystore.go 165s src/github.com/theupdateframework/notary/tuf/testutils/repo.go 165s src/github.com/theupdateframework/notary/tuf/testutils/swizzler.go 165s src/github.com/theupdateframework/notary/tuf/testutils/swizzler_test.go 165s src/github.com/theupdateframework/notary/tuf/testutils/interfaces/cryptoservice.go 165s src/github.com/theupdateframework/notary/tuf/testutils/keys/keys.go 165s src/github.com/theupdateframework/notary/tuf/utils/pkcs8.go 165s src/github.com/theupdateframework/notary/tuf/utils/pkcs8_test.go 165s src/github.com/theupdateframework/notary/tuf/utils/role_sort.go 165s src/github.com/theupdateframework/notary/tuf/utils/role_sort_test.go 165s src/github.com/theupdateframework/notary/tuf/utils/stack.go 165s src/github.com/theupdateframework/notary/tuf/utils/stack_test.go 165s src/github.com/theupdateframework/notary/tuf/utils/utils.go 165s src/github.com/theupdateframework/notary/tuf/utils/utils_test.go 165s src/github.com/theupdateframework/notary/tuf/utils/x509.go 165s src/github.com/theupdateframework/notary/tuf/utils/x509_test.go 165s src/github.com/theupdateframework/notary/tuf/validation/errors.go 165s src/github.com/theupdateframework/notary/tuf/validation/errors_test.go 165s src/github.com/theupdateframework/notary/utils/auth_test.go 165s src/github.com/theupdateframework/notary/utils/configuration.go 165s src/github.com/theupdateframework/notary/utils/configuration_linux_test.go 165s src/github.com/theupdateframework/notary/utils/configuration_nowindows.go 165s src/github.com/theupdateframework/notary/utils/configuration_nowindows_test.go 165s src/github.com/theupdateframework/notary/utils/configuration_test.go 165s src/github.com/theupdateframework/notary/utils/http.go 165s src/github.com/theupdateframework/notary/utils/http_test.go 165s src/github.com/theupdateframework/notary/version/version.go 165s cd _build && go install -trimpath -v -p 2 -tags pkcs11 github.com/theupdateframework/notary github.com/theupdateframework/notary/client github.com/theupdateframework/notary/client/changelist github.com/theupdateframework/notary/cmd/escrow github.com/theupdateframework/notary/cmd/notary github.com/theupdateframework/notary/cmd/notary-server github.com/theupdateframework/notary/cmd/notary-signer github.com/theupdateframework/notary/cryptoservice github.com/theupdateframework/notary/passphrase github.com/theupdateframework/notary/proto github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto github.com/theupdateframework/notary/server github.com/theupdateframework/notary/server/errors github.com/theupdateframework/notary/server/handlers github.com/theupdateframework/notary/server/snapshot github.com/theupdateframework/notary/server/storage github.com/theupdateframework/notary/server/timestamp github.com/theupdateframework/notary/signer github.com/theupdateframework/notary/signer/api github.com/theupdateframework/notary/signer/client github.com/theupdateframework/notary/signer/keydbstore github.com/theupdateframework/notary/storage github.com/theupdateframework/notary/storage/rethinkdb github.com/theupdateframework/notary/trustmanager github.com/theupdateframework/notary/trustmanager/remoteks github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks github.com/theupdateframework/notary/trustmanager/yubikey github.com/theupdateframework/notary/trustpinning github.com/theupdateframework/notary/tuf github.com/theupdateframework/notary/tuf/data github.com/theupdateframework/notary/tuf/signed github.com/theupdateframework/notary/tuf/testutils github.com/theupdateframework/notary/tuf/testutils/interfaces github.com/theupdateframework/notary/tuf/testutils/keys github.com/theupdateframework/notary/tuf/utils github.com/theupdateframework/notary/tuf/validation github.com/theupdateframework/notary/utils github.com/theupdateframework/notary/version 165s internal/unsafeheader 165s internal/goarch 165s internal/cpu 165s internal/abi 166s internal/bytealg 166s internal/byteorder 166s internal/chacha8rand 166s internal/coverage/rtcov 166s internal/godebugs 166s internal/goexperiment 166s internal/goos 166s internal/profilerecord 166s internal/runtime/atomic 166s internal/runtime/syscall 166s internal/stringslite 166s internal/runtime/exithook 166s runtime/internal/math 166s runtime/internal/sys 166s internal/race 166s sync/atomic 166s runtime 166s math/bits 166s math 166s unicode/utf8 166s cmp 166s internal/asan 166s internal/itoa 166s internal/msan 166s unicode 166s encoding 166s unicode/utf16 166s log/internal 166s crypto/internal/alias 166s crypto/internal/boring/sig 166s vendor/golang.org/x/crypto/cryptobyte/asn1 166s internal/nettrace 166s container/list 166s vendor/golang.org/x/crypto/internal/alias 166s github.com/pelletier/go-toml/v2/internal/characters 166s google.golang.org/protobuf/internal/flags 166s google.golang.org/protobuf/internal/set 166s google.golang.org/grpc/serviceconfig 166s github.com/klauspost/compress 166s github.com/theupdateframework/notary/version 166s github.com/lib/pq/oid 169s internal/reflectlite 169s sync 169s iter 169s slices 169s internal/bisect 169s errors 169s internal/godebug 169s io 169s strconv 169s hash 169s internal/oserror 169s path 169s syscall 169s crypto 169s crypto/md5 169s internal/testlog 169s bytes 169s reflect 170s time 170s io/fs 170s internal/filepathlite 170s internal/syscall/unix 170s internal/poll 171s internal/syscall/execenv 171s os 171s encoding/binary 171s encoding/base64 171s internal/fmtsort 171s strings 171s github.com/theupdateframework/notary 171s fmt 171s sort 171s bufio 171s context 171s encoding/json 171s github.com/docker/go/canonical/json 172s golang.org/x/sys/unix 172s log 172s crypto/subtle 172s crypto/cipher 172s crypto/internal/boring 172s crypto/internal/randutil 172s math/rand 172s math/big 173s crypto/rand 173s github.com/sirupsen/logrus 173s github.com/docker/distribution/uuid 173s crypto/aes 173s crypto/internal/edwards25519/field 173s crypto/internal/nistec/fiat 173s embed 173s crypto/internal/bigmod 173s crypto/internal/boring/bbig 173s crypto/sha512 173s encoding/asn1 174s crypto/internal/nistec 174s vendor/golang.org/x/crypto/cryptobyte 174s crypto/rsa 174s crypto/ecdh 174s crypto/elliptic 174s crypto/sha256 174s crypto/des 174s crypto/ecdsa 174s crypto/dsa 174s crypto/internal/edwards25519 174s crypto/ed25519 174s crypto/sha1 174s encoding/hex 174s encoding/pem 174s crypto/x509/pkix 174s vendor/golang.org/x/net/dns/dnsmessage 174s internal/singleflight 174s math/rand/v2 174s internal/concurrent 174s internal/weak 174s unique 174s net/netip 175s runtime/cgo 175s net/url 175s path/filepath 175s golang.org/x/crypto/ed25519 175s io/ioutil 175s regexp/syntax 175s net 175s regexp 175s crypto/hmac 175s golang.org/x/crypto/pbkdf2 175s github.com/theupdateframework/notary/tuf/validation 175s mime 176s mime/quotedprintable 176s compress/flate 176s hash/crc32 176s compress/gzip 176s vendor/golang.org/x/sys/cpu 176s vendor/golang.org/x/crypto/chacha20 176s vendor/golang.org/x/crypto/internal/poly1305 176s vendor/golang.org/x/crypto/chacha20poly1305 176s vendor/golang.org/x/crypto/hkdf 176s crypto/internal/hpke 176s vendor/golang.org/x/crypto/sha3 176s crypto/internal/mlkem768 176s crypto/rc4 176s vendor/golang.org/x/text/transform 176s vendor/golang.org/x/text/unicode/bidi 177s vendor/golang.org/x/text/secure/bidirule 177s vendor/golang.org/x/text/unicode/norm 177s vendor/golang.org/x/net/idna 177s crypto/x509 178s net/textproto 178s mime/multipart 178s vendor/golang.org/x/net/http/httpguts 178s vendor/golang.org/x/net/http/httpproxy 178s crypto/tls 178s github.com/theupdateframework/notary/tuf/data 178s github.com/theupdateframework/notary/client/changelist 178s github.com/theupdateframework/notary/tuf/utils 178s vendor/golang.org/x/net/http2/hpack 178s maps 178s net/http/internal 178s net/http/internal/ascii 178s github.com/miekg/pkcs11 179s net/http/httptrace 179s net/http 182s github.com/theupdateframework/notary/storage 182s github.com/theupdateframework/notary/trustmanager 182s github.com/theupdateframework/notary/cryptoservice 182s github.com/theupdateframework/notary/tuf/signed 182s github.com/theupdateframework/notary/trustpinning 183s github.com/theupdateframework/notary/tuf 183s github.com/theupdateframework/notary/trustmanager/yubikey 183s flag 183s github.com/theupdateframework/notary/client 183s encoding/csv 183s github.com/fsnotify/fsnotify/internal 183s github.com/fsnotify/fsnotify 183s github.com/mitchellh/mapstructure 183s github.com/spf13/afero/internal/common 183s github.com/spf13/afero/mem 183s golang.org/x/text/transform 183s golang.org/x/text/runes 183s golang.org/x/text/unicode/norm 183s html 183s text/template/parse 184s github.com/spf13/afero 184s text/template 184s github.com/spf13/jwalterweatherman 184s html/template 184s github.com/spf13/pflag 185s github.com/spf13/cast 185s github.com/spf13/viper/internal/encoding 185s github.com/subosito/gotenv 185s github.com/spf13/viper/internal/encoding/dotenv 185s github.com/hashicorp/hcl/hcl/strconv 185s github.com/hashicorp/hcl/hcl/token 185s text/tabwriter 185s gopkg.in/ini.v1 185s github.com/hashicorp/hcl/hcl/ast 185s github.com/hashicorp/hcl/hcl/scanner 185s github.com/hashicorp/hcl/hcl/parser 185s github.com/hashicorp/hcl/json/token 185s github.com/hashicorp/hcl/json/scanner 185s github.com/hashicorp/hcl/json/parser 185s github.com/hashicorp/hcl 186s github.com/hashicorp/hcl/hcl/printer 186s github.com/spf13/viper/internal/encoding/ini 186s github.com/magiconair/properties 186s github.com/spf13/viper/internal/encoding/hcl 186s github.com/spf13/viper/internal/encoding/json 186s github.com/pelletier/go-toml/v2/internal/danger 186s github.com/pelletier/go-toml/v2/unstable 186s github.com/spf13/viper/internal/encoding/javaproperties 186s github.com/pelletier/go-toml/v2/internal/tracker 186s gopkg.in/yaml.v3 186s github.com/pelletier/go-toml/v2 186s github.com/spf13/viper/internal/encoding/toml 186s hash/fnv 186s google.golang.org/protobuf/internal/detrand 186s google.golang.org/protobuf/internal/errors 186s google.golang.org/protobuf/encoding/protowire 186s google.golang.org/protobuf/internal/pragma 186s google.golang.org/protobuf/reflect/protoreflect 187s github.com/spf13/viper/internal/encoding/yaml 187s github.com/spf13/viper 187s google.golang.org/protobuf/internal/descfmt 187s google.golang.org/protobuf/internal/descopts 187s google.golang.org/protobuf/internal/editiondefaults 187s go/token 187s google.golang.org/protobuf/internal/strs 187s google.golang.org/protobuf/internal/encoding/text 187s google.golang.org/protobuf/internal/encoding/messageset 187s google.golang.org/protobuf/internal/genid 187s google.golang.org/protobuf/internal/order 187s google.golang.org/protobuf/reflect/protoregistry 187s google.golang.org/protobuf/internal/encoding/defval 187s google.golang.org/protobuf/runtime/protoiface 187s google.golang.org/protobuf/internal/version 187s golang.org/x/net/context 187s golang.org/x/net/internal/timeseries 187s google.golang.org/protobuf/proto 187s golang.org/x/net/trace 187s google.golang.org/protobuf/internal/filedesc 188s google.golang.org/protobuf/encoding/prototext 188s google.golang.org/grpc/backoff 188s google.golang.org/grpc/internal/grpclog 188s google.golang.org/grpc/grpclog 188s google.golang.org/grpc/connectivity 188s google.golang.org/grpc/attributes 188s google.golang.org/grpc/internal/credentials 188s google.golang.org/grpc/credentials 188s google.golang.org/protobuf/internal/encoding/tag 188s google.golang.org/grpc/internal 188s google.golang.org/protobuf/internal/impl 188s google.golang.org/grpc/internal/channelz 188s google.golang.org/grpc/channelz 188s google.golang.org/grpc/metadata 188s google.golang.org/grpc/resolver 188s google.golang.org/grpc/balancer 188s google.golang.org/grpc/balancer/base 188s google.golang.org/grpc/internal/grpcrand 188s google.golang.org/grpc/balancer/roundrobin 188s google.golang.org/grpc/codes 188s google.golang.org/grpc/credentials/insecure 189s google.golang.org/grpc/internal/grpcutil 189s google.golang.org/grpc/encoding 189s google.golang.org/grpc/internal/backoff 189s google.golang.org/grpc/internal/balancer/gracefulswitch 189s google.golang.org/grpc/internal/balancerload 189s google.golang.org/grpc/internal/buffer 189s google.golang.org/grpc/internal/grpcsync 189s google.golang.org/grpc/internal/idle 189s google.golang.org/grpc/internal/metadata 189s google.golang.org/protobuf/internal/encoding/json 189s google.golang.org/protobuf/encoding/protojson 189s google.golang.org/grpc/internal/serviceconfig 189s google.golang.org/grpc/internal/resolver 189s google.golang.org/grpc/internal/resolver/passthrough 189s google.golang.org/grpc/internal/transport/networktype 189s google.golang.org/grpc/internal/resolver/unix 189s golang.org/x/text/unicode/bidi 190s golang.org/x/text/secure/bidirule 190s golang.org/x/net/idna 190s google.golang.org/protobuf/internal/filetype 190s google.golang.org/protobuf/runtime/protoimpl 190s google.golang.org/protobuf/types/known/emptypb 190s github.com/golang/protobuf/ptypes/empty 190s google.golang.org/protobuf/protoadapt 190s google.golang.org/protobuf/types/known/durationpb 190s google.golang.org/grpc/encoding/proto 190s google.golang.org/protobuf/types/known/timestamppb 190s github.com/golang/protobuf/ptypes/duration 190s google.golang.org/protobuf/types/known/anypb 190s github.com/golang/protobuf/ptypes/timestamp 190s google.golang.org/grpc/binarylog/grpc_binarylog_v1 190s google.golang.org/genproto/googleapis/rpc/status 191s google.golang.org/grpc/internal/status 191s google.golang.org/grpc/internal/pretty 191s google.golang.org/grpc/status 191s golang.org/x/net/http/httpguts 191s golang.org/x/net/http2/hpack 191s google.golang.org/grpc/internal/binarylog 191s golang.org/x/net/http2 191s google.golang.org/grpc/internal/syscall 191s google.golang.org/grpc/keepalive 191s google.golang.org/grpc/peer 191s google.golang.org/grpc/stats 191s google.golang.org/grpc/tap 191s net/http/httputil 191s google.golang.org/grpc/balancer/grpclb/state 191s google.golang.org/grpc/internal/envconfig 191s google.golang.org/grpc/internal/resolver/dns/internal 191s google.golang.org/grpc/internal/resolver/dns 191s google.golang.org/grpc/resolver/dns 191s github.com/bugsnag/bugsnag-go/device 191s github.com/pkg/errors 191s github.com/bugsnag/bugsnag-go/errors 191s github.com/bugsnag/bugsnag-go/headers 191s os/exec 192s os/signal 192s github.com/bugsnag/panicwrap 192s google.golang.org/grpc/internal/transport 192s database/sql/driver 192s github.com/google/uuid 192s github.com/bugsnag/bugsnag-go/sessions 192s github.com/bugsnag/bugsnag-go 192s github.com/Shopify/logrus-bugsnag 192s github.com/gorilla/mux 192s github.com/docker/distribution/context 193s github.com/docker/distribution/registry/api/errcode 193s github.com/docker/distribution/registry/auth 193s github.com/docker/go-connections/tlsconfig 193s google.golang.org/grpc 193s database/sql 193s filippo.io/edwards25519/field 193s filippo.io/edwards25519 193s github.com/go-sql-driver/mysql 194s github.com/theupdateframework/notary/trustmanager/remoteks 194s github.com/theupdateframework/notary/utils 194s github.com/opencontainers/go-digest 194s github.com/distribution/reference 194s github.com/theupdateframework/notary/cmd/escrow 194s github.com/opencontainers/image-spec/specs-go 194s github.com/opencontainers/image-spec/specs-go/v1 194s github.com/docker/distribution 194s github.com/docker/distribution/registry/api/v2 194s github.com/docker/distribution/registry/client/auth/challenge 195s github.com/docker/distribution/registry/client/transport 195s expvar 195s github.com/beorn7/perks/quantile 195s github.com/cespare/xxhash 195s github.com/prometheus/client_model/go 195s github.com/prometheus/common/model 195s runtime/metrics 195s github.com/prometheus/client_golang/prometheus/internal 195s github.com/munnerz/goautoneg 195s google.golang.org/protobuf/encoding/protodelim 195s github.com/prometheus/common/expfmt 196s github.com/prometheus/procfs/internal/fs 196s github.com/prometheus/procfs/internal/util 196s github.com/prometheus/procfs 196s runtime/debug 196s github.com/klauspost/compress/fse 197s github.com/klauspost/compress/huff0 197s github.com/prometheus/client_golang/prometheus 197s github.com/klauspost/compress/internal/snapref 197s github.com/klauspost/compress/zstd 197s github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil/header 198s github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil 198s github.com/spf13/cobra 198s golang.org/x/term 198s github.com/theupdateframework/notary/passphrase 198s github.com/docker/distribution/health 198s github.com/prometheus/client_golang/prometheus/promhttp 198s golang.org/x/crypto/blowfish 198s golang.org/x/crypto/bcrypt 199s github.com/docker/distribution/registry/auth/htpasswd 199s encoding/base32 199s github.com/docker/libtrust 199s github.com/docker/go-metrics 199s github.com/docker/distribution/registry/auth/token 199s github.com/docker/distribution/metrics 199s github.com/docker/distribution/registry/storage/cache 199s github.com/lib/pq/scram 199s github.com/docker/distribution/registry/storage/cache/memory 199s os/user 199s github.com/docker/distribution/registry/client 199s github.com/docker/distribution/registry/client/auth 199s github.com/theupdateframework/notary/cmd/notary 200s github.com/lib/pq 200s google.golang.org/protobuf/types/descriptorpb 201s google.golang.org/protobuf/types/gofeaturespb 201s google.golang.org/protobuf/reflect/protodesc 201s github.com/golang/protobuf/proto 202s github.com/theupdateframework/notary/vendor/github.com/prometheus/client_golang/prometheus 202s github.com/theupdateframework/notary/server/errors 202s github.com/jinzhu/inflection 202s go/scanner 202s github.com/hailocab/go-hostpool 202s github.com/opentracing/opentracing-go/log 202s go/ast 202s github.com/opentracing/opentracing-go 202s github.com/opentracing/opentracing-go/ext 202s gopkg.in/rethinkdb/rethinkdb-go.v6/vendor/gopkg.in/cenkalti/backoff.v2 202s gopkg.in/rethinkdb/rethinkdb-go.v6/encoding 203s github.com/jinzhu/gorm 203s gopkg.in/rethinkdb/rethinkdb-go.v6/ql2 203s gopkg.in/rethinkdb/rethinkdb-go.v6/types 203s gopkg.in/rethinkdb/rethinkdb-go.v6 204s github.com/theupdateframework/notary/proto 204s google.golang.org/grpc/health/grpc_health_v1 204s github.com/theupdateframework/notary/storage/rethinkdb 204s github.com/theupdateframework/notary/server/storage 204s github.com/theupdateframework/notary/signer/client 206s internal/profile 206s github.com/theupdateframework/notary/server/snapshot 206s github.com/theupdateframework/notary/server/timestamp 206s github.com/theupdateframework/notary/server/handlers 206s github.com/theupdateframework/notary/server 206s runtime/pprof 206s runtime/trace 206s github.com/theupdateframework/notary/signer 206s github.com/theupdateframework/notary/signer/api 206s github.com/dvsekhvalnov/jose2go/base64url 206s github.com/dvsekhvalnov/jose2go/arrays 206s github.com/dvsekhvalnov/jose2go/aes 206s github.com/dvsekhvalnov/jose2go/compact 206s github.com/dvsekhvalnov/jose2go/kdf 206s github.com/dvsekhvalnov/jose2go/keys/ecc 206s net/http/pprof 206s github.com/dvsekhvalnov/jose2go/padding 206s github.com/dvsekhvalnov/jose2go 206s github.com/theupdateframework/notary/cmd/notary-server 206s github.com/theupdateframework/notary/signer/keydbstore 206s google.golang.org/grpc/health 206s github.com/theupdateframework/notary/cmd/notary-signer 208s github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto 208s github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks 208s github.com/theupdateframework/notary/tuf/testutils/keys 208s github.com/davecgh/go-spew/spew 208s github.com/theupdateframework/notary/tuf/testutils 208s github.com/pmezard/go-difflib/difflib 208s net/http/internal/testcert 208s net/http/httptest 208s internal/sysinfo 208s testing 208s github.com/stretchr/testify/assert 209s github.com/stretchr/testify/require 209s github.com/theupdateframework/notary/tuf/testutils/interfaces 209s make[1]: Leaving directory '/tmp/autopkgtest.M2Z2np/autopkgtest_tmp' 209s dh_auto_test -O--builddirectory=/tmp/autopkgtest.M2Z2np/autopkgtest_tmp/_build -O--buildsystem=golang 211s cd _build && go test -vet=off -v -p 2 github.com/theupdateframework/notary github.com/theupdateframework/notary/client github.com/theupdateframework/notary/client/changelist github.com/theupdateframework/notary/cmd/escrow github.com/theupdateframework/notary/cmd/notary github.com/theupdateframework/notary/cmd/notary-server github.com/theupdateframework/notary/cmd/notary-signer github.com/theupdateframework/notary/cryptoservice github.com/theupdateframework/notary/passphrase github.com/theupdateframework/notary/proto github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto github.com/theupdateframework/notary/server github.com/theupdateframework/notary/server/errors github.com/theupdateframework/notary/server/handlers github.com/theupdateframework/notary/server/snapshot github.com/theupdateframework/notary/server/storage github.com/theupdateframework/notary/server/timestamp github.com/theupdateframework/notary/signer github.com/theupdateframework/notary/signer/api github.com/theupdateframework/notary/signer/client github.com/theupdateframework/notary/signer/keydbstore github.com/theupdateframework/notary/storage github.com/theupdateframework/notary/storage/rethinkdb github.com/theupdateframework/notary/trustmanager github.com/theupdateframework/notary/trustmanager/remoteks github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks github.com/theupdateframework/notary/trustmanager/yubikey github.com/theupdateframework/notary/trustpinning github.com/theupdateframework/notary/tuf github.com/theupdateframework/notary/tuf/data github.com/theupdateframework/notary/tuf/signed github.com/theupdateframework/notary/tuf/testutils github.com/theupdateframework/notary/tuf/testutils/interfaces github.com/theupdateframework/notary/tuf/testutils/keys github.com/theupdateframework/notary/tuf/utils github.com/theupdateframework/notary/tuf/validation github.com/theupdateframework/notary/utils github.com/theupdateframework/notary/version 216s ? github.com/theupdateframework/notary [no test files] 265s === RUN Test0Dot1Migration 265s --- PASS: Test0Dot1Migration (0.02s) 265s === RUN Test0Dot3Migration 265s --- PASS: Test0Dot3Migration (0.01s) 265s === RUN Test0Dot1RepoFormat 265s time="2025-02-16T02:55:43Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s --- PASS: Test0Dot1RepoFormat (0.06s) 265s === RUN Test0Dot3RepoFormat 265s backwards_compatibility_test.go:248: Disable FTBFS timebomb. https://bugs.debian.org/1078632 265s --- SKIP: Test0Dot3RepoFormat (0.00s) 265s === RUN TestDownloading0Dot1RepoFormat 265s --- PASS: TestDownloading0Dot1RepoFormat (0.00s) 265s === RUN TestDownloading0Dot3RepoFormat 265s backwards_compatibility_test.go:343: Disable FTBFS timebomb. https://bugs.debian.org/1078632 265s --- SKIP: TestDownloading0Dot3RepoFormat (0.00s) 265s === RUN TestInitRepositoryManagedRolesIncludingRoot 265s --- PASS: TestInitRepositoryManagedRolesIncludingRoot (0.00s) 265s === RUN TestInitRepositoryManagedRolesInvalidRole 265s --- PASS: TestInitRepositoryManagedRolesInvalidRole (0.00s) 265s === RUN TestInitRepositoryManagedRolesIncludingTargets 265s --- PASS: TestInitRepositoryManagedRolesIncludingTargets (0.00s) 265s === RUN TestInitRepositoryManagedRolesIncludingTimestamp 265s --- PASS: TestInitRepositoryManagedRolesIncludingTimestamp (0.01s) 265s === RUN TestInitRepositoryWithCerts 265s --- PASS: TestInitRepositoryWithCerts (0.01s) 265s === RUN TestMatchKeyIDsWithPublicKeys 265s --- PASS: TestMatchKeyIDsWithPublicKeys (0.01s) 265s === RUN TestInitRepositoryNeedsRemoteTimestampKey 265s --- PASS: TestInitRepositoryNeedsRemoteTimestampKey (0.01s) 265s === RUN TestInitRepositoryNeedsRemoteSnapshotKey 265s --- PASS: TestInitRepositoryNeedsRemoteSnapshotKey (0.01s) 265s === RUN TestInitRepoServerOnlyManagesTimestampKey 265s --- PASS: TestInitRepoServerOnlyManagesTimestampKey (0.06s) 265s === RUN TestInitRepoServerManagesTimestampAndSnapshotKeys 265s --- PASS: TestInitRepoServerManagesTimestampAndSnapshotKeys (0.05s) 265s === RUN TestInitRepoAttemptsExceeded 265s --- PASS: TestInitRepoAttemptsExceeded (0.05s) 265s === RUN TestInitRepoPasswordInvalid 265s --- PASS: TestInitRepoPasswordInvalid (0.01s) 265s === RUN TestAddTargetToTargetRoleByDefault 265s --- PASS: TestAddTargetToTargetRoleByDefault (0.02s) 265s === RUN TestAddTargetToSpecifiedValidRoles 265s --- PASS: TestAddTargetToSpecifiedValidRoles (0.02s) 265s === RUN TestAddTargetToSpecifiedInvalidRoles 265s --- PASS: TestAddTargetToSpecifiedInvalidRoles (0.02s) 265s === RUN TestAddTargetWithInvalidTarget 265s --- PASS: TestAddTargetWithInvalidTarget (0.01s) 265s === RUN TestAddTargetErrorWritingChanges 265s --- PASS: TestAddTargetErrorWritingChanges (0.01s) 265s === RUN TestRemoveTargetToTargetRoleByDefault 265s --- PASS: TestRemoveTargetToTargetRoleByDefault (0.02s) 265s === RUN TestRemoveTargetFromSpecifiedValidRoles 265s --- PASS: TestRemoveTargetFromSpecifiedValidRoles (0.02s) 265s === RUN TestRemoveTargetToSpecifiedInvalidRoles 265s --- PASS: TestRemoveTargetToSpecifiedInvalidRoles (0.02s) 265s === RUN TestRemoveTargetErrorWritingChanges 265s --- PASS: TestRemoveTargetErrorWritingChanges (0.01s) 265s === RUN TestListTarget 265s --- PASS: TestListTarget (0.19s) 265s === RUN TestListTargetRestrictsDelegationPaths 265s --- PASS: TestListTargetRestrictsDelegationPaths (0.02s) 265s === RUN TestValidateRootKey 265s --- PASS: TestValidateRootKey (0.02s) 265s === RUN TestGetChangelist 265s --- PASS: TestGetChangelist (0.02s) 265s === RUN TestPublishBareRepo 265s --- PASS: TestPublishBareRepo (0.20s) 265s === RUN TestPublishUninitializedRepo 265s time="2025-02-16T02:55:43Z" level=info msg="No TUF data found locally or remotely - initializing repository docker.com/notary for the first time" 265s --- PASS: TestPublishUninitializedRepo (0.01s) 265s === RUN TestPublishClientHasSnapshotKey 265s --- PASS: TestPublishClientHasSnapshotKey (0.15s) 265s === RUN TestPublishAfterInitServerHasSnapshotKey 265s --- PASS: TestPublishAfterInitServerHasSnapshotKey (0.14s) 265s === RUN TestPublishAfterPullServerHasSnapshotKey 265s --- PASS: TestPublishAfterPullServerHasSnapshotKey (0.06s) 265s === RUN TestPublishNoOneHasSnapshotKey 265s --- PASS: TestPublishNoOneHasSnapshotKey (0.04s) 265s === RUN TestPublishSnapshotCorrupt 265s --- PASS: TestPublishSnapshotCorrupt (0.08s) 265s === RUN TestPublishTargetsCorrupt 265s --- PASS: TestPublishTargetsCorrupt (0.04s) 265s === RUN TestPublishRootCorrupt 265s time="2025-02-16T02:55:44Z" level=error msg="Could not publish Repository since we could not update: invalid character 'h' in literal true (expecting 'r')" 265s time="2025-02-16T02:55:44Z" level=error msg="Could not publish Repository since we could not update: invalid character 'h' in literal true (expecting 'r')" 265s --- PASS: TestPublishRootCorrupt (0.03s) 265s === RUN TestPublishSnapshotLocalKeysCreatedFirst 265s --- PASS: TestPublishSnapshotLocalKeysCreatedFirst (0.00s) 265s === RUN TestPublishDelegations 265s --- PASS: TestPublishDelegations (0.06s) 265s === RUN TestPublishDelegationsX509 265s --- PASS: TestPublishDelegationsX509 (0.06s) 265s === RUN TestPublishTargetsDelegationScopeFailIfNoKeys 265s time="2025-02-16T02:55:44Z" level=error msg="couldn't add target to targets/a/b: tuf: invalid role targets/a/b. delegation does not exist" 265s time="2025-02-16T02:55:44Z" level=error msg="couldn't add target to targets/a/b: tuf: invalid role targets/a/b. delegation does not exist" 265s --- PASS: TestPublishTargetsDelegationScopeFailIfNoKeys (0.05s) 265s === RUN TestPublishTargetsDelegationSuccessLocallyHasRoles 265s --- PASS: TestPublishTargetsDelegationSuccessLocallyHasRoles (0.06s) 265s === RUN TestPublishTargetsDelegationNoTargetsKeyNeeded 265s --- PASS: TestPublishTargetsDelegationNoTargetsKeyNeeded (0.06s) 265s === RUN TestPublishTargetsDelegationSuccessNeedsToDownloadRoles 265s --- PASS: TestPublishTargetsDelegationSuccessNeedsToDownloadRoles (0.07s) 265s === RUN TestPublishTargetsDelegationFromTwoRepos 265s --- PASS: TestPublishTargetsDelegationFromTwoRepos (0.05s) 265s === RUN TestPublishRemoveDelegationKeyFromDelegationRole 265s time="2025-02-16T02:55:44Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:44Z" level=error msg="couldn't add target to targets/a: could not find necessary signing keys, at least one of these keys must be available: dc73ecad0a909327e608b5f260575cf213d070935794afc1c3db500672ee5a2b" 265s --- PASS: TestPublishRemoveDelegationKeyFromDelegationRole (0.03s) 265s === RUN TestPublishRemoveDelegation 265s time="2025-02-16T02:55:44Z" level=warning msg="role targets/a has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 265s time="2025-02-16T02:55:44Z" level=warning msg="role targets/a has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 265s time="2025-02-16T02:55:44Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:44Z" level=error msg="couldn't add target to targets/a: could not find necessary signing keys, at least one of these keys must be available: " 265s --- PASS: TestPublishRemoveDelegation (0.04s) 265s === RUN TestPublishSucceedsDespiteDelegationCorrupt 265s --- PASS: TestPublishSucceedsDespiteDelegationCorrupt (0.04s) 265s === RUN TestRotateKeyInvalidRole 265s --- PASS: TestRotateKeyInvalidRole (0.02s) 265s === RUN TestRemoteRotationError 265s --- PASS: TestRemoteRotationError (0.01s) 265s === RUN TestRemoteRotationEndpointError 265s --- PASS: TestRemoteRotationEndpointError (0.01s) 265s === RUN TestRemoteRotationNoRootKey 265s --- PASS: TestRemoteRotationNoRootKey (0.02s) 265s === RUN TestRemoteRotationNoInit 265s time="2025-02-16T02:55:45Z" level=info msg="No TUF data found locally or remotely - initializing repository docker.com/notary for the first time" 265s --- PASS: TestRemoteRotationNoInit (0.02s) 265s === RUN TestRotateBeforePublishFromRemoteKeyToLocalKey 265s --- PASS: TestRotateBeforePublishFromRemoteKeyToLocalKey (0.05s) 265s === RUN TestRotateKeyAfterPublishNoServerManagementChange 265s --- PASS: TestRotateKeyAfterPublishNoServerManagementChange (0.16s) 265s === RUN TestRotateKeyAfterPublishServerManagementChange 265s --- PASS: TestRotateKeyAfterPublishServerManagementChange (0.18s) 265s === RUN TestRotateRootKey 265s --- PASS: TestRotateRootKey (0.06s) 265s === RUN TestRotateRootMultiple 265s --- PASS: TestRotateRootMultiple (0.06s) 265s === RUN TestRotateRootKeyProvided 265s --- PASS: TestRotateRootKeyProvided (0.05s) 265s === RUN TestRotateRootKeyLegacySupport 265s --- PASS: TestRotateRootKeyLegacySupport (0.07s) 265s === RUN TestRemoteServerUnavailableNoLocalCache 265s time="2025-02-16T02:55:45Z" level=error msg="Could not publish Repository since we could not update: unable to reach trust server at this time: 500." 265s --- PASS: TestRemoteServerUnavailableNoLocalCache (0.00s) 265s === RUN TestAddDelegationChangefileValid 265s --- PASS: TestAddDelegationChangefileValid (0.01s) 265s === RUN TestAddDelegationChangefileApplicable 265s --- PASS: TestAddDelegationChangefileApplicable (0.01s) 265s === RUN TestAddDelegationErrorWritingChanges 265s --- PASS: TestAddDelegationErrorWritingChanges (0.01s) 265s === RUN TestRemoveDelegationChangefileValid 265s --- PASS: TestRemoveDelegationChangefileValid (0.01s) 265s === RUN TestRemoveDelegationChangefileApplicable 265s time="2025-02-16T02:55:45Z" level=warning msg="role targets/a has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 265s time="2025-02-16T02:55:45Z" level=warning msg="role targets/a has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 265s --- PASS: TestRemoveDelegationChangefileApplicable (0.01s) 265s === RUN TestClearAllPathsDelegationChangefileApplicable 265s --- PASS: TestClearAllPathsDelegationChangefileApplicable (0.01s) 265s === RUN TestFullAddDelegationChangefileApplicable 265s --- PASS: TestFullAddDelegationChangefileApplicable (0.01s) 265s === RUN TestFullRemoveDelegationChangefileApplicable 265s --- PASS: TestFullRemoveDelegationChangefileApplicable (0.01s) 265s === RUN TestRemoveDelegationErrorWritingChanges 265s --- PASS: TestRemoveDelegationErrorWritingChanges (0.01s) 265s === RUN TestClientInvalidURL 265s --- PASS: TestClientInvalidURL (0.00s) 265s === RUN TestPublishTargetsDelegationCanUseUserKeyWithArbitraryRole 265s --- PASS: TestPublishTargetsDelegationCanUseUserKeyWithArbitraryRole (0.11s) 265s === RUN TestDeleteRepo 265s --- PASS: TestDeleteRepo (0.02s) 265s === RUN TestDeleteRemoteRepo 265s --- PASS: TestDeleteRemoteRepo (0.05s) 265s === RUN TestListRoles 265s --- PASS: TestListRoles (0.07s) 265s === RUN TestGetAllTargetInfo 265s --- PASS: TestGetAllTargetInfo (0.04s) 265s === RUN TestUpdateSucceedsEvenIfCannotWriteNewRepo 265s time="2025-02-16T02:55:46Z" level=error msg="could not save root to cache: Non-writable" 265s --- PASS: TestUpdateSucceedsEvenIfCannotWriteNewRepo (0.03s) 265s === RUN TestUpdateSucceedsEvenIfCannotWriteExistingRepo 265s --- PASS: TestUpdateSucceedsEvenIfCannotWriteExistingRepo (0.12s) 265s === RUN TestUpdateInOfflineMode 265s time="2025-02-16T02:55:46Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s time="2025-02-16T02:55:46Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s --- PASS: TestUpdateInOfflineMode (0.32s) 265s === RUN TestUpdateReplacesCorruptOrMissingMetadata 265s time="2025-02-16T02:55:46Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:46Z" level=error msg="Metadata for root expired" 265s --- PASS: TestUpdateReplacesCorruptOrMissingMetadata (0.23s) 265s === RUN TestUpdateFailsIfServerRootKeyChangedWithoutMultiSign 265s time="2025-02-16T02:55:46Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:46Z" level=error msg="Metadata for root expired" 265s --- PASS: TestUpdateFailsIfServerRootKeyChangedWithoutMultiSign (0.03s) 265s === RUN TestUpdateRemoteRootNotExistNoLocalCache 265s --- PASS: TestUpdateRemoteRootNotExistNoLocalCache (0.01s) 265s === RUN TestUpdateRemoteRootNotExistCanUseLocalCache 265s --- PASS: TestUpdateRemoteRootNotExistCanUseLocalCache (0.02s) 265s === RUN TestUpdateRemoteRootNotExistCannotUseLocalCache 265s --- PASS: TestUpdateRemoteRootNotExistCannotUseLocalCache (0.02s) 265s === RUN TestUpdateRemoteRoot50XNoLocalCache 265s --- PASS: TestUpdateRemoteRoot50XNoLocalCache (0.01s) 265s === RUN TestUpdateRemoteRoot50XCanUseLocalCache 265s --- PASS: TestUpdateRemoteRoot50XCanUseLocalCache (0.02s) 265s === RUN TestUpdateRemoteRoot50XCannotUseLocalCache 265s --- PASS: TestUpdateRemoteRoot50XCannotUseLocalCache (0.02s) 265s === RUN TestUpdateNonRootRemoteMissingMetadataNoLocalCache 265s --- PASS: TestUpdateNonRootRemoteMissingMetadataNoLocalCache (0.04s) 265s === RUN TestUpdateNonRootRemoteMissingMetadataCanUseLocalCache 265s time="2025-02-16T02:55:46Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s --- PASS: TestUpdateNonRootRemoteMissingMetadataCanUseLocalCache (0.05s) 265s === RUN TestUpdateNonRootRemoteMissingMetadataCannotUseLocalCache 265s time="2025-02-16T02:55:46Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s --- PASS: TestUpdateNonRootRemoteMissingMetadataCannotUseLocalCache (0.08s) 265s === RUN TestUpdateNonRootRemote50XNoLocalCache 265s --- PASS: TestUpdateNonRootRemote50XNoLocalCache (0.04s) 265s === RUN TestUpdateNonRootRemote50XCanUseLocalCache 265s time="2025-02-16T02:55:47Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s --- PASS: TestUpdateNonRootRemote50XCanUseLocalCache (0.05s) 265s === RUN TestUpdateNonRootRemote50XCannotUseLocalCache 265s time="2025-02-16T02:55:47Z" level=warning msg="Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely" 265s --- PASS: TestUpdateNonRootRemote50XCannotUseLocalCache (0.08s) 265s === RUN TestUpdateRemoteChecksumWrongNoLocalCache 265s --- PASS: TestUpdateRemoteChecksumWrongNoLocalCache (0.05s) 265s === RUN TestUpdateRemoteChecksumWrongCanUseLocalCache 265s --- PASS: TestUpdateRemoteChecksumWrongCanUseLocalCache (0.07s) 265s === RUN TestUpdateRemoteChecksumWrongCannotUseLocalCache 265s --- PASS: TestUpdateRemoteChecksumWrongCannotUseLocalCache (0.10s) 265s === RUN TestUpdateRootRemoteCorruptedNoLocalCache 265s time="2025-02-16T02:55:47Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:47Z" level=error msg="Metadata for root expired" 265s --- PASS: TestUpdateRootRemoteCorruptedNoLocalCache (0.16s) 265s === RUN TestUpdateRootRemoteCorruptedCanUseLocalCache 265s --- PASS: TestUpdateRootRemoteCorruptedCanUseLocalCache (0.34s) 265s === RUN TestUpdateRootRemoteCorruptedCannotUseLocalCache 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for root expired" 265s --- PASS: TestUpdateRootRemoteCorruptedCannotUseLocalCache (0.43s) 265s === RUN TestUpdateNonRootRemoteCorruptedNoLocalCache 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for targets expired" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for targets expired" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for snapshot expired" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for snapshot expired" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for timestamp expired" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for timestamp expired" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for targets/a expired" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a: targets/a expired at Mon Jan 15 02:55:48 UTC 2024" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for targets/a/b expired" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/a/b: targets/a/b expired at Mon Jan 15 02:55:48 UTC 2024" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s time="2025-02-16T02:55:48Z" level=error msg="Metadata for targets/b expired" 265s time="2025-02-16T02:55:48Z" level=warning msg="Error getting targets/b: targets/b expired at Mon Jan 15 02:55:48 UTC 2024" 265s --- PASS: TestUpdateNonRootRemoteCorruptedNoLocalCache (0.42s) 265s === RUN TestUpdateNonRootRemoteCorruptedCanUseLocalCache 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for timestamp expired" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for timestamp expired" 265s --- PASS: TestUpdateNonRootRemoteCorruptedCanUseLocalCache (0.59s) 265s === RUN TestUpdateNonRootRemoteCorruptedCannotUseLocalCache 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for targets expired" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for snapshot expired" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for snapshot expired" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for timestamp expired" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for timestamp expired" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for targets/a expired" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a: targets/a expired at Mon Jan 15 02:55:49 UTC 2024" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:49Z" level=error msg="Metadata for targets/a/b expired" 265s time="2025-02-16T02:55:49Z" level=warning msg="Error getting targets/a/b: targets/a/b expired at Mon Jan 15 02:55:49 UTC 2024" 265s time="2025-02-16T02:55:50Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s time="2025-02-16T02:55:50Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s time="2025-02-16T02:55:50Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for targets/b expired" 265s time="2025-02-16T02:55:50Z" level=warning msg="Error getting targets/b: targets/b expired at Mon Jan 15 02:55:50 UTC 2024" 265s --- PASS: TestUpdateNonRootRemoteCorruptedCannotUseLocalCache (0.80s) 265s === RUN TestUpdateLocalAndRemoteRootCorrupt 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s time="2025-02-16T02:55:50Z" level=error msg="Metadata for root expired" 265s --- PASS: TestUpdateLocalAndRemoteRootCorrupt (0.86s) 265s === RUN TestUpdateRemoteKeyRotated 265s time="2025-02-16T02:55:51Z" level=warning msg="Error getting targets/a: valid signatures did not meet threshold for targets/a" 265s time="2025-02-16T02:55:51Z" level=warning msg="Error getting targets/a/b: valid signatures did not meet threshold for targets/a/b" 265s time="2025-02-16T02:55:51Z" level=warning msg="Error getting targets/b: valid signatures did not meet threshold for targets/b" 265s --- PASS: TestUpdateRemoteKeyRotated (0.08s) 265s === RUN TestValidateRootRotationWithOldRole 265s --- PASS: TestValidateRootRotationWithOldRole (0.04s) 265s === RUN TestRootRoleInvariant 265s --- PASS: TestRootRoleInvariant (0.04s) 265s === RUN TestBadIntermediateTransitions 265s --- PASS: TestBadIntermediateTransitions (0.02s) 265s === RUN TestExpiredIntermediateTransitions 265s time="2025-02-16T02:55:51Z" level=warning msg="root is nearing expiry, you should re-sign the role metadata" 265s --- PASS: TestExpiredIntermediateTransitions (0.02s) 265s === RUN TestDownloadTargetsLarge 265s --- PASS: TestDownloadTargetsLarge (2.09s) 265s === RUN TestDownloadTargetsDeep 265s --- PASS: TestDownloadTargetsDeep (0.01s) 265s === RUN TestDownloadSnapshotLargeDelegationsMany 265s --- PASS: TestDownloadSnapshotLargeDelegationsMany (1.67s) 265s === RUN TestRootOnDiskTrustPinning 265s --- PASS: TestRootOnDiskTrustPinning (0.01s) 265s === RUN TestLoadTUFRepoBadURL 265s --- PASS: TestLoadTUFRepoBadURL (0.00s) 265s === RUN TestApplyTargetsChange 265s --- PASS: TestApplyTargetsChange (0.00s) 265s === RUN TestApplyAddTargetTwice 265s --- PASS: TestApplyAddTargetTwice (0.00s) 265s === RUN TestApplyChangelist 265s --- PASS: TestApplyChangelist (0.00s) 265s === RUN TestApplyChangelistMulti 265s --- PASS: TestApplyChangelistMulti (0.00s) 265s === RUN TestApplyTargetsDelegationCreateDelete 265s --- PASS: TestApplyTargetsDelegationCreateDelete (0.00s) 265s === RUN TestApplyTargetsDelegationCreate2SharedKey 265s --- PASS: TestApplyTargetsDelegationCreate2SharedKey (0.00s) 265s === RUN TestApplyTargetsDelegationCreateEdit 265s --- PASS: TestApplyTargetsDelegationCreateEdit (0.00s) 265s === RUN TestApplyTargetsDelegationEditNonExisting 265s --- PASS: TestApplyTargetsDelegationEditNonExisting (0.00s) 265s === RUN TestApplyTargetsDelegationCreateAlreadyExisting 265s --- PASS: TestApplyTargetsDelegationCreateAlreadyExisting (0.00s) 265s === RUN TestApplyTargetsDelegationAlreadyExistingMergePaths 265s --- PASS: TestApplyTargetsDelegationAlreadyExistingMergePaths (0.00s) 265s === RUN TestApplyTargetsDelegationInvalidRole 265s --- PASS: TestApplyTargetsDelegationInvalidRole (0.00s) 265s === RUN TestApplyTargetsDelegationInvalidJSONContent 265s --- PASS: TestApplyTargetsDelegationInvalidJSONContent (0.00s) 265s === RUN TestApplyTargetsDelegationInvalidAction 265s --- PASS: TestApplyTargetsDelegationInvalidAction (0.00s) 265s === RUN TestApplyTargetsChangeInvalidType 265s --- PASS: TestApplyTargetsChangeInvalidType (0.00s) 265s === RUN TestApplyTargetsDelegationCreate2Deep 265s --- PASS: TestApplyTargetsDelegationCreate2Deep (0.00s) 265s === RUN TestApplyTargetsDelegationParentDoesntExist 265s --- PASS: TestApplyTargetsDelegationParentDoesntExist (0.00s) 265s === RUN TestApplyChangelistCreatesDelegation 265s --- PASS: TestApplyChangelistCreatesDelegation (0.00s) 265s === RUN TestApplyChangelistTargetsToMultipleRoles 265s --- PASS: TestApplyChangelistTargetsToMultipleRoles (0.00s) 265s === RUN TestApplyChangelistTargetsFailsNonexistentRole 265s time="2025-02-16T02:55:54Z" level=error msg="couldn't add target to targets/level1/level2/level3/level4: tuf: invalid role targets/level1/level2/level3/level4. delegation does not exist" 265s time="2025-02-16T02:55:54Z" level=error msg="couldn't remove target from targets/level1/level2/level3/level4: tuf: invalid role targets/level1/level2/level3/level4. delegation does not exist" 265s --- PASS: TestApplyChangelistTargetsFailsNonexistentRole (0.00s) 265s === RUN TestChangeTargetMetaFailsInvalidRole 265s time="2025-02-16T02:55:54Z" level=error msg="couldn't add target to ruhroh: tuf: invalid role ruhroh. does not exist" 265s --- PASS: TestChangeTargetMetaFailsInvalidRole (0.00s) 265s === RUN TestChangeTargetMetaFailsIfPrefixError 265s time="2025-02-16T02:55:54Z" level=error msg="couldn't add target to targets/level1: could not add all targets" 265s --- PASS: TestChangeTargetMetaFailsIfPrefixError (0.00s) 265s === RUN TestAllNearExpiry 265s --- PASS: TestAllNearExpiry (0.00s) 265s === RUN TestAllNotNearExpiry 265s --- PASS: TestAllNotNearExpiry (0.00s) 265s === RUN TestRotateRemoteKeyOffline 265s --- PASS: TestRotateRemoteKeyOffline (0.14s) 265s PASS 265s ok github.com/theupdateframework/notary/client 12.145s 265s === RUN TestTUFDelegation 265s --- PASS: TestTUFDelegation (0.00s) 265s === RUN TestMemChangelist 265s --- PASS: TestMemChangelist (0.00s) 265s === RUN TestMemChangeIterator 265s --- PASS: TestMemChangeIterator (0.00s) 265s === RUN TestMemChangelistRemove 265s --- PASS: TestMemChangelistRemove (0.00s) 265s === RUN TestAdd 265s --- PASS: TestAdd (0.00s) 265s === RUN TestErrorConditions 265s time="2025-02-16T02:55:55Z" level=warning msg="invalid character '\\x05' looking for beginning of value" 265s --- PASS: TestErrorConditions (0.00s) 265s === RUN TestListOrder 265s --- PASS: TestListOrder (0.00s) 265s === RUN TestFileChangeIterator 265s --- PASS: TestFileChangeIterator (0.00s) 265s PASS 265s ok github.com/theupdateframework/notary/client/changelist 0.006s 271s === RUN TestParseConfigError 271s --- PASS: TestParseConfigError (0.00s) 271s === RUN TestSetupGRPCServer 271s --- PASS: TestSetupGRPCServer (0.00s) 271s === RUN TestSetupStorage 271s --- PASS: TestSetupStorage (0.00s) 271s === RUN TestSetupNetListener 271s --- PASS: TestSetupNetListener (0.00s) 271s PASS 271s ok github.com/theupdateframework/notary/cmd/escrow 0.003s 277s === RUN TestPurgeDelegationKeys 277s Usage: 277s delegation [command] 277s 277s Available Commands: 277s add Add a keys to delegation using the provided public key X509 certificates. 277s list Lists delegations for the Global Unique Name. 277s purge Remove KeyID(s) from all delegation roles in the given GUN. 277s remove Remove KeyID(s) from the specified Role delegation. 277s 277s Use "delegation [command] --help" for more information about a command. 277s Usage: 277s delegation [command] 277s 277s Available Commands: 277s add Add a keys to delegation using the provided public key X509 certificates. 277s list Lists delegations for the Global Unique Name. 277s purge Remove KeyID(s) from all delegation roles in the given GUN. 277s remove Remove KeyID(s) from the specified Role delegation. 277s 277s Use "delegation [command] --help" for more information about a command. 277s Removal of the following keys from all delegations in gun staged for next publish: 277s - abc 277s --- PASS: TestPurgeDelegationKeys (0.00s) 277s === RUN TestAddInvalidDelegationName 277s --- PASS: TestAddInvalidDelegationName (0.00s) 277s === RUN TestAddInvalidDelegationCert 277s --- PASS: TestAddInvalidDelegationCert (0.00s) 277s === RUN TestAddInvalidShortPubkeyCert 277s --- PASS: TestAddInvalidShortPubkeyCert (0.00s) 277s === RUN TestRemoveInvalidDelegationName 277s --- PASS: TestRemoveInvalidDelegationName (0.00s) 277s === RUN TestRemoveAllInvalidDelegationName 277s --- PASS: TestRemoveAllInvalidDelegationName (0.00s) 277s === RUN TestAddInvalidNumArgs 277s Usage: 277s delegation [command] 277s 277s Available Commands: 277s add Add a keys to delegation using the provided public key X509 certificates. 277s list Lists delegations for the Global Unique Name. 277s purge Remove KeyID(s) from all delegation roles in the given GUN. 277s remove Remove KeyID(s) from the specified Role delegation. 277s 277s Use "delegation [command] --help" for more information about a command. 277s --- PASS: TestAddInvalidNumArgs (0.00s) 277s === RUN TestListInvalidNumArgs 277s Usage: 277s delegation [command] 277s 277s Available Commands: 277s add Add a keys to delegation using the provided public key X509 certificates. 277s list Lists delegations for the Global Unique Name. 277s purge Remove KeyID(s) from all delegation roles in the given GUN. 277s remove Remove KeyID(s) from the specified Role delegation. 277s 277s Use "delegation [command] --help" for more information about a command. 277s --- PASS: TestListInvalidNumArgs (0.00s) 277s === RUN TestRemoveInvalidNumArgs 277s Usage: 277s delegation [command] 277s 277s Available Commands: 277s add Add a keys to delegation using the provided public key X509 certificates. 277s list Lists delegations for the Global Unique Name. 277s purge Remove KeyID(s) from all delegation roles in the given GUN. 277s remove Remove KeyID(s) from the specified Role delegation. 277s 277s Use "delegation [command] --help" for more information about a command. 277s --- PASS: TestRemoveInvalidNumArgs (0.00s) 277s === RUN TestInitWithRootKey 277s --- PASS: TestInitWithRootKey (0.06s) 277s === RUN TestInitWithRootCert 277s integration_test.go:189: Disable FTBFS timebomb. https://bugs.debian.org/1078632 277s --- SKIP: TestInitWithRootCert (0.00s) 277s === RUN TestClientTUFInteraction 277s --- PASS: TestClientTUFInteraction (0.07s) 277s === RUN TestClientDeleteTUFInteraction 277s time="2025-02-16T02:56:03Z" level=error msg="could not reach https://invalid-server: Get \"https://invalid-server/v2/\": Service Unavailable" 277s --- PASS: TestClientDeleteTUFInteraction (0.22s) 277s === RUN TestClientTUFAddByHashInteraction 277s --- PASS: TestClientTUFAddByHashInteraction (0.12s) 277s === RUN TestClientDelegationsInteraction 277s time="2025-02-16T02:56:03Z" level=warning msg="role targets/delegation has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 277s time="2025-02-16T02:56:03Z" level=warning msg="role targets/delegation has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 277s --- PASS: TestClientDelegationsInteraction (0.27s) 277s === RUN TestClientDelegationsPublishing 277s --- PASS: TestClientDelegationsPublishing (0.42s) 277s === RUN TestClientKeyGenerationRotation 277s --- PASS: TestClientKeyGenerationRotation (0.33s) 277s === RUN TestKeyRotation 277s --- PASS: TestKeyRotation (0.06s) 277s === RUN TestKeyRotationNonRoot 277s --- PASS: TestKeyRotationNonRoot (0.07s) 277s === RUN TestDefaultRootKeyGeneration 277s --- PASS: TestDefaultRootKeyGeneration (0.00s) 277s === RUN TestLogLevelFlags 277s --- PASS: TestLogLevelFlags (0.00s) 277s === RUN TestClientKeyPassphraseChange 277s --- PASS: TestClientKeyPassphraseChange (0.07s) 277s === RUN TestPurgeSingleKey 277s Removal of the following keys from all delegations in gun staged for next publish: 277s - 34819b4ae9c11294ef73286b0f57b805a0054ae580f11b625921450dd5b828e5 277s --- PASS: TestPurgeSingleKey (0.05s) 277s === RUN TestWitness 277s time="2025-02-16T02:56:05Z" level=warning msg="Error getting targets/delegation: valid signatures did not meet threshold for targets/delegation" 277s time="2025-02-16T02:56:05Z" level=warning msg="Error getting targets/delegation: valid signatures did not meet threshold for targets/delegation" 277s time="2025-02-16T02:56:05Z" level=warning msg="Error getting targets/delegation: valid signatures did not meet threshold for targets/delegation" 277s time="2025-02-16T02:56:05Z" level=warning msg="Error getting targets/delegation: valid signatures did not meet threshold for targets/delegation" 277s time="2025-02-16T02:56:05Z" level=warning msg="role targets/delegation has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 277s time="2025-02-16T02:56:05Z" level=warning msg="role targets/delegation has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 277s time="2025-02-16T02:56:05Z" level=warning msg="Error getting targets/delegation: valid signatures did not meet threshold for targets/delegation" 277s --- PASS: TestWitness (0.15s) 277s === RUN TestClientTUFInitWithAutoPublish 277s time="2025-02-16T02:56:05Z" level=error msg="could not reach https://notary-server-on-the-moon:12306: Get \"https://notary-server-on-the-moon:12306/v2/\": Forbidden" 277s --- PASS: TestClientTUFInitWithAutoPublish (0.19s) 277s === RUN TestClientTUFAddWithAutoPublish 277s time="2025-02-16T02:56:05Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s time="2025-02-16T02:56:05Z" level=error msg="Could not publish Repository since we could not update: client is offline" 277s time="2025-02-16T02:56:05Z" level=error msg="could not reach https://notary-server-on-the-moon:12306: Get \"https://notary-server-on-the-moon:12306/v2/\": Forbidden" 277s time="2025-02-16T02:56:05Z" level=error msg="Could not publish Repository since we could not update: client is offline" 277s --- PASS: TestClientTUFAddWithAutoPublish (0.33s) 277s === RUN TestClientTUFRemoveWithAutoPublish 277s --- PASS: TestClientTUFRemoveWithAutoPublish (0.08s) 277s === RUN TestClientDelegationAddWithAutoPublish 277s --- PASS: TestClientDelegationAddWithAutoPublish (0.05s) 277s === RUN TestClientDelegationRemoveWithAutoPublish 277s time="2025-02-16T02:56:06Z" level=warning msg="role targets/delegation has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 277s time="2025-02-16T02:56:06Z" level=warning msg="role targets/delegation has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 277s --- PASS: TestClientDelegationRemoveWithAutoPublish (0.08s) 277s === RUN TestClientTUFAddByHashWithAutoPublish 277s --- PASS: TestClientTUFAddByHashWithAutoPublish (0.04s) 277s === RUN TestClientKeyImport 277s time="2025-02-16T02:56:06Z" level=warning msg="failed to import key to store: Invalid key generated, key may be encrypted and does not contain path header" 277s time="2025-02-16T02:56:06Z" level=warning msg="failed to import key () to store: Cannot have canonical role key without a gun, don't know what gun it belongs to" 277s --- PASS: TestClientKeyImport (0.02s) 277s === RUN TestAddDelImportKeyPublishFlow 277s time="2025-02-16T02:56:06Z" level=error msg="couldn't add target to targets/releases: could not find necessary signing keys, at least one of these keys must be available: 0570f9fdca00bdaf62f3f79bf84e70748ba2c8bff926f20dd996bac49e6164fc" 277s --- PASS: TestAddDelImportKeyPublishFlow (0.10s) 277s === RUN TestExportImportFlow 277s --- PASS: TestExportImportFlow (0.03s) 277s === RUN TestDelegationKeyImportExport 277s --- PASS: TestDelegationKeyImportExport (0.00s) 277s === RUN TestImportKeysNoYubikey 277s --- PASS: TestImportKeysNoYubikey (0.00s) 277s === RUN TestExportImportKeysNoYubikey 277s --- PASS: TestExportImportKeysNoYubikey (0.00s) 277s === RUN TestRemoveIfNoKey 277s --- PASS: TestRemoveIfNoKey (0.00s) 277s === RUN TestRemoveOneKeyAbort 277s --- PASS: TestRemoveOneKeyAbort (0.01s) 277s === RUN TestRemoveOneKeyConfirm 277s --- PASS: TestRemoveOneKeyConfirm (0.00s) 277s === RUN TestRemoveMultikeysInvalidInput 277s --- PASS: TestRemoveMultikeysInvalidInput (0.00s) 277s === RUN TestRemoveMultikeysAbortChoice 277s --- PASS: TestRemoveMultikeysAbortChoice (0.00s) 277s === RUN TestRemoveMultikeysRemoveOnlyChosenKey 277s --- PASS: TestRemoveMultikeysRemoveOnlyChosenKey (0.00s) 277s === RUN TestRotateKeyInvalidRoles 277s time="2025-02-16T02:56:06Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s time="2025-02-16T02:56:06Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s time="2025-02-16T02:56:06Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s time="2025-02-16T02:56:06Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s --- PASS: TestRotateKeyInvalidRoles (0.54s) 277s === RUN TestRotateKeyTargetCannotBeServerManaged 277s time="2025-02-16T02:56:06Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s --- PASS: TestRotateKeyTargetCannotBeServerManaged (0.13s) 277s === RUN TestRotateKeyTimestampCannotBeLocallyManaged 277s time="2025-02-16T02:56:07Z" level=error msg="could not reach https://notary-server:4443: Get \"https://notary-server:4443/v2/\": Forbidden" 277s --- PASS: TestRotateKeyTimestampCannotBeLocallyManaged (0.14s) 277s === RUN TestRotateKeyNoGUN 277s Usage: 277s --- PASS: TestRotateKeyNoGUN (0.00s) 277s === RUN TestRotateKeyRemoteServerManagesKey 277s Successfully rotated snapshot key for repository docker.com/notary 277s Successfully rotated timestamp key for repository docker.com/notary 277s --- PASS: TestRotateKeyRemoteServerManagesKey (0.05s) 277s === RUN TestRotateKeyBothKeys 277s Successfully rotated targets key for repository docker.com/notary 277s Successfully rotated snapshot key for repository docker.com/notary 277s --- PASS: TestRotateKeyBothKeys (0.03s) 277s === RUN TestRotateKeyRootIsInteractive 277s --- PASS: TestRotateKeyRootIsInteractive (0.02s) 277s === RUN TestChangeKeyPassphraseInvalidID 277s --- PASS: TestChangeKeyPassphraseInvalidID (0.00s) 277s === RUN TestChangeKeyPassphraseInvalidNumArgs 277s Usage: 277s --- PASS: TestChangeKeyPassphraseInvalidNumArgs (0.00s) 277s === RUN TestChangeKeyPassphraseNonexistentID 277s --- PASS: TestChangeKeyPassphraseNonexistentID (0.00s) 277s === RUN TestExportKeys 277s --- PASS: TestExportKeys (0.00s) 277s === RUN TestExportKeysByGUN 277s --- PASS: TestExportKeysByGUN (0.00s) 277s === RUN TestExportKeysByID 277s --- PASS: TestExportKeysByID (0.00s) 277s === RUN TestExportKeysBadFlagCombo 277s --- PASS: TestExportKeysBadFlagCombo (0.00s) 277s === RUN TestImportKeysNonexistentFile 277s --- PASS: TestImportKeysNonexistentFile (0.00s) 277s === RUN TestKeyGeneration 277s time="2025-02-16T02:56:07Z" level=warning msg="failed to import key () to store: Cannot have canonical role key without a gun, don't know what gun it belongs to" 277s --- PASS: TestKeyGeneration (0.01s) 277s === RUN TestNotaryConfigFileDefault 277s --- PASS: TestNotaryConfigFileDefault (0.00s) 277s === RUN TestRemoteServerDefault 277s --- PASS: TestRemoteServerDefault (0.00s) 277s === RUN TestRemoteServerUsesConfigFile 277s --- PASS: TestRemoteServerUsesConfigFile (0.00s) 277s === RUN TestRemoteServerCommandLineFlagOverridesConfig 277s --- PASS: TestRemoteServerCommandLineFlagOverridesConfig (0.00s) 277s === RUN TestInvalidAddHashCommands 277s --- PASS: TestInvalidAddHashCommands (0.00s) 277s === RUN TestConfigParsingErrorsPropagatedByCommands 277s --- PASS: TestConfigParsingErrorsPropagatedByCommands (0.00s) 277s === RUN TestInsufficientArgumentsReturnsErrorAndPrintsUsage 277s --- PASS: TestInsufficientArgumentsReturnsErrorAndPrintsUsage (0.01s) 277s === RUN TestBareCommandPrintsUsageAndNoError 277s --- PASS: TestBareCommandPrintsUsageAndNoError (0.00s) 277s === RUN TestConfigFileTLSCannotBeRelativeToCWD 277s --- PASS: TestConfigFileTLSCannotBeRelativeToCWD (0.00s) 277s === RUN TestConfigFileTLSCanBeRelativeToConfigOrAbsolute 277s --- PASS: TestConfigFileTLSCanBeRelativeToConfigOrAbsolute (0.03s) 277s === RUN TestConfigFileOverridenByCmdLineFlags 277s --- PASS: TestConfigFileOverridenByCmdLineFlags (0.03s) 277s === RUN TestConfigFileTrustPinning 277s --- PASS: TestConfigFileTrustPinning (0.00s) 277s === RUN TestPassphraseRetrieverCaching 277s --- PASS: TestPassphraseRetrieverCaching (0.00s) 277s === RUN TestPassphraseRetrieverDelegationRoleCaching 277s --- PASS: TestPassphraseRetrieverDelegationRoleCaching (0.00s) 277s === RUN TestTruncateWithEllipsis 277s --- PASS: TestTruncateWithEllipsis (0.00s) 277s === RUN TestKeyInfoSorter 277s --- PASS: TestKeyInfoSorter (0.00s) 277s === RUN TestPrettyPrintZeroKeys 277s --- PASS: TestPrettyPrintZeroKeys (0.00s) 277s === RUN TestPrettyPrintRootAndSigningKeys 277s --- PASS: TestPrettyPrintRootAndSigningKeys (0.01s) 277s === RUN TestPrettyPrintZeroTargets 277s --- PASS: TestPrettyPrintZeroTargets (0.00s) 277s === RUN TestPrettyPrintSortedTargets 277s --- PASS: TestPrettyPrintSortedTargets (0.00s) 277s === RUN TestPrettyPrintZeroRoles 277s --- PASS: TestPrettyPrintZeroRoles (0.00s) 277s === RUN TestPrettyPrintSortedRoles 277s --- PASS: TestPrettyPrintSortedRoles (0.00s) 277s === RUN TestImportRootCert 277s --- PASS: TestImportRootCert (0.00s) 277s === RUN TestTokenAuth 277s time="2025-02-16T02:56:07Z" level=error msg="could not reach https://localhost:9999: Get \"https://localhost:9999/v2/\": dial tcp [::1]:9999: connect: connection refused" 277s --- PASS: TestTokenAuth (0.00s) 277s === RUN TestAdminTokenAuth 277s time="2025-02-16T02:56:07Z" level=error msg="could not reach https://localhost:9999: Get \"https://localhost:9999/v2/\": dial tcp [::1]:9999: connect: connection refused" 277s --- PASS: TestAdminTokenAuth (0.00s) 277s === RUN TestTokenAuth200Status 277s --- PASS: TestTokenAuth200Status (0.00s) 277s === RUN TestAdminTokenAuth200Status 277s --- PASS: TestAdminTokenAuth200Status (0.00s) 277s === RUN TestTokenAuth401Status 277s --- PASS: TestTokenAuth401Status (0.00s) 277s === RUN TestAdminTokenAuth401Status 277s --- PASS: TestAdminTokenAuth401Status (0.00s) 277s === RUN TestTokenAuthNon200Non401Status 277s time="2025-02-16T02:56:07Z" level=error msg="could not reach http://127.0.0.1:36427: 404" 277s --- PASS: TestTokenAuthNon200Non401Status (0.00s) 277s === RUN TestAdminTokenAuthNon200Non401Status 277s time="2025-02-16T02:56:07Z" level=error msg="could not reach http://127.0.0.1:46733: 404" 277s --- PASS: TestAdminTokenAuthNon200Non401Status (0.00s) 277s === RUN TestConfigureRepo 277s --- PASS: TestConfigureRepo (0.00s) 277s === RUN TestConfigureRepoRW 277s Enter username: time="2025-02-16T02:56:07Z" level=error msg="error processing username input: EOF" 277s --- PASS: TestConfigureRepoRW (0.00s) 277s === RUN TestConfigureRepoAdmin 277s Enter username: time="2025-02-16T02:56:07Z" level=error msg="error processing username input: EOF" 277s --- PASS: TestConfigureRepoAdmin (0.00s) 277s === RUN TestStatusUnstageAndReset 277s Successfully reset specified changes for repository gun 277s Addition of target "test1" by sha256 hash to repository "gun" staged for next publish. 277s Addition of target "test2" by sha256 hash to repository "gun" staged for next publish. 277s Addition of target "test3" by sha256 hash to repository "gun" staged for next publish. 277s Addition of target "test4" by sha256 hash to repository "gun" staged for next publish. 277s --- PASS: TestStatusUnstageAndReset (0.00s) 277s === RUN TestGetTrustPinningErrors 277s Pushing changes to gun 277s --- PASS: TestGetTrustPinningErrors (0.00s) 277s === RUN TestPasswordStore 277s Enter username: time="2025-02-16T02:56:07Z" level=error msg="error processing username input: EOF" 277s --- PASS: TestPasswordStore (0.00s) 277s === RUN TestPasswordStoreWithEnvvar 277s time="2025-02-16T02:56:07Z" level=error msg="Authentication string with zero-length username" 277s time="2025-02-16T02:56:07Z" level=error msg="Could not base64-decode authentication string" 277s --- PASS: TestPasswordStoreWithEnvvar (0.00s) 277s === RUN TestGetPayload 277s --- PASS: TestGetPayload (0.00s) 277s === RUN TestFeedback 277s --- PASS: TestFeedback (0.00s) 277s === RUN TestHomeExpand 277s --- PASS: TestHomeExpand (0.00s) 277s PASS 277s ok github.com/theupdateframework/notary/cmd/notary 3.861s 282s === RUN TestBootstrap 282s --- PASS: TestBootstrap (0.00s) 282s === RUN TestGetAddrAndTLSConfigInvalidTLS 282s --- PASS: TestGetAddrAndTLSConfigInvalidTLS (0.00s) 282s === RUN TestGetAddrAndTLSConfigNoHTTPAddr 282s --- PASS: TestGetAddrAndTLSConfigNoHTTPAddr (0.00s) 282s === RUN TestGetAddrAndTLSConfigSuccessWithTLS 282s --- PASS: TestGetAddrAndTLSConfigSuccessWithTLS (0.00s) 282s === RUN TestGetAddrAndTLSConfigSuccessWithoutTLS 282s --- PASS: TestGetAddrAndTLSConfigSuccessWithoutTLS (0.00s) 282s === RUN TestGetAddrAndTLSConfigWithClientTLS 282s --- PASS: TestGetAddrAndTLSConfigWithClientTLS (0.00s) 282s === RUN TestGetInvalidTrustService 282s --- PASS: TestGetInvalidTrustService (0.00s) 282s === RUN TestGetLocalTrustService 282s time="2025-02-16T02:56:12Z" level=info msg="Using local signing service, which requires ED25519. Ignoring all other trust_service parameters, including keyAlgorithm" 282s --- PASS: TestGetLocalTrustService (0.00s) 282s === RUN TestGetTrustServiceInvalidKeyAlgorithm 282s --- PASS: TestGetTrustServiceInvalidKeyAlgorithm (0.00s) 282s === RUN TestGetTrustServiceTLSMissingCertOrKey 282s --- PASS: TestGetTrustServiceTLSMissingCertOrKey (0.00s) 282s === RUN TestGetTrustServiceNoTLSConfig 282s time="2025-02-16T02:56:12Z" level=info msg="Using remote signing service" 282s --- PASS: TestGetTrustServiceNoTLSConfig (0.00s) 282s === RUN TestGetTrustServiceTLSSuccess 282s time="2025-02-16T02:56:12Z" level=info msg="Using remote signing service" 282s --- PASS: TestGetTrustServiceTLSSuccess (0.00s) 282s === RUN TestGetTrustServiceTLSFailure 282s --- PASS: TestGetTrustServiceTLSFailure (0.00s) 282s === RUN TestGetStoreInvalid 282s time="2025-02-16T02:56:12Z" level=info msg="Using asdf backend" 282s --- PASS: TestGetStoreInvalid (0.00s) 282s === RUN TestGetStoreDBStore 282s time="2025-02-16T02:56:12Z" level=info msg="Using sqlite3 backend" 282s --- PASS: TestGetStoreDBStore (0.01s) 282s === RUN TestGetStoreRethinkDBStoreConnectionFails 282s time="2025-02-16T02:56:12Z" level=info msg="Using rethinkdb backend" 282s --- PASS: TestGetStoreRethinkDBStoreConnectionFails (0.00s) 282s === RUN TestGetMemoryStore 282s time="2025-02-16T02:56:12Z" level=info msg="Using memory backend" 282s --- PASS: TestGetMemoryStore (0.00s) 282s === RUN TestGetCacheConfig 282s --- PASS: TestGetCacheConfig (0.00s) 282s === RUN TestGetGUNPRefixes 282s --- PASS: TestGetGUNPRefixes (0.00s) 282s === RUN TestSampleConfig 282s time="2025-02-16T02:56:12Z" level=info msg="Using remote signing service" 282s time="2025-02-16T02:56:12Z" level=info msg="Using sqlite3 backend" 282s --- PASS: TestSampleConfig (0.00s) 282s PASS 282s ok github.com/theupdateframework/notary/cmd/notary-server 0.015s 283s === RUN TestGetAddrAndTLSConfigInvalidTLS 283s --- PASS: TestGetAddrAndTLSConfigInvalidTLS (0.00s) 283s === RUN TestGetAddrAndTLSConfigNoGRPCAddr 283s --- PASS: TestGetAddrAndTLSConfigNoGRPCAddr (0.00s) 283s === RUN TestGetAddrAndTLSConfigSuccess 283s --- PASS: TestGetAddrAndTLSConfigSuccess (0.00s) 283s === RUN TestSetupCryptoServicesDBStoreNoDefaultAlias 283s --- PASS: TestSetupCryptoServicesDBStoreNoDefaultAlias (0.00s) 283s === RUN TestSetupCryptoServicesRethinkDBStoreNoDefaultAlias 283s --- PASS: TestSetupCryptoServicesRethinkDBStoreNoDefaultAlias (0.00s) 283s === RUN TestSetupCryptoServicesRethinkDBStoreConnectionFails 283s main_test.go:121: DM - skipping malfunctioning test, fails on sbuild 283s --- SKIP: TestSetupCryptoServicesRethinkDBStoreConnectionFails (0.00s) 283s === RUN TestSetupCryptoServicesDBStoreSuccess 283s --- PASS: TestSetupCryptoServicesDBStoreSuccess (0.02s) 283s === RUN TestSetupCryptoServicesMemoryStore 283s --- PASS: TestSetupCryptoServicesMemoryStore (0.00s) 283s === RUN TestSetupCryptoServicesInvalidStore 283s --- PASS: TestSetupCryptoServicesInvalidStore (0.00s) 283s === RUN TestSetupGRPCServerInvalidAddress 283s --- PASS: TestSetupGRPCServerInvalidAddress (0.00s) 283s === RUN TestSetupGRPCServerSuccess 283s --- PASS: TestSetupGRPCServerSuccess (0.00s) 283s === RUN TestBootstrap 283s --- PASS: TestBootstrap (0.00s) 283s === RUN TestGetEnv 283s --- PASS: TestGetEnv (0.00s) 283s === RUN TestPassphraseRetrieverInvalid 283s --- PASS: TestPassphraseRetrieverInvalid (0.00s) 283s === RUN TestSampleConfig 283s --- PASS: TestSampleConfig (0.00s) 283s PASS 283s ok github.com/theupdateframework/notary/cmd/notary-signer 0.026s 284s === RUN TestGenerateCertificate 284s --- PASS: TestGenerateCertificate (0.00s) 284s === RUN TestCryptoServiceWithNonEmptyGUN 284s --- PASS: TestCryptoServiceWithNonEmptyGUN (0.35s) 284s === RUN TestCryptoServiceWithEmptyGUN 284s --- PASS: TestCryptoServiceWithEmptyGUN (0.35s) 284s === RUN TestCryptoSignerInterfaceBehavior 284s --- PASS: TestCryptoSignerInterfaceBehavior (0.00s) 284s PASS 284s ok github.com/theupdateframework/notary/cryptoservice 0.701s 285s === RUN TestGetPassphraseForUsingDelegationKey 285s --- PASS: TestGetPassphraseForUsingDelegationKey (0.00s) 285s === RUN TestGetPassphraseLimitsShortPassphrases 285s --- PASS: TestGetPassphraseLimitsShortPassphrases (0.00s) 285s === RUN TestGetPassphraseLimitsMismatchingPassphrases 285s --- PASS: TestGetPassphraseLimitsMismatchingPassphrases (0.00s) 285s === RUN TestGetPassphraseForCreatingDelegationKey 285s --- PASS: TestGetPassphraseForCreatingDelegationKey (0.00s) 285s === RUN TestRolePromptingAndCaching 285s --- PASS: TestRolePromptingAndCaching (0.00s) 285s === RUN TestPromptRetrieverNeedsTerminal 285s --- PASS: TestPromptRetrieverNeedsTerminal (0.00s) 285s === RUN TestGetPassphrase 285s --- PASS: TestGetPassphrase (0.00s) 285s PASS 285s ok github.com/theupdateframework/notary/passphrase 0.003s 285s ? github.com/theupdateframework/notary/proto [no test files] 285s ? github.com/theupdateframework/notary/proto/github.com/theupdateframework/notary/proto [no test files] 286s === RUN TestValidationErrorFormat 286s time="2025-02-16T02:56:16Z" level=info msg="invalid update: Update sent by the client is invalid.: &{ErrBadHierarchy Metadata hierarchy is incomplete: no snapshot was included in update and server does not hold current snapshot key for repository}" go.version=go1.23.6 http.request.contenttype="multipart/form-data; boundary=c7ec43eb2f92158c997f7e3ec0d9aac01cafd495a40568b885138be55820" http.request.host="127.0.0.1:34785" http.request.id=3e886816-fa0c-4d02-a5de-0c6197c11b75 http.request.method=POST http.request.remoteaddr="127.0.0.1:37254" http.request.uri=/v2/docker.com/notary/_trust/tuf/ http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype="multipart/form-data; boundary=c7ec43eb2f92158c997f7e3ec0d9aac01cafd495a40568b885138be55820" http.request.host="127.0.0.1:34785" http.request.id=3e886816-fa0c-4d02-a5de-0c6197c11b75 http.request.method=POST http.request.remoteaddr="127.0.0.1:37254" http.request.uri=/v2/docker.com/notary/_trust/tuf/ http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration=1.113161ms http.response.status=400 http.response.written=260 286s --- PASS: TestValidationErrorFormat (0.01s) 286s === RUN TestRunBadAddr 286s --- PASS: TestRunBadAddr (0.00s) 286s === RUN TestRepoPrefixMatches 286s time="2025-02-16T02:56:16Z" level=info msg="updated docker.io/notary to timestamp version 1, checksum dac26710fee3575588571935c267c88c1268219eec1fa466e908818fb9338091" docker.io/notary=gun go.version=go1.23.6 http.request.contenttype="multipart/form-data; boundary=64a05b3a265cbd1f16137d6b41f59d9fb0a5d3bff657264a0b2fc0c1c810" http.request.host="127.0.0.1:38759" http.request.id=25402fe0-a508-482e-a8e6-1589af4c8d48 http.request.method=POST http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/ http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype="multipart/form-data; boundary=64a05b3a265cbd1f16137d6b41f59d9fb0a5d3bff657264a0b2fc0c1c810" http.request.host="127.0.0.1:38759" http.request.id=25402fe0-a508-482e-a8e6-1589af4c8d48 http.request.method=POST http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/ http.request.useragent=Go-http-client/1.1 http.response.duration=1.152035ms http.response.status=0 http.response.written=0 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:38759" http.request.id=e9a97829-faba-418c-9954-b1ea207b3fd7 http.request.method=GET http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/snapshot.json http.request.useragent=Go-http-client/1.1 http.response.duration="244.773µs" http.response.status=200 http.response.written=683 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:38759" http.request.id=6d76c817-f432-4c84-94da-9d31cccdd9db http.request.method=GET http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/snapshot.0344d001b6d24e0e0a2b64d3a576efcd4e6a8625ac536289bd2b62431dd7e25a.json http.request.useragent=Go-http-client/1.1 http.response.duration="14.357µs" http.response.status=200 http.response.written=683 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:38759" http.request.id=d2438064-71a3-44f5-ae9b-adacd0ae2bb5 http.request.method=GET http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/timestamp.key http.request.useragent=Go-http-client/1.1 http.response.duration="752.285µs" http.response.status=200 http.response.written=181 286s time="2025-02-16T02:56:16Z" level=info msg="trust data deleted for docker.io/notary" docker.io/notary=gun go.version=go1.23.6 http.request.host="127.0.0.1:38759" http.request.id=39dd3438-8d03-4a13-ac44-0eda55d9c9c5 http.request.method=DELETE http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/ http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:38759" http.request.id=39dd3438-8d03-4a13-ac44-0eda55d9c9c5 http.request.method=DELETE http.request.remoteaddr="127.0.0.1:42002" http.request.uri=/v2/docker.io/notary/_trust/tuf/ http.request.useragent=Go-http-client/1.1 http.response.duration="159.391µs" http.response.status=0 http.response.written=0 286s --- PASS: TestRepoPrefixMatches (0.01s) 286s === RUN TestRepoPrefixDoesNotMatch 286s --- PASS: TestRepoPrefixDoesNotMatch (0.00s) 286s === RUN TestMetricsEndpoint 286s --- PASS: TestMetricsEndpoint (0.00s) 286s === RUN TestGetKeysEndpoint 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=4b6d53a7-17db-4a3d-a9f0-3fd6d5794ee0 http.request.method=GET http.request.remoteaddr="127.0.0.1:45804" http.request.uri=/v2/gun/_trust/tuf/somerandomrole.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=4b6d53a7-17db-4a3d-a9f0-3fd6d5794ee0 http.request.method=GET http.request.remoteaddr="127.0.0.1:45804" http.request.uri=/v2/gun/_trust/tuf/somerandomrole.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="62.719µs" http.response.status=404 http.response.written=104 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=27aa2cab-2e6b-404f-9f12-13dbddcf33e4 http.request.method=GET http.request.remoteaddr="127.0.0.1:45812" http.request.uri=/v2/gun/_trust/tuf/timestamp.key http.request.useragent=Go-http-client/1.1 http.response.duration=3.076974ms http.response.status=200 http.response.written=103 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=cca49750-e42e-46f7-9484-ad61f36ada2e http.request.method=GET http.request.remoteaddr="127.0.0.1:45828" http.request.uri=/v2/gun/_trust/tuf/snapshot.key http.request.useragent=Go-http-client/1.1 http.response.duration="151.91µs" http.response.status=200 http.response.written=103 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=7b86507c-943b-415d-99e9-8e70bb75b744 http.request.method=GET http.request.remoteaddr="127.0.0.1:45834" http.request.uri=/v2/gun/_trust/tuf/targets.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=7b86507c-943b-415d-99e9-8e70bb75b744 http.request.method=GET http.request.remoteaddr="127.0.0.1:45834" http.request.uri=/v2/gun/_trust/tuf/targets.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="82.774µs" http.response.status=404 http.response.written=104 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=21ce1f78-a864-420a-9319-311df3cb97b1 http.request.method=GET http.request.remoteaddr="127.0.0.1:45848" http.request.uri=/v2/gun/_trust/tuf/root.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:45839" http.request.id=21ce1f78-a864-420a-9319-311df3cb97b1 http.request.method=GET http.request.remoteaddr="127.0.0.1:45848" http.request.uri=/v2/gun/_trust/tuf/root.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="49.145µs" http.response.status=404 http.response.written=104 286s --- PASS: TestGetKeysEndpoint (0.01s) 286s === RUN TestGetRoleByHash 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:39057" http.request.id=c4947ee0-ffac-4573-9c71-bfe7d4144989 http.request.method=GET http.request.remoteaddr="127.0.0.1:54224" http.request.uri=/v2/gun/_trust/tuf/timestamp.1922427e2ac78eb486580f3abd1eca3920f4733a2362671aff3b43376affb971.json http.request.useragent=Go-http-client/1.1 http.response.duration="30.043µs" http.response.status=200 http.response.written=115 286s --- PASS: TestGetRoleByHash (0.00s) 286s === RUN TestGetRoleByVersion 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:39865" http.request.id=f0b5f6c8-1eea-40a9-af7b-73bc156de472 http.request.method=GET http.request.remoteaddr="127.0.0.1:55932" http.request.uri=/v2/gun/_trust/tuf/1.timestamp.json http.request.useragent=Go-http-client/1.1 http.response.duration="27.869µs" http.response.status=200 http.response.written=115 286s --- PASS: TestGetRoleByVersion (0.00s) 286s === RUN TestGetCurrentRole 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:41689" http.request.id=1b525d62-020e-4fe3-8a9d-d2b337efb9f7 http.request.method=GET http.request.remoteaddr="127.0.0.1:51680" http.request.uri=/v2/gun/_trust/tuf/timestamp.json http.request.useragent=Go-http-client/1.1 http.response.duration="352.524µs" http.response.status=200 http.response.written=495 286s --- PASS: TestGetCurrentRole (0.01s) 286s === RUN TestRotateKeyEndpoint 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=cf7eb885-780f-4624-8b0b-3b9da74a389c http.request.method=POST http.request.remoteaddr="127.0.0.1:50936" http.request.uri=/v2/gun/_trust/tuf/targets/delegation.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=cf7eb885-780f-4624-8b0b-3b9da74a389c http.request.method=POST http.request.remoteaddr="127.0.0.1:50936" http.request.uri=/v2/gun/_trust/tuf/targets/delegation.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="51.746µs" http.response.status=404 http.response.written=104 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=ba92962b-233a-4d7a-a337-cdf1739d11cc http.request.method=POST http.request.remoteaddr="127.0.0.1:50940" http.request.uri=/v2/gun/_trust/tuf/somerandomrole.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=ba92962b-233a-4d7a-a337-cdf1739d11cc http.request.method=POST http.request.remoteaddr="127.0.0.1:50940" http.request.uri=/v2/gun/_trust/tuf/somerandomrole.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="31.39µs" http.response.status=404 http.response.written=104 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=7e5ae4ba-5f91-4eed-876f-9fbbd944fe74 http.request.method=POST http.request.remoteaddr="127.0.0.1:50952" http.request.uri=/v2/gun/_trust/tuf/timestamp.key http.request.useragent=Go-http-client/1.1 http.response.duration="78.886µs" http.response.status=200 http.response.written=103 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=23635c4b-13c3-488a-b543-e7210fcdcfe6 http.request.method=POST http.request.remoteaddr="127.0.0.1:50960" http.request.uri=/v2/gun/_trust/tuf/snapshot.key http.request.useragent=Go-http-client/1.1 http.response.duration="176.55µs" http.response.status=200 http.response.written=103 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=dee58e8b-4447-4e4b-9f67-532f5bbc79e9 http.request.method=POST http.request.remoteaddr="127.0.0.1:50972" http.request.uri=/v2/gun/_trust/tuf/targets.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=dee58e8b-4447-4e4b-9f67-532f5bbc79e9 http.request.method=POST http.request.remoteaddr="127.0.0.1:50972" http.request.uri=/v2/gun/_trust/tuf/targets.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="54.978µs" http.response.status=404 http.response.written=104 286s time="2025-02-16T02:56:16Z" level=info msg="metadata not found: You have requested metadata that does not exist.: " go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=8e8ed830-6425-4363-ae93-8742b1510405 http.request.method=POST http.request.remoteaddr="127.0.0.1:50976" http.request.uri=/v2/gun/_trust/tuf/root.key http.request.useragent=Go-http-client/1.1 286s time="2025-02-16T02:56:16Z" level=info msg="response completed" go.version=go1.23.6 http.request.contenttype=text/plain http.request.host="127.0.0.1:35327" http.request.id=8e8ed830-6425-4363-ae93-8742b1510405 http.request.method=POST http.request.remoteaddr="127.0.0.1:50976" http.request.uri=/v2/gun/_trust/tuf/root.key http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="51.569µs" http.response.status=404 http.response.written=104 286s --- PASS: TestRotateKeyEndpoint (0.00s) 286s PASS 286s ok github.com/theupdateframework/notary/server 0.053s 286s ? github.com/theupdateframework/notary/server/errors [no test files] 287s === RUN Test_changefeed 287s --- PASS: Test_changefeed (0.00s) 287s === RUN Test_checkChangefeedInputs 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET unable to retrieve storage" 287s time="2025-02-16T02:56:17Z" level=error msg="400 GET invalid pageSize: not_a_number" 287s --- PASS: Test_checkChangefeedInputs (0.00s) 287s === RUN TestMainHandlerGet 287s time="2025-02-16T02:56:17Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:38079" http.request.id=677b330a-ebcc-4b44-acf0-ac2a60fe7014 http.request.method=GET http.request.remoteaddr="127.0.0.1:52490" http.request.uri=/ http.request.useragent=Go-http-client/1.1 http.response.duration="31.997µs" http.response.status=200 http.response.written=2 287s --- PASS: TestMainHandlerGet (0.00s) 287s === RUN TestMainHandlerNotGet 287s time="2025-02-16T02:56:17Z" level=info msg="generic not found: You have requested a resource that does not exist.: " go.version=go1.23.6 http.request.host="127.0.0.1:43073" http.request.id=7fee2b0d-700c-4141-b402-27a4ef44b420 http.request.method=HEAD http.request.remoteaddr="127.0.0.1:56470" http.request.uri=/ http.request.useragent=Go-http-client/1.1 287s time="2025-02-16T02:56:17Z" level=info msg="response completed" go.version=go1.23.6 http.request.host="127.0.0.1:43073" http.request.id=7fee2b0d-700c-4141-b402-27a4ef44b420 http.request.method=HEAD http.request.remoteaddr="127.0.0.1:56470" http.request.uri=/ http.request.useragent=Go-http-client/1.1 http.response.contenttype="application/json; charset=utf-8" http.response.duration="123.616µs" http.response.status=404 http.response.written=105 287s --- PASS: TestMainHandlerNotGet (0.00s) 287s === RUN TestKeyHandlersInvalidConfiguration 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET storage not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET storage not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET crypto service not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET crypto service not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET key algorithm not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET key algorithm not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST storage not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST storage not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST crypto service not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST crypto service not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST key algorithm not configured" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST key algorithm not configured" go.version=go1.23.6 gun=gun 287s --- PASS: TestKeyHandlersInvalidConfiguration (0.00s) 287s === RUN TestKeyHandlersNoRoleOrRepo 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET no gun in request" =gun go.version=go1.23.6 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET no gun in request" =gun go.version=go1.23.6 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET no role in request" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET no role in request" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST no gun in request" =gun go.version=go1.23.6 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST no gun in request" =gun go.version=go1.23.6 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST no role in request" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST no role in request" go.version=go1.23.6 gun=gun 287s --- PASS: TestKeyHandlersNoRoleOrRepo (0.00s) 287s === RUN TestKeyHandlersInvalidRole 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET root key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET targets key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET targets/a key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 GET invalidrole key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST root key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST targets key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST targets/a key: " go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST invalidrole key: " go.version=go1.23.6 gun=gun 287s --- PASS: TestKeyHandlersInvalidRole (0.00s) 287s === RUN TestGetKeyHandlerCreatesOnce 287s --- PASS: TestGetKeyHandlerCreatesOnce (0.00s) 287s === RUN TestKeyHandlersInvalidKeyAlgo 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET timestamp key: only ED25519 supported by this cryptoservice" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET snapshot key: only ED25519 supported by this cryptoservice" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST timestamp key: only ED25519 supported by this cryptoservice" go.version=go1.23.6 gun=gun 287s time="2025-02-16T02:56:17Z" level=error msg="500 POST snapshot key: only ED25519 supported by this cryptoservice" go.version=go1.23.6 gun=gun 287s --- PASS: TestKeyHandlersInvalidKeyAlgo (0.00s) 287s === RUN TestRotateKeyHandlerSuccessfulRotation 287s --- PASS: TestRotateKeyHandlerSuccessfulRotation (0.00s) 287s === RUN TestGetHandlerRoot 287s time="2025-02-16T02:56:17Z" level=info msg="404 GET root role" go.version=go1.23.6 gun=gun 287s --- PASS: TestGetHandlerRoot (0.00s) 287s === RUN TestGetHandlerTimestamp 287s --- PASS: TestGetHandlerTimestamp (0.00s) 287s === RUN TestGetHandlerSnapshot 287s --- PASS: TestGetHandlerSnapshot (0.00s) 287s === RUN TestGetHandler404 287s time="2025-02-16T02:56:17Z" level=info msg="404 GET root role" go.version=go1.23.6 gun=gun 287s --- PASS: TestGetHandler404 (0.00s) 287s === RUN TestGetHandlerNilData 287s time="2025-02-16T02:56:17Z" level=info msg="404 GET root role" go.version=go1.23.6 gun=gun 287s --- PASS: TestGetHandlerNilData (0.00s) 287s === RUN TestGetHandlerNoStorage 287s time="2025-02-16T02:56:17Z" level=error msg="500 GET: no storage exists" =gun go.version=go1.23.6 287s --- PASS: TestGetHandlerNoStorage (0.00s) 287s === RUN TestAtomicUpdateValidationFailurePropagated 287s --- PASS: TestAtomicUpdateValidationFailurePropagated (0.00s) 287s === RUN TestAtomicUpdateNonValidationFailureNotPropagated 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST error validating update" go.version=go1.23.6 testGUN=gun 287s --- PASS: TestAtomicUpdateNonValidationFailureNotPropagated (0.00s) 287s === RUN TestAtomicUpdateVersionErrorPropagated 287s time="2025-02-16T02:56:17Z" level=info msg="400 POST old version error" go.version=go1.23.6 testGUN=gun 287s --- PASS: TestAtomicUpdateVersionErrorPropagated (0.00s) 287s === RUN TestGetMaybeServerSignedNoCrypto 287s --- PASS: TestGetMaybeServerSignedNoCrypto (0.00s) 287s === RUN TestGetMaybeServerSignedNoKey 287s --- PASS: TestGetMaybeServerSignedNoKey (0.00s) 287s === RUN TestValidateEmptyNew 287s --- PASS: TestValidateEmptyNew (0.00s) 287s === RUN TestValidateRootCanContainOnlyx509KeysWithRightGun 287s --- PASS: TestValidateRootCanContainOnlyx509KeysWithRightGun (0.00s) 287s === RUN TestValidatePrevTimestamp 287s --- PASS: TestValidatePrevTimestamp (0.00s) 287s === RUN TestValidatePreviousTimestampCorrupt 287s time="2025-02-16T02:56:17Z" level=error msg="Failed to unmarshal existing timestamp for GUN docker.com/notary" 287s --- PASS: TestValidatePreviousTimestampCorrupt (0.00s) 287s === RUN TestValidateGetCurrentTimestampBroken 287s --- PASS: TestValidateGetCurrentTimestampBroken (0.00s) 287s === RUN TestValidateNoNewRoot 287s --- PASS: TestValidateNoNewRoot (0.00s) 287s === RUN TestValidateNoNewTargets 287s --- PASS: TestValidateNoNewTargets (0.00s) 287s === RUN TestValidateOnlySnapshot 287s --- PASS: TestValidateOnlySnapshot (0.00s) 287s === RUN TestValidateOldRoot 287s --- PASS: TestValidateOldRoot (0.00s) 287s === RUN TestValidateOldRootCorrupt 287s --- PASS: TestValidateOldRootCorrupt (0.00s) 287s === RUN TestValidateOldRootCorruptRootRole 287s --- PASS: TestValidateOldRootCorruptRootRole (0.00s) 287s === RUN TestValidateRootGetCurrentRootBroken 287s --- PASS: TestValidateRootGetCurrentRootBroken (0.00s) 287s === RUN TestValidateRootRotationWithOldSigs 287s --- PASS: TestValidateRootRotationWithOldSigs (0.01s) 287s === RUN TestValidateRootRotationMultipleKeysThreshold1 287s --- PASS: TestValidateRootRotationMultipleKeysThreshold1 (0.01s) 287s === RUN TestRootRotationNotSignedWithOldKeysForOldRole 287s --- PASS: TestRootRotationNotSignedWithOldKeysForOldRole (0.01s) 287s === RUN TestRootRotationVersionIncrement 287s --- PASS: TestRootRotationVersionIncrement (0.01s) 287s === RUN TestValidateNoRoot 287s --- PASS: TestValidateNoRoot (0.00s) 287s === RUN TestValidateSnapshotMissingNoSnapshotKey 287s --- PASS: TestValidateSnapshotMissingNoSnapshotKey (0.00s) 287s === RUN TestValidateSnapshotGenerateNoPrev 287s --- PASS: TestValidateSnapshotGenerateNoPrev (0.01s) 287s === RUN TestValidateSnapshotGenerateWithPrev 287s --- PASS: TestValidateSnapshotGenerateWithPrev (0.01s) 287s === RUN TestValidateSnapshotGeneratePrevCorrupt 287s time="2025-02-16T02:56:17Z" level=error msg="Failed to unmarshal existing snapshot for GUN docker.com/notary" 287s --- PASS: TestValidateSnapshotGeneratePrevCorrupt (0.01s) 287s === RUN TestValidateSnapshotGenerateStoreGetCurrentSnapshotBroken 287s --- PASS: TestValidateSnapshotGenerateStoreGetCurrentSnapshotBroken (0.01s) 287s === RUN TestValidateSnapshotGenerateNoTargets 287s --- PASS: TestValidateSnapshotGenerateNoTargets (0.01s) 287s === RUN TestValidateSnapshotGenerate 287s --- PASS: TestValidateSnapshotGenerate (0.01s) 287s === RUN TestValidateRootNoTimestampKey 287s --- PASS: TestValidateRootNoTimestampKey (0.00s) 287s === RUN TestValidateRootInvalidTimestampKey 287s --- PASS: TestValidateRootInvalidTimestampKey (0.00s) 287s === RUN TestValidateRootInvalidTimestampThreshold 287s --- PASS: TestValidateRootInvalidTimestampThreshold (0.00s) 287s === RUN TestValidateRootInvalidZeroThreshold 287s --- PASS: TestValidateRootInvalidZeroThreshold (0.01s) 287s === RUN TestValidateRootRoleMissing 287s --- PASS: TestValidateRootRoleMissing (0.00s) 287s === RUN TestValidateTargetsRoleMissing 287s --- PASS: TestValidateTargetsRoleMissing (0.00s) 287s === RUN TestValidateSnapshotRoleMissing 287s --- PASS: TestValidateSnapshotRoleMissing (0.00s) 287s === RUN TestValidateRootSigMissing 287s --- PASS: TestValidateRootSigMissing (0.00s) 287s === RUN TestValidateTargetsSigMissing 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: tuf: data has no signatures" 287s --- PASS: TestValidateTargetsSigMissing (0.00s) 287s === RUN TestValidateSnapshotSigMissing 287s --- PASS: TestValidateSnapshotSigMissing (0.00s) 287s === RUN TestValidateRootCorrupt 287s --- PASS: TestValidateRootCorrupt (0.00s) 287s === RUN TestValidateTargetsCorrupt 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: invalid character '\\u0084' looking for beginning of value" 287s --- PASS: TestValidateTargetsCorrupt (0.00s) 287s === RUN TestValidateSnapshotCorrupt 287s --- PASS: TestValidateSnapshotCorrupt (0.00s) 287s === RUN TestValidateRootModifiedSize 287s --- PASS: TestValidateRootModifiedSize (0.00s) 287s === RUN TestValidateTargetsModifiedSize 287s --- PASS: TestValidateTargetsModifiedSize (0.00s) 287s === RUN TestValidateRootModifiedHash 287s --- PASS: TestValidateRootModifiedHash (0.00s) 287s === RUN TestValidateTargetsModifiedHash 287s --- PASS: TestValidateTargetsModifiedHash (0.00s) 287s === RUN TestGenerateSnapshotRootNotLoaded 287s --- PASS: TestGenerateSnapshotRootNotLoaded (0.00s) 287s === RUN TestGenerateSnapshotNoKey 287s --- PASS: TestGenerateSnapshotNoKey (0.00s) 287s === RUN TestLoadTargetsLoadsNothingIfNoUpdates 287s --- PASS: TestLoadTargetsLoadsNothingIfNoUpdates (0.00s) 287s === RUN TestValidateTargetsRequiresStoredParent 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: targets must be loaded first" 287s --- PASS: TestValidateTargetsRequiresStoredParent (0.00s) 287s === RUN TestValidateTargetsParentInUpdate 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: invalid character 'I' looking for beginning of value" 287s --- PASS: TestValidateTargetsParentInUpdate (0.00s) 287s === RUN TestValidateTargetsRoleNotInParent 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: tuf: invalid role targets/level1. delegation does not exist" 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: targets has already been loaded" 287s time="2025-02-16T02:56:17Z" level=error msg="ErrBadTargets: tuf: invalid role targets/level1. delegation does not exist" 287s --- PASS: TestValidateTargetsRoleNotInParent (0.00s) 287s PASS 287s ok github.com/theupdateframework/notary/server/handlers 0.236s 287s === RUN TestSnapshotExpired 287s --- PASS: TestSnapshotExpired (0.00s) 287s === RUN TestSnapshotNotExpired 287s --- PASS: TestSnapshotNotExpired (0.00s) 287s === RUN TestGetSnapshotKeyCreate 287s --- PASS: TestGetSnapshotKeyCreate (0.00s) 287s === RUN TestGetSnapshotKeyCreateWithFailingStore 287s time="2025-02-16T02:56:17Z" level=error msg="Error when retrieving root role for GUN gun: failing store failed" 287s --- PASS: TestGetSnapshotKeyCreateWithFailingStore (0.00s) 287s === RUN TestGetSnapshotKeyCreateWithCorruptedStore 287s time="2025-02-16T02:56:17Z" level=error msg="Failed to unmarshal existing root for GUN gun to retrieve snapshot key ID" 287s --- PASS: TestGetSnapshotKeyCreateWithCorruptedStore (0.00s) 287s === RUN TestGetSnapshotKeyCreateWithInvalidAlgo 287s --- PASS: TestGetSnapshotKeyCreateWithInvalidAlgo (0.00s) 287s === RUN TestGetSnapshotKeyExistingMetadata 287s --- PASS: TestGetSnapshotKeyExistingMetadata (0.00s) 287s === RUN TestGetSnapshotNoPreviousSnapshot 287s time="2025-02-16T02:56:17Z" level=error msg="Failed to unmarshal existing snapshot for GUN gun" 287s --- PASS: TestGetSnapshotNoPreviousSnapshot (0.00s) 287s === RUN TestGetSnapshotReturnsPreviousSnapshotIfUnexpired 287s --- PASS: TestGetSnapshotReturnsPreviousSnapshotIfUnexpired (0.00s) 287s === RUN TestGetSnapshotOldSnapshotExpired 287s --- PASS: TestGetSnapshotOldSnapshotExpired (0.00s) 287s === RUN TestCannotMakeNewSnapshotIfNoRoot 287s --- PASS: TestCannotMakeNewSnapshotIfNoRoot (0.00s) 287s === RUN TestCreateSnapshotNoKeyInCrypto 287s --- PASS: TestCreateSnapshotNoKeyInCrypto (0.00s) 287s PASS 287s ok github.com/theupdateframework/notary/server/snapshot 0.017s 288s === RUN TestMemoryUpdateCurrentEmpty 288s --- PASS: TestMemoryUpdateCurrentEmpty (0.00s) 288s === RUN TestMemoryUpdateCurrentVersionCheckOldVersionExists 288s --- PASS: TestMemoryUpdateCurrentVersionCheckOldVersionExists (0.00s) 288s === RUN TestMemoryUpdateCurrentVersionCheckOldVersionNotExist 288s --- PASS: TestMemoryUpdateCurrentVersionCheckOldVersionNotExist (0.00s) 288s === RUN TestMemoryUpdateManyNoConflicts 288s --- PASS: TestMemoryUpdateManyNoConflicts (0.00s) 288s === RUN TestMemoryUpdateManyConflictRollback 288s --- PASS: TestMemoryUpdateManyConflictRollback (0.00s) 288s === RUN TestMemoryDeleteSuccess 288s --- PASS: TestMemoryDeleteSuccess (0.00s) 288s === RUN TestGetCurrent 288s --- PASS: TestGetCurrent (0.00s) 288s === RUN TestGetChecksumNotFound 288s --- PASS: TestGetChecksumNotFound (0.00s) 288s === RUN TestMemoryGetChanges 288s --- PASS: TestMemoryGetChanges (0.00s) 288s === RUN TestGetVersion 288s --- PASS: TestGetVersion (0.00s) 288s === RUN TestRDBTUFFileJSONUnmarshalling 288s --- PASS: TestRDBTUFFileJSONUnmarshalling (0.00s) 288s === RUN TestRDBTUFFileJSONUnmarshallingFailure 288s --- PASS: TestRDBTUFFileJSONUnmarshallingFailure (0.00s) 288s === RUN TestSQLUpdateCurrentEmpty 288s --- PASS: TestSQLUpdateCurrentEmpty (0.03s) 288s === RUN TestSQLUpdateCurrentVersionCheckOldVersionExists 288s --- PASS: TestSQLUpdateCurrentVersionCheckOldVersionExists (0.01s) 288s === RUN TestSQLUpdateCurrentVersionCheckOldVersionNotExist 288s --- PASS: TestSQLUpdateCurrentVersionCheckOldVersionNotExist (0.01s) 288s === RUN TestSQLUpdateManyNoConflicts 288s --- PASS: TestSQLUpdateManyNoConflicts (0.01s) 288s === RUN TestSQLUpdateManyConflictRollback 288s --- PASS: TestSQLUpdateManyConflictRollback (0.01s) 288s === RUN TestSQLDelete 288s --- PASS: TestSQLDelete (0.02s) 288s === RUN TestSQLDBCheckHealthTableMissing 288s --- PASS: TestSQLDBCheckHealthTableMissing (0.01s) 288s === RUN TestSQLDBCheckHealthDBConnectionFail 288s --- PASS: TestSQLDBCheckHealthDBConnectionFail (0.01s) 288s === RUN TestSQLDBCheckHealthSucceeds 288s --- PASS: TestSQLDBCheckHealthSucceeds (0.01s) 288s === RUN TestSQLDBGetChecksum 288s --- PASS: TestSQLDBGetChecksum (0.01s) 288s === RUN TestSQLDBGetChecksumNotFound 288s --- PASS: TestSQLDBGetChecksumNotFound (0.01s) 288s === RUN TestSQLTUFMetaStoreGetCurrent 288s --- PASS: TestSQLTUFMetaStoreGetCurrent (0.02s) 288s === RUN TestSQLGetChanges 288s --- PASS: TestSQLGetChanges (0.02s) 288s === RUN TestSQLDBGetVersion 288s --- PASS: TestSQLDBGetVersion (0.01s) 288s PASS 288s ok github.com/theupdateframework/notary/server/storage 0.194s 289s === RUN TestTimestampExpired 289s --- PASS: TestTimestampExpired (0.00s) 289s === RUN TestTimestampNotExpired 289s --- PASS: TestTimestampNotExpired (0.00s) 289s === RUN TestGetTimestampKey 289s --- PASS: TestGetTimestampKey (0.00s) 289s === RUN TestGetTimestampNoPreviousTimestamp 289s time="2025-02-16T02:56:19Z" level=error msg="Failed to unmarshal existing timestamp" 289s --- PASS: TestGetTimestampNoPreviousTimestamp (0.00s) 289s === RUN TestGetTimestampReturnsPreviousTimestampIfUnexpired 289s --- PASS: TestGetTimestampReturnsPreviousTimestampIfUnexpired (0.00s) 289s === RUN TestGetTimestampOldTimestampExpired 289s --- PASS: TestGetTimestampOldTimestampExpired (0.00s) 289s === RUN TestCannotMakeNewTimestampIfNoRootOrSnapshot 289s time="2025-02-16T02:56:19Z" level=error msg="Failed to create a new timestamp" 289s time="2025-02-16T02:56:19Z" level=error msg="Failed to create a new timestamp" 289s --- PASS: TestCannotMakeNewTimestampIfNoRootOrSnapshot (0.00s) 289s === RUN TestCreateTimestampNoKeyInCrypto 289s time="2025-02-16T02:56:19Z" level=error msg="Failed to create a new timestamp" 289s --- PASS: TestCreateTimestampNoKeyInCrypto (0.00s) 289s === RUN TestGetTimestampKeyCreateWithFailingStore 289s time="2025-02-16T02:56:19Z" level=error msg="Error when retrieving root role for GUN gun: failing store failed" 289s --- PASS: TestGetTimestampKeyCreateWithFailingStore (0.00s) 289s === RUN TestGetTimestampKeyCreateWithCorruptedStore 289s time="2025-02-16T02:56:19Z" level=error msg="Failed to unmarshal existing root for GUN gun to retrieve timestamp key ID" 289s --- PASS: TestGetTimestampKeyCreateWithCorruptedStore (0.00s) 289s === RUN TestGetTimestampKeyCreateWithInvalidAlgo 289s --- PASS: TestGetTimestampKeyCreateWithInvalidAlgo (0.00s) 289s === RUN TestGetTimestampKeyExistingMetadata 289s --- PASS: TestGetTimestampKeyExistingMetadata (0.00s) 289s PASS 289s ok github.com/theupdateframework/notary/server/timestamp 0.021s 289s ? github.com/theupdateframework/notary/signer [no test files] 289s ? github.com/theupdateframework/notary/signer/api [no test files] 289s ? github.com/theupdateframework/notary/signer/client [no test files] 290s === RUN TestGetSuccessPopulatesCache 290s --- PASS: TestGetSuccessPopulatesCache (0.00s) 290s === RUN TestAddKeyPopulatesCacheIfSuccessful 290s --- PASS: TestAddKeyPopulatesCacheIfSuccessful (0.00s) 290s === RUN TestDeleteKeyRemovesKeyFromCache 290s --- PASS: TestDeleteKeyRemovesKeyFromCache (0.00s) 290s === RUN TestRDBPrivateKeyJSONUnmarshalling 290s --- PASS: TestRDBPrivateKeyJSONUnmarshalling (0.00s) 290s === RUN TestRDBPrivateKeyJSONUnmarshallingFailure 290s --- PASS: TestRDBPrivateKeyJSONUnmarshallingFailure (0.00s) 290s === RUN TestNewSQLKeyDBStorePropagatesDBError 290s `nodb` is not officially supported, running under compatibility mode. 290s --- PASS: TestNewSQLKeyDBStorePropagatesDBError (0.00s) 290s === RUN TestSQLDBHealthCheckMissingTable 290s --- PASS: TestSQLDBHealthCheckMissingTable (0.01s) 290s === RUN TestSQLDBHealthCheckNoConnection 290s --- PASS: TestSQLDBHealthCheckNoConnection (0.01s) 290s === RUN TestSQLKeyCanOnlyBeAddedOnce 290s 290s (/tmp/autopkgtest.M2Z2np/autopkgtest_tmp/_build/src/github.com/theupdateframework/notary/signer/keydbstore/sql_keydbstore.go:98) 290s [2025-02-16 02:56:20]  UNIQUE constraint failed: private_keys.key_id  290s --- PASS: TestSQLKeyCanOnlyBeAddedOnce (0.03s) 290s === RUN TestSQLCreateDelete 290s --- PASS: TestSQLCreateDelete (0.03s) 290s === RUN TestSQLKeyRotation 290s --- PASS: TestSQLKeyRotation (0.04s) 290s === RUN TestSQLSigningMarksKeyActive 290s time="2025-02-16T02:56:20Z" level=error msg="Key 533d702ba930a6f32e85bbb0f43079e3c7b3b4f4ac2d3e88d65dafb036b67dbd was just used to sign hash successful, db closed, error when trying to mark key as active: sql: database is closed" 290s 290s (/tmp/autopkgtest.M2Z2np/autopkgtest_tmp/_build/src/github.com/theupdateframework/notary/signer/keydbstore/sql_keydbstore.go:197) 290s [2025-02-16 02:56:20]  sql: database is closed  290s --- PASS: TestSQLSigningMarksKeyActive (0.06s) 290s === RUN TestSQLCreateKey 290s --- PASS: TestSQLCreateKey (0.06s) 290s === RUN TestSQLUnimplementedInterfaceBehavior 290s --- PASS: TestSQLUnimplementedInterfaceBehavior (0.02s) 290s PASS 290s ok github.com/theupdateframework/notary/signer/keydbstore 0.267s 291s === RUN TestSet 291s --- PASS: TestSet (0.00s) 291s === RUN TestSetWithNoParentDirectory 291s --- PASS: TestSetWithNoParentDirectory (0.00s) 291s === RUN TestSetRemovesExistingFileBeforeWriting 291s --- PASS: TestSetRemovesExistingFileBeforeWriting (0.00s) 291s === RUN TestGetSized 291s --- PASS: TestGetSized (0.00s) 291s === RUN TestGetSizedSet 291s --- PASS: TestGetSizedSet (0.00s) 291s === RUN TestRemove 291s --- PASS: TestRemove (0.00s) 291s === RUN TestRemoveAll 291s --- PASS: TestRemoveAll (0.00s) 291s === RUN TestAddFile 291s --- PASS: TestAddFile (0.00s) 291s === RUN TestRemoveFile 291s --- PASS: TestRemoveFile (0.00s) 291s === RUN TestListFiles 291s --- PASS: TestListFiles (0.00s) 291s === RUN TestGetPath 291s --- PASS: TestGetPath (0.00s) 291s === RUN TestGetPathProtection 291s --- PASS: TestGetPathProtection (0.00s) 291s === RUN TestGetData 291s --- PASS: TestGetData (0.00s) 291s === RUN TestCreateDirectory 291s --- PASS: TestCreateDirectory (0.00s) 291s === RUN TestCreatePrivateDirectory 291s --- PASS: TestCreatePrivateDirectory (0.00s) 291s === RUN TestFileStoreConsistency 291s --- PASS: TestFileStoreConsistency (0.00s) 291s === RUN TestHTTPStoreGetSized 291s --- PASS: TestHTTPStoreGetSized (0.00s) 291s === RUN TestHTTPStoreGetAllMeta 291s --- PASS: TestHTTPStoreGetAllMeta (0.00s) 291s === RUN TestSetSingleAndSetMultiMeta 291s --- PASS: TestSetSingleAndSetMultiMeta (0.00s) 291s === RUN Test404Error 291s --- PASS: Test404Error (0.00s) 291s === RUN Test50XErrors 291s --- PASS: Test50XErrors (0.00s) 291s === RUN Test400Error 291s --- PASS: Test400Error (0.00s) 291s === RUN TestTranslateErrorsParse400Errors 291s --- PASS: TestTranslateErrorsParse400Errors (0.00s) 291s === RUN TestTranslateErrorsWhenCannotParse400 291s --- PASS: TestTranslateErrorsWhenCannotParse400 (0.00s) 291s === RUN TestTranslateErrorsLimitsErrorSize 291s --- PASS: TestTranslateErrorsLimitsErrorSize (0.00s) 291s === RUN TestHTTPStoreRemoveAll 291s --- PASS: TestHTTPStoreRemoveAll (0.00s) 291s === RUN TestHTTPStoreRotateKey 291s --- PASS: TestHTTPStoreRotateKey (0.00s) 291s === RUN TestHTTPStoreGetKey 291s --- PASS: TestHTTPStoreGetKey (0.00s) 291s === RUN TestHTTPStoreGetRotateKeySizeLimited 291s --- PASS: TestHTTPStoreGetRotateKeySizeLimited (0.00s) 291s === RUN TestHTTPOffline 291s --- PASS: TestHTTPOffline (0.00s) 291s === RUN TestErrServerUnavailable 291s --- PASS: TestErrServerUnavailable (0.00s) 291s === RUN TestNetworkError 291s httpstore_test.go:390: DM-Skipped 291s --- SKIP: TestNetworkError (0.00s) 291s === RUN TestLocation 291s --- PASS: TestLocation (0.00s) 291s === RUN TestMemoryStoreMetadataOperations 291s --- PASS: TestMemoryStoreMetadataOperations (0.00s) 291s === RUN TestMemoryStoreGetSized 291s --- PASS: TestMemoryStoreGetSized (0.00s) 291s === RUN TestOfflineStore 291s --- PASS: TestOfflineStore (0.00s) 291s === RUN TestErrOffline 291s --- PASS: TestErrOffline (0.00s) 291s === RUN TestMemoryStoreMetadata 291s --- PASS: TestMemoryStoreMetadata (0.00s) 291s PASS 291s ok github.com/theupdateframework/notary/storage 0.013s 291s ? github.com/theupdateframework/notary/storage/rethinkdb [no test files] 291s === RUN TestExportKeys 291s --- PASS: TestExportKeys (0.00s) 291s === RUN TestExportKeysByGUN 291s --- PASS: TestExportKeysByGUN (0.00s) 291s === RUN TestExportKeysByID 291s --- PASS: TestExportKeysByID (0.00s) 291s === RUN TestExport2InOneFile 291s --- PASS: TestExport2InOneFile (0.00s) 291s === RUN TestImportKeys 291s --- PASS: TestImportKeys (0.00s) 291s === RUN TestImportNoPath 291s --- PASS: TestImportNoPath (0.00s) 291s === RUN TestNonRootPathInference 291s --- PASS: TestNonRootPathInference (0.00s) 291s === RUN TestBlockHeaderPrecedenceRoleAndGun 291s --- PASS: TestBlockHeaderPrecedenceRoleAndGun (0.00s) 291s === RUN TestBlockHeaderPrecedenceGunFromPath 291s --- PASS: TestBlockHeaderPrecedenceGunFromPath (0.00s) 291s === RUN TestImportKeys2InOneFile 291s --- PASS: TestImportKeys2InOneFile (0.00s) 291s === RUN TestImportKeys2InOneFileNoPath 291s --- PASS: TestImportKeys2InOneFileNoPath (0.00s) 291s === RUN TestEncryptedKeyImportFail 291s time="2025-02-16T02:56:21Z" level=warning msg="failed to import key to store: Invalid key generated, key may be encrypted and does not contain path header" 291s --- PASS: TestEncryptedKeyImportFail (0.00s) 291s === RUN TestEncryptedKeyImportSuccess 291s --- PASS: TestEncryptedKeyImportSuccess (0.00s) 291s === RUN TestEncryption 291s --- PASS: TestEncryption (0.00s) 291s === RUN TestAddKey 291s --- PASS: TestAddKey (0.01s) 291s === RUN TestKeyStoreInternalState 291s --- PASS: TestKeyStoreInternalState (0.00s) 291s === RUN TestGet 291s --- PASS: TestGet (0.01s) 291s === RUN TestGetLegacyKey 291s --- PASS: TestGetLegacyKey (0.00s) 291s === RUN TestListKeys 291s --- PASS: TestListKeys (0.01s) 291s === RUN TestAddGetKeyMemStore 291s --- PASS: TestAddGetKeyMemStore (0.00s) 291s === RUN TestAddGetKeyInfoMemStore 291s --- PASS: TestAddGetKeyInfoMemStore (0.01s) 291s === RUN TestGetDecryptedWithTamperedCipherText 291s time="2025-02-16T02:56:21Z" level=error msg="PEM block is empty" 291s --- PASS: TestGetDecryptedWithTamperedCipherText (0.00s) 291s === RUN TestGetDecryptedWithInvalidPassphrase 291s --- PASS: TestGetDecryptedWithInvalidPassphrase (0.01s) 291s === RUN TestGetDecryptedWithConsistentlyInvalidPassphrase 291s --- PASS: TestGetDecryptedWithConsistentlyInvalidPassphrase (0.02s) 291s === RUN TestRemoveKey 291s --- PASS: TestRemoveKey (0.01s) 291s === RUN TestKeysAreCached 291s --- PASS: TestKeysAreCached (0.00s) 291s PASS 291s ok github.com/theupdateframework/notary/trustmanager 0.123s 292s === RUN TestRemoteStore 292s time="2025-02-16T02:56:22Z" level=info msg="listing files from localhost:9888" 292s time="2025-02-16T02:56:22Z" level=info msg="listing files from localhost:9888" 292s --- PASS: TestRemoteStore (0.03s) 292s === RUN TestErrors 292s time="2025-02-16T02:56:22Z" level=error msg="failed to store: test error" 292s --- PASS: TestErrors (0.03s) 292s === RUN TestNewGRPCStorage 292s --- PASS: TestNewGRPCStorage (0.00s) 292s === RUN TestGRPCStorage 292s --- PASS: TestGRPCStorage (0.00s) 292s PASS 292s ok github.com/theupdateframework/notary/trustmanager/remoteks 0.070s 292s ? github.com/theupdateframework/notary/trustmanager/remoteks/github.com/theupdateframework/notary/trustmanager/remoteks [no test files] 292s ? github.com/theupdateframework/notary/trustmanager/yubikey [no test files] 298s === RUN TestWildcardMatch 298s --- PASS: TestWildcardMatch (0.00s) 298s === RUN TestValidateRoot 298s 2025/02/16 02:56:28 [INFO] generate received request 298s 2025/02/16 02:56:28 [INFO] received CSR 298s 2025/02/16 02:56:28 [INFO] generating key: ecdsa-256 298s 2025/02/16 02:56:28 [INFO] encoded CSR 298s 2025/02/16 02:56:28 [INFO] signed certificate with serial number 323116464947688380973065487667410796387140291989 298s 2025/02/16 02:56:28 [INFO] received CSR 298s 2025/02/16 02:56:28 [INFO] generating key: ecdsa-256 298s 2025/02/16 02:56:28 [INFO] encoded CSR 298s 2025/02/16 02:56:28 [INFO] signed certificate with serial number 321545682246780493122554018454494601893630825516 298s 2025/02/16 02:56:28 [INFO] received CSR 298s 2025/02/16 02:56:28 [INFO] generating key: ecdsa-256 298s 2025/02/16 02:56:28 [INFO] encoded CSR 298s 2025/02/16 02:56:28 [INFO] signed certificate with serial number 5985690926355809503054074592162780033811660052 298s --- PASS: TestValidateRoot (0.01s) 298s === RUN TestValidateRootWithoutTOFUS 298s --- PASS: TestValidateRootWithoutTOFUS (0.00s) 298s === RUN TestValidateRootWithPinnedCert 298s --- PASS: TestValidateRootWithPinnedCert (0.00s) 298s === RUN TestValidateRootWithPinnedCertAndIntermediates 298s --- PASS: TestValidateRootWithPinnedCertAndIntermediates (0.01s) 298s === RUN TestValidateRootFailuresWithPinnedCert 298s --- PASS: TestValidateRootFailuresWithPinnedCert (0.00s) 298s === RUN TestValidateRootWithPinnedCA 298s --- PASS: TestValidateRootWithPinnedCA (0.02s) 298s === RUN TestValidateSuccessfulRootRotation 298s --- PASS: TestValidateSuccessfulRootRotation (0.03s) 298s === RUN TestValidateRootRotationMissingOrigSig 298s --- PASS: TestValidateRootRotationMissingOrigSig (0.03s) 298s === RUN TestValidateRootRotationMissingNewSig 298s --- PASS: TestValidateRootRotationMissingNewSig (0.04s) 298s === RUN TestValidateRootRotationTrustPinning 298s --- PASS: TestValidateRootRotationTrustPinning (0.03s) 298s === RUN TestValidateRootRotationTrustPinningInvalidCA 298s --- PASS: TestValidateRootRotationTrustPinningInvalidCA (0.02s) 298s === RUN TestParsePEMPublicKey 298s time="2025-02-16T02:56:28Z" level=warning msg="certificate with CN notary is near expiry" 298s --- PASS: TestParsePEMPublicKey (0.00s) 298s === RUN TestCheckingCertExpiry 298s time="2025-02-16T02:56:28Z" level=warning msg="certificate with CN notary is near expiry" 298s --- PASS: TestCheckingCertExpiry (0.00s) 298s === RUN TestValidateRootWithExpiredIntermediate 298s --- PASS: TestValidateRootWithExpiredIntermediate (0.00s) 298s === RUN TestCheckingWildcardCert 298s --- PASS: TestCheckingWildcardCert (0.00s) 298s === RUN TestWildcardMatching 298s --- PASS: TestWildcardMatching (0.00s) 298s PASS 298s ok github.com/theupdateframework/notary/trustpinning 0.241s 299s === RUN TestInitSnapshotNoTargets 299s --- PASS: TestInitSnapshotNoTargets (0.00s) 299s === RUN TestInitRepo 299s --- PASS: TestInitRepo (0.00s) 299s === RUN TestUpdateDelegations 299s --- PASS: TestUpdateDelegations (0.00s) 299s === RUN TestPurgeDelegationsKeyFromTop 299s time="2025-02-16T02:56:28Z" level=warning msg="role targets/sybil has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 299s time="2025-02-16T02:56:28Z" level=warning msg="role targets/vimes/carrot has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 299s --- PASS: TestPurgeDelegationsKeyFromTop (0.00s) 299s === RUN TestPurgeDelegationsKeyFromDeep 299s time="2025-02-16T02:56:28Z" level=warning msg="role targets/vimes/carrot has fewer keys than its threshold of 1; it will not be usable until keys are added to it" 299s --- PASS: TestPurgeDelegationsKeyFromDeep (0.00s) 299s === RUN TestPurgeDelegationsKeyBadWildRole 299s --- PASS: TestPurgeDelegationsKeyBadWildRole (0.00s) 299s === RUN TestUpdateDelegationsParentMissing 299s --- PASS: TestUpdateDelegationsParentMissing (0.00s) 299s === RUN TestUpdateDelegationsMissingParentKey 299s --- PASS: TestUpdateDelegationsMissingParentKey (0.00s) 299s === RUN TestUpdateDelegationsInvalidRole 299s --- PASS: TestUpdateDelegationsInvalidRole (0.00s) 299s === RUN TestUpdateDelegationsRoleThatIsMissingDelegationKey 299s --- PASS: TestUpdateDelegationsRoleThatIsMissingDelegationKey (0.00s) 299s === RUN TestUpdateDelegationsNotEnoughKeys 299s time="2025-02-16T02:56:28Z" level=warning msg="role targets/role has fewer keys than its threshold of 2; it will not be usable until keys are added to it" 299s --- PASS: TestUpdateDelegationsNotEnoughKeys (0.00s) 299s === RUN TestUpdateDelegationsAddKeyToRole 299s --- PASS: TestUpdateDelegationsAddKeyToRole (0.00s) 299s === RUN TestDeleteDelegations 299s --- PASS: TestDeleteDelegations (0.00s) 299s === RUN TestDeleteDelegationsRoleNotExistBecauseNoParentMeta 299s --- PASS: TestDeleteDelegationsRoleNotExistBecauseNoParentMeta (0.00s) 299s === RUN TestDeleteDelegationsRoleNotExist 299s --- PASS: TestDeleteDelegationsRoleNotExist (0.00s) 299s === RUN TestDeleteDelegationsInvalidRole 299s --- PASS: TestDeleteDelegationsInvalidRole (0.00s) 299s === RUN TestDeleteDelegationsParentMissing 299s --- PASS: TestDeleteDelegationsParentMissing (0.00s) 299s === RUN TestDeleteDelegationsMissingParentSigningKey 299s --- PASS: TestDeleteDelegationsMissingParentSigningKey (0.00s) 299s === RUN TestDeleteDelegationsMidSliceRole 299s --- PASS: TestDeleteDelegationsMidSliceRole (0.00s) 299s === RUN TestGetDelegationRoleAndMetadataExistDelegationExists 299s --- PASS: TestGetDelegationRoleAndMetadataExistDelegationExists (0.00s) 299s === RUN TestGetDelegationRoleAndMetadataExistDelegationDoesntExists 299s --- PASS: TestGetDelegationRoleAndMetadataExistDelegationDoesntExists (0.00s) 299s === RUN TestGetDelegationRoleAndMetadataDoesntExists 299s --- PASS: TestGetDelegationRoleAndMetadataDoesntExists (0.00s) 299s === RUN TestGetDelegationParentMissing 299s --- PASS: TestGetDelegationParentMissing (0.00s) 299s === RUN TestAddTargetsRoleAndMetadataExist 299s --- PASS: TestAddTargetsRoleAndMetadataExist (0.00s) 299s === RUN TestAddTargetsRoleExistsAndMetadataDoesntExist 299s --- PASS: TestAddTargetsRoleExistsAndMetadataDoesntExist (0.00s) 299s === RUN TestAddTargetsRoleDoesntExist 299s --- PASS: TestAddTargetsRoleDoesntExist (0.00s) 299s === RUN TestAddTargetsNoSigningKeys 299s --- PASS: TestAddTargetsNoSigningKeys (0.00s) 299s === RUN TestRemoveExistingAndNonexistingTargets 299s --- PASS: TestRemoveExistingAndNonexistingTargets (0.00s) 299s === RUN TestRemoveTargetsRoleDoesntExist 299s --- PASS: TestRemoveTargetsRoleDoesntExist (0.00s) 299s === RUN TestRemoveTargetsNoSigningKeys 299s --- PASS: TestRemoveTargetsNoSigningKeys (0.00s) 299s === RUN TestAddBaseKeysToRoot 299s --- PASS: TestAddBaseKeysToRoot (0.00s) 299s === RUN TestRemoveBaseKeysFromRoot 299s --- PASS: TestRemoveBaseKeysFromRoot (0.00s) 299s === RUN TestReplaceBaseKeysInRoot 299s --- PASS: TestReplaceBaseKeysInRoot (0.00s) 299s === RUN TestGetAllRoles 299s --- PASS: TestGetAllRoles (0.00s) 299s === RUN TestGetBaseRoles 299s --- PASS: TestGetBaseRoles (0.00s) 299s === RUN TestGetBaseRolesInvalidName 299s --- PASS: TestGetBaseRolesInvalidName (0.00s) 299s === RUN TestGetDelegationValidRoles 299s --- PASS: TestGetDelegationValidRoles (0.00s) 299s === RUN TestGetDelegationRolesInvalidName 299s --- PASS: TestGetDelegationRolesInvalidName (0.00s) 299s === RUN TestGetDelegationRolesInvalidPaths 299s --- PASS: TestGetDelegationRolesInvalidPaths (0.00s) 299s === RUN TestDelegationRolesParent 299s --- PASS: TestDelegationRolesParent (0.00s) 299s === RUN TestGetBaseRoleEmptyRepo 299s --- PASS: TestGetBaseRoleEmptyRepo (0.00s) 299s === RUN TestGetBaseRoleKeyMissing 299s --- PASS: TestGetBaseRoleKeyMissing (0.00s) 299s === RUN TestGetDelegationRoleKeyMissing 299s --- PASS: TestGetDelegationRoleKeyMissing (0.00s) 299s === RUN TestSignRootOldKeyCertExists 299s --- PASS: TestSignRootOldKeyCertExists (0.01s) 299s === RUN TestSignRootOldKeyCertMissing 299s --- PASS: TestSignRootOldKeyCertMissing (0.01s) 299s === RUN TestRootKeyRotation 299s --- PASS: TestRootKeyRotation (0.04s) 299s === RUN TestBuilderLoadsValidRolesOnly 299s --- PASS: TestBuilderLoadsValidRolesOnly (0.00s) 299s === RUN TestBuilderOnlyAcceptsRootFirstWhenLoading 299s --- PASS: TestBuilderOnlyAcceptsRootFirstWhenLoading (0.00s) 299s === RUN TestBuilderOnlyAcceptsDelegationsAfterParent 299s --- PASS: TestBuilderOnlyAcceptsDelegationsAfterParent (0.00s) 299s === RUN TestMarkingIsValid 299s --- PASS: TestMarkingIsValid (0.00s) 299s === RUN TestBuilderLoadInvalidDelegations 299s --- PASS: TestBuilderLoadInvalidDelegations (0.00s) 299s === RUN TestBuilderLoadInvalidDelegationsOldVersion 299s --- PASS: TestBuilderLoadInvalidDelegationsOldVersion (0.00s) 299s === RUN TestBuilderAcceptRoleOnce 299s --- PASS: TestBuilderAcceptRoleOnce (0.00s) 299s === RUN TestBuilderStopsAcceptingOrProducingDataOnceDone 299s --- PASS: TestBuilderStopsAcceptingOrProducingDataOnceDone (0.00s) 299s === RUN TestGenerateSnapshotInvalidOperations 299s --- PASS: TestGenerateSnapshotInvalidOperations (0.02s) 299s === RUN TestGenerateTimestampInvalidOperations 299s --- PASS: TestGenerateTimestampInvalidOperations (0.01s) 299s === RUN TestGetConsistentInfo 299s --- PASS: TestGetConsistentInfo (0.00s) 299s === RUN TestTimestampPreAndPostChecksumming 299s --- PASS: TestTimestampPreAndPostChecksumming (0.00s) 299s === RUN TestSnapshotLoadedFirstChecksumsOthers 299s --- PASS: TestSnapshotLoadedFirstChecksumsOthers (0.00s) 299s === RUN TestSnapshotLoadedAfterChecksumsOthersRetroactively 299s --- PASS: TestSnapshotLoadedAfterChecksumsOthersRetroactively (0.01s) 299s PASS 299s ok github.com/theupdateframework/notary/tuf 0.163s 299s === RUN TestMergeStrSlicesExclusive 299s --- PASS: TestMergeStrSlicesExclusive (0.00s) 299s === RUN TestMergeStrSlicesOverlap 299s --- PASS: TestMergeStrSlicesOverlap (0.00s) 299s === RUN TestMergeStrSlicesEqual 299s --- PASS: TestMergeStrSlicesEqual (0.00s) 299s === RUN TestSubtractStrSlicesExclusive 299s --- PASS: TestSubtractStrSlicesExclusive (0.00s) 299s === RUN TestSubtractStrSlicesOverlap 299s --- PASS: TestSubtractStrSlicesOverlap (0.00s) 299s === RUN TestSubtractStrSlicesEqual 299s --- PASS: TestSubtractStrSlicesEqual (0.00s) 299s === RUN TestAddRemoveKeys 299s --- PASS: TestAddRemoveKeys (0.00s) 299s === RUN TestAddRemovePaths 299s --- PASS: TestAddRemovePaths (0.00s) 299s === RUN TestAddPathNil 299s --- PASS: TestAddPathNil (0.00s) 299s === RUN TestErrNoSuchRole 299s --- PASS: TestErrNoSuchRole (0.00s) 299s === RUN TestErrInvalidRole 299s --- PASS: TestErrInvalidRole (0.00s) 299s === RUN TestIsDelegation 299s --- PASS: TestIsDelegation (0.00s) 299s === RUN TestIsWildDelegation 299s --- PASS: TestIsWildDelegation (0.00s) 299s === RUN TestValidRoleFunction 299s --- PASS: TestValidRoleFunction (0.00s) 299s === RUN TestIsBaseRole 299s --- PASS: TestIsBaseRole (0.00s) 299s === RUN TestBaseRoleEquals 299s --- PASS: TestBaseRoleEquals (0.00s) 299s === RUN TestRootToSignedMarshalsSignedPortionWithCanonicalJSON 299s --- PASS: TestRootToSignedMarshalsSignedPortionWithCanonicalJSON (0.00s) 299s === RUN TestRootToSignCopiesSignatures 299s --- PASS: TestRootToSignCopiesSignatures (0.00s) 299s === RUN TestRootToSignedMarshallingErrorsPropagated 299s --- PASS: TestRootToSignedMarshallingErrorsPropagated (0.00s) 299s === RUN TestRootMarshalJSONMarshalsSignedWithRegularJSON 299s --- PASS: TestRootMarshalJSONMarshalsSignedWithRegularJSON (0.00s) 299s === RUN TestRootMarshalJSONMarshallingErrorsPropagated 299s --- PASS: TestRootMarshalJSONMarshallingErrorsPropagated (0.00s) 299s === RUN TestRootFromSignedUnmarshallingErrorsPropagated 299s --- PASS: TestRootFromSignedUnmarshallingErrorsPropagated (0.00s) 299s === RUN TestRootFromSignedCopiesSignatures 299s --- PASS: TestRootFromSignedCopiesSignatures (0.00s) 299s === RUN TestRootFromSignedValidatesRoleData 299s --- PASS: TestRootFromSignedValidatesRoleData (0.00s) 299s === RUN TestRootFromSignedValidatesRoleType 299s --- PASS: TestRootFromSignedValidatesRoleType (0.00s) 299s === RUN TestRootFromSignedValidatesVersion 299s --- PASS: TestRootFromSignedValidatesVersion (0.00s) 299s === RUN TestSnapshotToSignedMarshalsSignedPortionWithCanonicalJSON 299s --- PASS: TestSnapshotToSignedMarshalsSignedPortionWithCanonicalJSON (0.00s) 299s === RUN TestSnapshotToSignCopiesSignatures 299s --- PASS: TestSnapshotToSignCopiesSignatures (0.00s) 299s === RUN TestSnapshotToSignedMarshallingErrorsPropagated 299s --- PASS: TestSnapshotToSignedMarshallingErrorsPropagated (0.00s) 299s === RUN TestSnapshotMarshalJSONMarshalsSignedWithRegularJSON 299s --- PASS: TestSnapshotMarshalJSONMarshalsSignedWithRegularJSON (0.00s) 299s === RUN TestSnapshotMarshalJSONMarshallingErrorsPropagated 299s --- PASS: TestSnapshotMarshalJSONMarshallingErrorsPropagated (0.00s) 299s === RUN TestSnapshotFromSignedUnmarshallingErrorsPropagated 299s --- PASS: TestSnapshotFromSignedUnmarshallingErrorsPropagated (0.00s) 299s === RUN TestSnapshotFromSignedCopiesSignatures 299s --- PASS: TestSnapshotFromSignedCopiesSignatures (0.00s) 299s === RUN TestSnapshotFromSignedValidatesMeta 299s --- PASS: TestSnapshotFromSignedValidatesMeta (0.00s) 299s === RUN TestSnapshotFromSignedValidatesRoleType 299s --- PASS: TestSnapshotFromSignedValidatesRoleType (0.00s) 299s === RUN TestSnapshotFromSignedValidatesVersion 299s --- PASS: TestSnapshotFromSignedValidatesVersion (0.00s) 299s === RUN TestSnapshotGetMeta 299s --- PASS: TestSnapshotGetMeta (0.00s) 299s === RUN TestTargetsToSignedMarshalsSignedPortionWithCanonicalJSON 299s --- PASS: TestTargetsToSignedMarshalsSignedPortionWithCanonicalJSON (0.00s) 299s === RUN TestTargetsToSignCopiesSignatures 299s --- PASS: TestTargetsToSignCopiesSignatures (0.00s) 299s === RUN TestTargetsToSignedMarshallingErrorsPropagated 299s --- PASS: TestTargetsToSignedMarshallingErrorsPropagated (0.00s) 299s === RUN TestTargetsMarshalJSONMarshalsSignedWithRegularJSON 299s --- PASS: TestTargetsMarshalJSONMarshalsSignedWithRegularJSON (0.00s) 299s === RUN TestTargetsMarshalJSONMarshallingErrorsPropagated 299s --- PASS: TestTargetsMarshalJSONMarshallingErrorsPropagated (0.00s) 299s === RUN TestTargetsFromSignedUnmarshallingErrorsPropagated 299s --- PASS: TestTargetsFromSignedUnmarshallingErrorsPropagated (0.00s) 299s === RUN TestTargetsFromSignedCopiesSignatures 299s --- PASS: TestTargetsFromSignedCopiesSignatures (0.00s) 299s === RUN TestTargetsFromSignedValidatesDelegations 299s --- PASS: TestTargetsFromSignedValidatesDelegations (0.00s) 299s === RUN TestTargetsFromSignedValidatesRoleType 299s --- PASS: TestTargetsFromSignedValidatesRoleType (0.00s) 299s === RUN TestTargetsFromSignedValidatesRoleName 299s --- PASS: TestTargetsFromSignedValidatesRoleName (0.00s) 299s === RUN TestTargetsFromSignedValidatesVersion 299s --- PASS: TestTargetsFromSignedValidatesVersion (0.00s) 299s === RUN TestTimestampToSignedMarshalsSignedPortionWithCanonicalJSON 299s --- PASS: TestTimestampToSignedMarshalsSignedPortionWithCanonicalJSON (0.00s) 299s === RUN TestTimestampToSignCopiesSignatures 299s --- PASS: TestTimestampToSignCopiesSignatures (0.00s) 299s === RUN TestTimestampToSignedMarshallingErrorsPropagated 299s --- PASS: TestTimestampToSignedMarshallingErrorsPropagated (0.00s) 299s === RUN TestTimestampMarshalJSONMarshalsSignedWithRegularJSON 299s --- PASS: TestTimestampMarshalJSONMarshalsSignedWithRegularJSON (0.00s) 299s === RUN TestTimestampMarshalJSONMarshallingErrorsPropagated 299s --- PASS: TestTimestampMarshalJSONMarshallingErrorsPropagated (0.00s) 299s === RUN TestTimestampFromSignedUnmarshallingErrorsPropagated 299s --- PASS: TestTimestampFromSignedUnmarshallingErrorsPropagated (0.00s) 299s === RUN TestTimestampFromSignedCopiesSignatures 299s --- PASS: TestTimestampFromSignedCopiesSignatures (0.00s) 299s === RUN TestTimestampFromSignedValidatesMeta 299s --- PASS: TestTimestampFromSignedValidatesMeta (0.00s) 299s === RUN TestTimestampFromSignedValidatesRoleType 299s --- PASS: TestTimestampFromSignedValidatesRoleType (0.00s) 299s === RUN TestTimestampFromSignedValidatesVersion 299s --- PASS: TestTimestampFromSignedValidatesVersion (0.00s) 299s === RUN TestTimestampGetSnapshot 299s --- PASS: TestTimestampGetSnapshot (0.00s) 299s === RUN TestGenerateFileMetaDefault 299s --- PASS: TestGenerateFileMetaDefault (0.00s) 299s === RUN TestGenerateFileMetaExplicit 299s --- PASS: TestGenerateFileMetaExplicit (0.00s) 299s === RUN TestSignatureUnmarshalJSON 299s --- PASS: TestSignatureUnmarshalJSON (0.00s) 299s === RUN TestCheckHashes 299s --- PASS: TestCheckHashes (0.00s) 299s === RUN TestCheckValidHashStructures 299s --- PASS: TestCheckValidHashStructures (0.00s) 299s === RUN TestCompareMultiHashes 299s --- PASS: TestCompareMultiHashes (0.00s) 299s === RUN TestFileMetaEquals 299s --- PASS: TestFileMetaEquals (0.00s) 299s PASS 299s ok github.com/theupdateframework/notary/tuf/data 0.015s 299s === RUN TestListKeys 299s --- PASS: TestListKeys (0.00s) 299s === RUN TestGetKeys 299s --- PASS: TestGetKeys (0.00s) 299s === RUN TestBasicSign 299s --- PASS: TestBasicSign (0.00s) 299s === RUN TestReSign 299s --- PASS: TestReSign (0.00s) 299s === RUN TestMultiSign 299s --- PASS: TestMultiSign (0.00s) 299s === RUN TestSignReturnsNoSigs 299s --- PASS: TestSignReturnsNoSigs (0.00s) 299s === RUN TestSignWithX509 299s --- PASS: TestSignWithX509 (0.00s) 299s === RUN TestSignRemovesValidSigByInvalidKey 299s --- PASS: TestSignRemovesValidSigByInvalidKey (0.00s) 299s === RUN TestSignRemovesInvalidSig 299s --- PASS: TestSignRemovesInvalidSig (0.00s) 299s === RUN TestSignMinSignatures 299s --- PASS: TestSignMinSignatures (0.00s) 299s === RUN TestSignFailingKeys 299s --- PASS: TestSignFailingKeys (0.00s) 299s === RUN TestErrInsufficientSignaturesMessaging 299s --- PASS: TestErrInsufficientSignaturesMessaging (0.00s) 299s === RUN TestRSAPSSVerifier 299s --- PASS: TestRSAPSSVerifier (0.00s) 299s === RUN TestRSAPSSx509Verifier 299s --- PASS: TestRSAPSSx509Verifier (0.00s) 299s === RUN TestRSAPSSVerifierWithInvalidKeyType 299s --- PASS: TestRSAPSSVerifierWithInvalidKeyType (0.00s) 299s === RUN TestRSAPSSVerifierWithInvalidKeyLength 299s --- PASS: TestRSAPSSVerifierWithInvalidKeyLength (0.03s) 299s === RUN TestRSAPSSVerifierWithInvalidKey 299s --- PASS: TestRSAPSSVerifierWithInvalidKey (0.00s) 299s === RUN TestRSAPSSVerifierWithInvalidSignature 299s --- PASS: TestRSAPSSVerifierWithInvalidSignature (0.00s) 299s === RUN TestRSAPKCS1v15Verifier 299s --- PASS: TestRSAPKCS1v15Verifier (0.00s) 299s === RUN TestRSAPKCS1v15x509Verifier 299s --- PASS: TestRSAPKCS1v15x509Verifier (0.00s) 299s === RUN TestRSAPKCS1v15VerifierWithInvalidKeyType 299s --- PASS: TestRSAPKCS1v15VerifierWithInvalidKeyType (0.00s) 299s === RUN TestRSAPKCS1v15VerifierWithInvalidKey 299s --- PASS: TestRSAPKCS1v15VerifierWithInvalidKey (0.00s) 299s === RUN TestRSAPKCS1v15VerifierWithInvalidSignature 299s time="2025-02-16T02:56:29Z" level=error msg="Failed verification: crypto/rsa: verification error" 299s --- PASS: TestRSAPKCS1v15VerifierWithInvalidSignature (0.00s) 299s === RUN TestECDSAVerifier 299s --- PASS: TestECDSAVerifier (0.00s) 299s === RUN TestECDSAVerifierOtherCurves 299s --- PASS: TestECDSAVerifierOtherCurves (0.02s) 299s === RUN TestECDSAx509Verifier 299s --- PASS: TestECDSAx509Verifier (0.00s) 299s === RUN TestECDSAVerifierWithInvalidKeyType 299s --- PASS: TestECDSAVerifierWithInvalidKeyType (0.00s) 299s === RUN TestECDSAVerifierWithInvalidKey 299s --- PASS: TestECDSAVerifierWithInvalidKey (0.00s) 299s === RUN TestECDSAVerifierWithInvalidSignature 299s --- PASS: TestECDSAVerifierWithInvalidSignature (0.00s) 299s === RUN TestED25519VerifierInvalidKeyType 299s --- PASS: TestED25519VerifierInvalidKeyType (0.00s) 299s === RUN TestRSAPyCryptoVerifierInvalidKeyType 299s --- PASS: TestRSAPyCryptoVerifierInvalidKeyType (0.00s) 299s === RUN TestPyCryptoRSAPSSCompat 299s --- PASS: TestPyCryptoRSAPSSCompat (0.00s) 299s === RUN TestPyNaCled25519Compat 299s --- PASS: TestPyNaCled25519Compat (0.00s) 299s === RUN TestRoleNoKeys 299s --- PASS: TestRoleNoKeys (0.00s) 299s === RUN TestNotEnoughSigs 299s --- PASS: TestNotEnoughSigs (0.00s) 299s === RUN TestNoSigs 299s --- PASS: TestNoSigs (0.00s) 299s === RUN TestExactlyEnoughSigs 299s --- PASS: TestExactlyEnoughSigs (0.00s) 299s === RUN TestIsValidNotExported 299s --- PASS: TestIsValidNotExported (0.00s) 299s === RUN TestMoreThanEnoughSigs 299s --- PASS: TestMoreThanEnoughSigs (0.00s) 299s === RUN TestValidSigWithIncorrectKeyID 299s --- PASS: TestValidSigWithIncorrectKeyID (0.00s) 299s === RUN TestDuplicateSigs 299s --- PASS: TestDuplicateSigs (0.00s) 299s === RUN TestUnknownKeyBelowThreshold 299s --- PASS: TestUnknownKeyBelowThreshold (0.00s) 299s === RUN TestVerifyVersion 299s --- PASS: TestVerifyVersion (0.00s) 299s === RUN TestVerifyExpiry 299s time="2025-02-16T02:56:29Z" level=error msg="Metadata for root expired" 299s --- PASS: TestVerifyExpiry (0.00s) 299s === RUN TestVerifyPublicKeyMatchesPrivateKeyHappyCase 299s --- PASS: TestVerifyPublicKeyMatchesPrivateKeyHappyCase (0.00s) 299s === RUN TestVerifyPublicKeyMatchesPrivateKeyFails 299s --- PASS: TestVerifyPublicKeyMatchesPrivateKeyFails (0.00s) 299s PASS 299s ok github.com/theupdateframework/notary/tuf/signed 0.080s 300s ? github.com/theupdateframework/notary/tuf/testutils/interfaces [no test files] 300s ? github.com/theupdateframework/notary/tuf/testutils/keys [no test files] 300s === RUN TestNewSwizzler 300s --- PASS: TestNewSwizzler (0.00s) 300s === RUN TestSwizzlerSetInvalidJSON 300s --- PASS: TestSwizzlerSetInvalidJSON (0.00s) 300s === RUN TestSwizzlerAddExtraSpace 300s --- PASS: TestSwizzlerAddExtraSpace (0.00s) 300s === RUN TestSwizzlerSetInvalidSigned 300s --- PASS: TestSwizzlerSetInvalidSigned (0.00s) 300s === RUN TestSwizzlerSetInvalidSignedMeta 300s --- PASS: TestSwizzlerSetInvalidSignedMeta (0.00s) 300s === RUN TestSwizzlerSetInvalidMetadataType 300s --- PASS: TestSwizzlerSetInvalidMetadataType (0.00s) 300s === RUN TestSwizzlerInvalidateMetadataSignatures 300s --- PASS: TestSwizzlerInvalidateMetadataSignatures (0.00s) 300s === RUN TestSwizzlerRemoveMetadata 300s --- PASS: TestSwizzlerRemoveMetadata (0.00s) 300s === RUN TestSwizzlerSignMetadataWithInvalidKey 300s --- PASS: TestSwizzlerSignMetadataWithInvalidKey (0.00s) 300s === RUN TestSwizzlerOffsetMetadataVersion 300s --- PASS: TestSwizzlerOffsetMetadataVersion (0.00s) 300s === RUN TestSwizzlerExpireMetadata 300s --- PASS: TestSwizzlerExpireMetadata (0.00s) 300s === RUN TestSwizzlerSetThresholdBaseRole 300s --- PASS: TestSwizzlerSetThresholdBaseRole (0.00s) 300s === RUN TestSwizzlerSetThresholdDelegatedRole 300s --- PASS: TestSwizzlerSetThresholdDelegatedRole (0.00s) 300s === RUN TestSwizzlerChangeRootKey 300s --- PASS: TestSwizzlerChangeRootKey (0.00s) 300s === RUN TestSwizzlerUpdateSnapshotHashesSpecifiedRoles 300s --- PASS: TestSwizzlerUpdateSnapshotHashesSpecifiedRoles (0.00s) 300s === RUN TestSwizzlerUpdateSnapshotHashesNoSpecifiedRoles 300s --- PASS: TestSwizzlerUpdateSnapshotHashesNoSpecifiedRoles (0.00s) 300s === RUN TestSwizzlerUpdateTimestamp 300s --- PASS: TestSwizzlerUpdateTimestamp (0.00s) 300s === RUN TestMissingSigningKey 300s --- PASS: TestMissingSigningKey (0.00s) 300s === RUN TestSwizzlerMutateRoot 300s --- PASS: TestSwizzlerMutateRoot (0.00s) 300s === RUN TestSwizzlerMutateTimestamp 300s --- PASS: TestSwizzlerMutateTimestamp (0.00s) 300s === RUN TestSwizzlerMutateSnapshot 300s --- PASS: TestSwizzlerMutateSnapshot (0.00s) 300s === RUN TestSwizzlerMutateTargets 300s --- PASS: TestSwizzlerMutateTargets (0.00s) 300s === RUN TestSwizzlerRotateKeyBaseRole 300s --- PASS: TestSwizzlerRotateKeyBaseRole (0.01s) 300s === RUN TestSwizzlerRotateKeyDelegationRole 300s --- PASS: TestSwizzlerRotateKeyDelegationRole (0.00s) 300s PASS 300s ok github.com/theupdateframework/notary/tuf/testutils 0.066s 301s === RUN TestConvertTUFKeyToPKCS8 301s --- PASS: TestConvertTUFKeyToPKCS8 (0.02s) 301s === RUN TestParsePKCS8ToTufKey 301s --- PASS: TestParsePKCS8ToTufKey (0.05s) 301s === RUN TestPEMtoPEM 301s --- PASS: TestPEMtoPEM (0.00s) 301s === RUN TestRoleListLen 301s --- PASS: TestRoleListLen (0.00s) 301s === RUN TestRoleListLess 301s --- PASS: TestRoleListLess (0.00s) 301s === RUN TestRoleListSwap 301s --- PASS: TestRoleListSwap (0.00s) 301s === RUN TestRoleListSort 301s --- PASS: TestRoleListSort (0.00s) 301s === RUN TestCreateStack 301s --- PASS: TestCreateStack (0.00s) 301s === RUN TestPush 301s --- PASS: TestPush (0.00s) 301s === RUN TestPop 301s --- PASS: TestPop (0.00s) 301s === RUN TestPopEmpty 301s --- PASS: TestPopEmpty (0.00s) 301s === RUN TestPopString 301s --- PASS: TestPopString (0.00s) 301s === RUN TestPopStringWrongType 301s --- PASS: TestPopStringWrongType (0.00s) 301s === RUN TestPopStringEmpty 301s --- PASS: TestPopStringEmpty (0.00s) 301s === RUN TestEmpty 301s --- PASS: TestEmpty (0.00s) 301s === RUN TestUnusedDelegationKeys 301s --- PASS: TestUnusedDelegationKeys (0.00s) 301s === RUN TestRemoveUnusedKeys 301s --- PASS: TestRemoveUnusedKeys (0.00s) 301s === RUN TestFindRoleIndexFound 301s --- PASS: TestFindRoleIndexFound (0.00s) 301s === RUN TestFindRoleIndexNotFound 301s --- PASS: TestFindRoleIndexNotFound (0.00s) 301s === RUN TestStrSliceContains 301s --- PASS: TestStrSliceContains (0.00s) 301s === RUN TestRoleNameSliceContains 301s --- PASS: TestRoleNameSliceContains (0.00s) 301s === RUN TestRoleNameSliceRemove 301s --- PASS: TestRoleNameSliceRemove (0.00s) 301s === RUN TestCertsToKeys 301s --- PASS: TestCertsToKeys (0.00s) 301s === RUN TestNewCertificate 301s --- PASS: TestNewCertificate (0.00s) 301s === RUN TestKeyOperations 301s --- PASS: TestKeyOperations (0.02s) 301s === RUN TestRSAX509PublickeyID 301s --- PASS: TestRSAX509PublickeyID (0.00s) 301s === RUN TestECDSAX509PublickeyID 301s --- PASS: TestECDSAX509PublickeyID (0.00s) 301s === RUN TestExtractPrivateKeyAttributes 301s --- PASS: TestExtractPrivateKeyAttributes (0.00s) 301s === RUN TestParsePEMPrivateKeyLegacy 301s --- PASS: TestParsePEMPrivateKeyLegacy (0.00s) 301s === RUN TestValidateCertificateWithSHA1 301s --- PASS: TestValidateCertificateWithSHA1 (0.00s) 301s === RUN TestValidateCertificateWithExpiredCert 301s --- PASS: TestValidateCertificateWithExpiredCert (0.00s) 301s === RUN TestValidateCertificateWithInvalidExpiry 301s --- PASS: TestValidateCertificateWithInvalidExpiry (0.00s) 301s === RUN TestValidateCertificateWithShortKey 301s --- PASS: TestValidateCertificateWithShortKey (0.04s) 301s PASS 301s ok github.com/theupdateframework/notary/tuf/utils 0.137s 301s === RUN TestNewSerializableErrorNonValidationError 301s --- PASS: TestNewSerializableErrorNonValidationError (0.00s) 301s === RUN TestNewSerializableErrorValidationError 301s --- PASS: TestNewSerializableErrorValidationError (0.00s) 301s === RUN TestUnmarshalSerialiableErrorSuccessfully 301s --- PASS: TestUnmarshalSerialiableErrorSuccessfully (0.00s) 301s === RUN TestUnmarshalUnknownErrorName 301s --- PASS: TestUnmarshalUnknownErrorName (0.00s) 301s === RUN TestUnmarshalInvalidError 301s --- PASS: TestUnmarshalInvalidError (0.00s) 301s === RUN TestUnmarshalNoName 301s --- PASS: TestUnmarshalNoName (0.00s) 301s === RUN TestUnmarshalInvalidJSON 301s --- PASS: TestUnmarshalInvalidJSON (0.00s) 301s PASS 301s ok github.com/theupdateframework/notary/tuf/validation 0.003s 301s ? github.com/theupdateframework/notary/version [no test files] 301s === RUN TestSetSignalTrap 301s --- PASS: TestSetSignalTrap (0.00s) 301s === RUN TestLogLevelSignalHandle 301s Attempt to increase log level failed, will remain at debug level, error: log level can not be set higher than Debug 301s Successfully setting log level to debug 301s Successfully setting log level to info 301s Successfully setting log level to warning 301s Successfully setting log level to error 301s Successfully setting log level to fatal 301s Successfully setting log level to info 301s Successfully setting log level to warning 301s Successfully setting log level to error 301s Successfully setting log level to fatal 301s Successfully setting log level to panic 301s Attempt to decrease log level failed, will remain at panic level, error: log level can not be set lower than Panic 301s --- PASS: TestLogLevelSignalHandle (0.00s) 301s === RUN TestParseInvalidLogLevel 301s --- PASS: TestParseInvalidLogLevel (0.00s) 301s === RUN TestParseNoLogLevel 301s --- PASS: TestParseNoLogLevel (0.00s) 301s === RUN TestParseLogLevel 301s --- PASS: TestParseLogLevel (0.00s) 301s === RUN TestParseLogLevelWithEnvironmentVariables 301s --- PASS: TestParseLogLevelWithEnvironmentVariables (0.00s) 301s === RUN TestParseInvalidBugsnag 301s --- PASS: TestParseInvalidBugsnag (0.00s) 301s === RUN TestParseNoBugsnag 301s --- PASS: TestParseNoBugsnag (0.00s) 301s === RUN TestParseBugsnag 301s --- PASS: TestParseBugsnag (0.00s) 301s === RUN TestParseBugsnagWithEnvironmentVariables 301s --- PASS: TestParseBugsnagWithEnvironmentVariables (0.00s) 301s === RUN TestParseInvalidStorageBackend 301s --- PASS: TestParseInvalidStorageBackend (0.00s) 301s === RUN TestParseInvalidSQLStorageNoDBSource 301s --- PASS: TestParseInvalidSQLStorageNoDBSource (0.00s) 301s === RUN TestParseInvalidDBSourceInSQLStorage 301s --- PASS: TestParseInvalidDBSourceInSQLStorage (0.00s) 301s === RUN TestParseSQLStorageDBStore 301s --- PASS: TestParseSQLStorageDBStore (0.00s) 301s === RUN TestParseRethinkStorageDBStoreInvalidBackend 301s --- PASS: TestParseRethinkStorageDBStoreInvalidBackend (0.00s) 301s === RUN TestParseRethinkStorageDBStoreEmptyDBUrl 301s --- PASS: TestParseRethinkStorageDBStoreEmptyDBUrl (0.00s) 301s === RUN TestParseRethinkStorageDBStoreEmptyDBName 301s --- PASS: TestParseRethinkStorageDBStoreEmptyDBName (0.00s) 301s === RUN TestParseRethinkStorageDBStoreEmptyCA 301s --- PASS: TestParseRethinkStorageDBStoreEmptyCA (0.00s) 301s === RUN TestParseRethinkStorageDBStoreEmptyCertAndKey 301s --- PASS: TestParseRethinkStorageDBStoreEmptyCertAndKey (0.00s) 301s === RUN TestParseRethinkStorageDBStoreEmptyUsername 301s --- PASS: TestParseRethinkStorageDBStoreEmptyUsername (0.00s) 301s === RUN TestParseSQLStorageWithEnvironmentVariables 301s --- PASS: TestParseSQLStorageWithEnvironmentVariables (0.00s) 301s === RUN TestParseTLSNoTLSWhenRequired 301s --- PASS: TestParseTLSNoTLSWhenRequired (0.00s) 301s === RUN TestParseTLSPartialTLS 301s --- PASS: TestParseTLSPartialTLS (0.00s) 301s === RUN TestParseTLSNoTLSNotRequired 301s --- PASS: TestParseTLSNoTLSNotRequired (0.00s) 301s === RUN TestParseTLSWithTLS 301s --- PASS: TestParseTLSWithTLS (0.00s) 301s === RUN TestParseTLSWithTLSRelativeToConfigFile 301s --- PASS: TestParseTLSWithTLSRelativeToConfigFile (0.00s) 301s === RUN TestParseTLSWithEnvironmentVariables 301s --- PASS: TestParseTLSWithEnvironmentVariables (0.00s) 301s === RUN TestParseViperWithInvalidFile 301s --- PASS: TestParseViperWithInvalidFile (0.00s) 301s === RUN TestParseViperWithValidFile 301s --- PASS: TestParseViperWithValidFile (0.00s) 301s === RUN TestAdjustLogLevel 301s --- PASS: TestAdjustLogLevel (0.00s) 301s === RUN TestRootHandlerFactory 301s --- PASS: TestRootHandlerFactory (0.00s) 301s === RUN TestRootHandlerError 301s --- PASS: TestRootHandlerError (0.00s) 301s === RUN TestWrapWithCacheHeaderNilCacheControlConfig 301s --- PASS: TestWrapWithCacheHeaderNilCacheControlConfig (0.00s) 301s === RUN TestWrapWithCacheHeaderNon200Response 301s --- PASS: TestWrapWithCacheHeaderNon200Response (0.00s) 301s === RUN TestWrapWithCacheHeaderPublicCacheControlNoCacheHeaders 301s --- PASS: TestWrapWithCacheHeaderPublicCacheControlNoCacheHeaders (0.00s) 301s === RUN TestWrapWithCacheHeaderPublicCacheControlLastModifiedHeader 301s --- PASS: TestWrapWithCacheHeaderPublicCacheControlLastModifiedHeader (0.00s) 301s === RUN TestWrapWithCacheHeaderPublicCacheControlCacheControlHeader 301s --- PASS: TestWrapWithCacheHeaderPublicCacheControlCacheControlHeader (0.00s) 301s === RUN TestWrapWithCacheHeaderNoCacheControlNoCacheHeaders 301s --- PASS: TestWrapWithCacheHeaderNoCacheControlNoCacheHeaders (0.00s) 301s === RUN TestWrapWithCacheHeaderNoCacheControlLastModifiedHeader 301s --- PASS: TestWrapWithCacheHeaderNoCacheControlLastModifiedHeader (0.00s) 301s === RUN TestWrapWithCacheHeaderNoCacheControlCacheControlHeader 301s --- PASS: TestWrapWithCacheHeaderNoCacheControlCacheControlHeader (0.00s) 301s === RUN TestBuildCatalogRecord 301s --- PASS: TestBuildCatalogRecord (0.00s) 301s === RUN TestDoAuthNonWildcardImage 301s --- PASS: TestDoAuthNonWildcardImage (0.00s) 301s === RUN TestDoAuthWildcardImage 301s --- PASS: TestDoAuthWildcardImage (0.00s) 301s PASS 301s ok github.com/theupdateframework/notary/utils 0.008s 301s create-stamp debian/debhelper-build-stamp 301s /tmp/autopkgtest.M2Z2np/wrapper.sh: checking for leaked background processes... 301s /tmp/autopkgtest.M2Z2np/wrapper.sh: waiting for tee/cat subprocesses... 301s /tmp/autopkgtest.M2Z2np/wrapper.sh: cleaning up... 301s /tmp/autopkgtest.M2Z2np/wrapper.sh: Exit status: 0 301s autopkgtest: DBG: testbed command exited with code 0 302s autopkgtest [02:56:32]: test dh-golang-autopkgtest: -----------------------] 302s autopkgtest: DBG: testbed executing test finished with exit status 0 302s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stdout /tmp/autopkgtest-work.5t3svkb1/out/dh-golang-autopkgtest-stdout 302s autopkgtest: DBG: got reply from testbed: ok 302s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-stderr /tmp/autopkgtest-work.5t3svkb1/out/dh-golang-autopkgtest-stderr 303s autopkgtest: DBG: got reply from testbed: ok 303s autopkgtest [02:56:33]: test dh-golang-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 303s dh-golang-autopkgtest PASS 303s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-artifacts/ /tmp/autopkgtest-work.5t3svkb1/out/artifacts/ 303s autopkgtest: DBG: got reply from testbed: ok 303s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.M2Z2np/dh-golang-autopkgtest-artifacts', '/tmp/autopkgtest.M2Z2np/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 304s autopkgtest: DBG: testbed command exited with code 0 304s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 304s autopkgtest [02:56:34]: @@@@@@@@@@@@@@@@@@@@ summary 304s dh-golang-autopkgtest PASS 304s autopkgtest: DBG: testbed stop 304s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.M2Z2np 304s autopkgtest: DBG: sending command to testbed: close 321s autopkgtest: DBG: got reply from testbed: ok 321s autopkgtest: DBG: sending command to testbed: quit 321s nova [W] Using flock in prodstack6-s390x 321s Creating nova instance adt-plucky-s390x-notary-20250216-025130-juju-7f2275-prod-proposed-migration-environment-15-a74ad006-5b9f-450e-8b49-1c6a1d390023 from image adt/ubuntu-plucky-s390x-server-20250216.img (UUID 67327349-c50d-4fb2-aab8-abef6582e685)... 321s nova [W] Timed out waiting for bfeb4c50-7a39-463b-bc9c-9076d14f2253 to get deleted.