0s autopkgtest: DBG: testbed init 0s autopkgtest [04:42:34]: starting date and time: 2025-02-19 04:42:34+0000 0s autopkgtest [04:42:34]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:42:34]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.9hvndo55/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:flycheck --apt-upgrade flycheck --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=flycheck/34.1-2 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-28.secgroup --name adt-plucky-s390x-flycheck-20250219-044234-juju-7f2275-prod-proposed-migration-environment-15-4e6f54d8-af1d-4f53-a904-395d2574f087 --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.MfZFqe 97s autopkgtest: DBG: sending command to testbed: print-execute-command 97s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.iq2yabz3/runcmd 97s autopkgtest: DBG: sending command to testbed: capabilities 97s autopkgtest: DBG: got reply from testbed: ok isolation-machine reboot revert-full-system suggested-normal-user=ubuntu revert root-on-testbed 97s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'reboot', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'root-on-testbed', 'has_internet'] 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.MfZFqe'], 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.MfZFqe/wrapper.sh 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.MfZFqe/wrapper.sh'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest [04:44:11]: testbed dpkg architecture: s390x 97s 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 [04:44:12]: testbed apt version: 2.9.29 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 [04:44:12]: @@@@@@@@@@@@@@@@@@@@ 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 [04:44:12]: 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 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 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 [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: adding APT source: Types: deb deb-src 98s URIs: http://ftpmaster.internal/ubuntu/ 98s Suites: plucky-proposed 98s Components: main restricted universe multiverse 98s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 98s 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 [04:44:13]: 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] 99s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 99s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 99s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 99s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 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 [770 kB] 100s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 100s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 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 [648 kB] 100s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 100s Fetched 1723 kB in 1s (1484 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:flycheck: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:flycheck: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.MfZFqe/${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'] 101s + lsb_release --codename --short 101s + RELEASE=plucky 101s + cat 101s + [ plucky != trusty ] 101s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 102s Calculating upgrade... 102s The following packages were automatically installed and are no longer required: 102s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 102s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 102s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 102s linux-tools-6.11.0-8-generic 102s Use 'sudo apt autoremove' to remove them. 102s The following NEW packages will be installed: 102s libapt-pkg7.0 102s The following packages will be upgraded: 102s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 102s s390-tools-signed 102s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 102s Need to get 8909 kB of archives. 102s After this operation, 3624 kB of additional disk space will be used. 102s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 102s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 103s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 103s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 103s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 103s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 103s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 104s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 104s Fetched 8909 kB in 2s (4770 kB/s) 104s Selecting previously unselected package libapt-pkg7.0:s390x. 104s (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 ... 80980 files and directories currently installed.) 104s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 104s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 104s Setting up libapt-pkg7.0:s390x (2.9.30) ... 104s (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 ... 81029 files and directories currently installed.) 104s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 104s Unpacking apt (2.9.30) over (2.9.29) ... 104s Setting up apt (2.9.30) ... 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 ... 81029 files and directories currently installed.) 105s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 105s Unpacking apt-utils (2.9.30) over (2.9.29) ... 105s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 105s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 105s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 105s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 105s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 105s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 105s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 105s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 105s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 105s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 105s Setting up apt-utils (2.9.30) ... 105s Setting up rsyslog (8.2412.0-2ubuntu1) ... 105s info: The user `syslog' is already a member of `adm'. 106s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 106s Setting up dhcpcd-base (1:10.1.0-7) ... 106s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 106s Setting up s390-tools (2.37.0-0ubuntu2) ... 106s Processing triggers for libc-bin (2.40-4ubuntu1) ... 106s Processing triggers for man-db (2.13.0-1) ... 108s Processing triggers for initramfs-tools (0.145ubuntu2) ... 108s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 108s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 111s Using config file '/etc/zipl.conf' 111s Building bootmap in '/boot' 111s Adding IPL section 'ubuntu' (default) 112s Preparing boot device for LD-IPL: vda (0000). 112s Done. 112s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 112s + /usr/lib/apt/apt-helper analyze-pattern ?true 112s + uname -r 112s + sed s/\./\\./g 112s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 112s + + tail -n+2 112s apt list ?obsolete 112s + cut -d/ -f1 112s + grep -v ^linux-.*6\.12\.0-15-generic.* 112s + true 112s + obsolete_pkgs= 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 113s Reading package lists... 113s Building dependency tree... 113s Reading state information... 113s The following packages will be REMOVED: 113s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 113s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 113s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 113s linux-tools-6.11.0-8-generic* 113s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 113s After this operation, 167 MB disk space will be freed. 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 113s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 113s Removing libpython3.12t64:s390x (3.12.9-1) ... 113s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 113s Removing libnsl2:s390x (1.3.0-3build3) ... 113s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 113s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 113s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 114s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 114s Processing triggers for libc-bin (2.40-4ubuntu1) ... 114s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55930 files and directories currently installed.) 114s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 114s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 114s + grep -q trusty /etc/lsb-release 114s + [ ! -d /usr/share/doc/unattended-upgrades ] 114s + [ ! -d /usr/share/doc/lxd ] 114s + [ ! -d /usr/share/doc/lxd-client ] 114s + [ ! -d /usr/share/doc/snapd ] 114s + type iptables 114s + cat 114s + chmod 755 /etc/rc.local 114s + . /etc/rc.local 114s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 114s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 114s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 114s + uname -m 114s + [ s390x = ppc64le ] 114s + [ -d /run/systemd/system ] 114s + systemd-detect-virt --quiet --vm 114s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 114s + cat 114s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 114s + echo COMPRESS=lz4 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [04:44:28]: upgrading testbed (apt dist-upgrade and autopurge) 114s 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'] 114s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 115s Entering ResolveByKeep 115s 115s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 116s Starting pkgProblemResolver with broken count: 0 116s Starting 2 pkgProblemResolver with broken count: 0 116s Done 116s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s autopkgtest: DBG: testbed command exited with code 0 116s 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.MfZFqe/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 116s autopkgtest: DBG: testbed command exited with code 1 116s autopkgtest [04:44:30]: rebooting testbed after setup commands that affected boot 116s autopkgtest: DBG: sending command to testbed: reboot 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.MfZFqe'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.MfZFqe/autopkgtest-reboot 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.MfZFqe'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.MfZFqe/autopkgtest-reboot-prepare 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [04:44:47]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 133s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.MfZFqe/testbed-packages"], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.MfZFqe/testbed-packages /tmp/autopkgtest-work.9hvndo55/out/testbed-packages 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.MfZFqe'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.MfZFqe/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.MfZFqe'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.MfZFqe/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.MfZFqe/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: Binaries: initialising 135s autopkgtest [04:44:49]: @@@@@@@@@@@@@@@@@@@@ apt-source flycheck 135s autopkgtest: DBG: blame += flycheck 135s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 135s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'flycheck'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^flycheck-doc$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'flycheck-doc=34.1-2'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^elpa-flycheck$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'elpa-flycheck=34.1-2'], kind short, sout pipe, serr raw, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: install_deps: deps_new=[] 137s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s 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.MfZFqe/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source flycheck=34.1-2 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 flycheck_*.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=flycheck/34.1-2'] 137s + cd / 137s + mktemp -d /tmp/autopkgtest.MfZFqe/build.XXX 137s + builddir=/tmp/autopkgtest.MfZFqe/build.284 137s + cd /tmp/autopkgtest.MfZFqe/build.284 137s + apt-get source -d -q --only-source flycheck=34.1-2 138s + OUT=Reading package lists... 138s NOTICE: 'flycheck' packaging is maintained in the 'Git' version control system at: 138s https://salsa.debian.org/emacsen-team/flycheck.git 138s Please use: 138s git clone https://salsa.debian.org/emacsen-team/flycheck.git 138s to retrieve the latest (possibly unreleased) updates to the package. 138s Need to get 977 kB of source archives. 138s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (dsc) [2323 B] 138s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (tar) [960 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (diff) [15.0 kB] 138s Fetched 977 kB in 1s (978 kB/s) 138s Download complete and in download only mode 138s + [ -n ] 138s + echo Reading package lists... 138s NOTICE: 'flycheck' packaging is maintained in the 'Git' version control system at: 138s https://salsa.debian.org/emacsen-team/flycheck.git 138s Please use: 138s git clone https://salsa.debian.org/emacsen-team/flycheck.git 138s to retrieve the latest (possibly unreleased) updates to the package. 138s Need to get 977 kB of source archives. 138s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (dsc) [2323 B] 138s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (tar) [960 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (diff) [15.0 kB] 138s Fetched 977 kB in 1s (978 kB/s) 138s Download complete and in download only mode 138s + grep ^Get: 138s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (dsc) [2323 B] 138s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (tar) [960 kB] 138s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe flycheck 34.1-2 (diff) [15.0 kB] 138s + dpkg-source -x flycheck_34.1-2.dsc src 138s gpgv: Signature made Thu Jul 25 11:35:13 2024 UTC 138s gpgv: using RSA key 9B917007AE030E36E4FC248B695B7AE4BF066240 138s gpgv: Can't check signature: No public key 138s dpkg-source: warning: cannot verify inline signature for ./flycheck_34.1-2.dsc: no acceptable signature found 138s + chmod -R a+rX . 138s + cd src/. 138s + pwd 138s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest [04:44:52]: testing package flycheck version 34.1-2 138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.MfZFqe/build.284/src/debian/ /tmp/autopkgtest-work.9hvndo55/out/pkg/debian/ 138s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: autodep8 generated control: ----- 139s Test-Command: dh_elpa_test --autopkgtest 139s Depends: @, @builddeps@, 139s Restrictions: rw-build-tree, 139s Features: test-name=dh-elpa-test-autopkgtest 139s 139s ------- 139s autopkgtest: DBG: processing dependency @ 139s autopkgtest: DBG: synthesised dependency elpa-flycheck 139s autopkgtest: DBG: synthesised dependency flycheck-doc 139s autopkgtest: DBG: processing dependency @builddeps@ 139s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 139s autopkgtest: DBG: synthesised dependency dh-elpa (>= 1.7) 139s autopkgtest: DBG: synthesised dependency elpa-buttercup (>= 1.31~) 139s autopkgtest: DBG: synthesised dependency elpa-dash 139s autopkgtest: DBG: synthesised dependency elpa-f 139s autopkgtest: DBG: synthesised dependency elpa-let-alist 139s autopkgtest: DBG: synthesised dependency elpa-seq 139s autopkgtest: DBG: synthesised dependency elpa-shut-up 139s autopkgtest: DBG: synthesised dependency elpa-haskell-mode 139s autopkgtest: DBG: synthesised dependency git 139s autopkgtest: DBG: synthesised dependency python3-sphinx 139s autopkgtest: DBG: synthesised dependency python3-minimal 139s autopkgtest: DBG: synthesised dependency build-essential 139s autopkgtest: DBG: Test defined: name dh-elpa-test-autopkgtest path None command "dh_elpa_test --autopkgtest" restrictions ['rw-build-tree'] features ['test-name=dh-elpa-test-autopkgtest'] depends ['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'git', 'python3-sphinx', 'python3-minimal', 'build-essential'] 139s autopkgtest [04:44:53]: build not needed 139s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.MfZFqe/build.284/src/ /tmp/autopkgtest-work.9hvndo55/out/tests-tree/ 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: autodep8 generated control: ----- 139s Test-Command: dh_elpa_test --autopkgtest 139s Depends: @, @builddeps@, 139s Restrictions: rw-build-tree, 139s Features: test-name=dh-elpa-test-autopkgtest 139s 139s ------- 139s autopkgtest: DBG: processing dependency @ 139s autopkgtest: DBG: synthesised dependency elpa-flycheck 139s autopkgtest: DBG: synthesised dependency flycheck-doc 139s autopkgtest: DBG: processing dependency @builddeps@ 139s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 139s autopkgtest: DBG: synthesised dependency dh-elpa (>= 1.7) 139s autopkgtest: DBG: synthesised dependency elpa-buttercup (>= 1.31~) 139s autopkgtest: DBG: synthesised dependency elpa-dash 139s autopkgtest: DBG: synthesised dependency elpa-f 139s autopkgtest: DBG: synthesised dependency elpa-let-alist 139s autopkgtest: DBG: synthesised dependency elpa-seq 139s autopkgtest: DBG: synthesised dependency elpa-shut-up 139s autopkgtest: DBG: synthesised dependency elpa-haskell-mode 139s autopkgtest: DBG: synthesised dependency git 139s autopkgtest: DBG: synthesised dependency python3-sphinx 139s autopkgtest: DBG: synthesised dependency python3-minimal 139s autopkgtest: DBG: synthesised dependency build-essential 139s autopkgtest: DBG: Test defined: name dh-elpa-test-autopkgtest path None command "dh_elpa_test --autopkgtest" restrictions ['rw-build-tree'] features ['test-name=dh-elpa-test-autopkgtest'] depends ['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'git', 'python3-sphinx', 'python3-minimal', 'build-essential'] 139s autopkgtest [04:44:53]: test dh-elpa-test-autopkgtest: preparing testbed 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'git', 'python3-sphinx', 'python3-minimal', 'build-essential'] 139s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 139s autopkgtest: DBG: install_deps: deps_new=['elpa-flycheck', 'flycheck-doc', 'debhelper-compat (= 13)', 'dh-elpa (>= 1.7)', 'elpa-buttercup (>= 1.31~)', 'elpa-dash', 'elpa-f', 'elpa-let-alist', 'elpa-seq', 'elpa-shut-up', 'elpa-haskell-mode', 'git', 'python3-sphinx', 'python3-minimal', 'build-essential'] 139s autopkgtest: DBG: install-deps: satisfying elpa-flycheck, flycheck-doc, debhelper-compat (= 13), dh-elpa (>= 1.7), elpa-buttercup (>= 1.31~), elpa-dash, elpa-f, elpa-let-alist, elpa-seq, elpa-shut-up, elpa-haskell-mode, git, python3-sphinx, python3-minimal, build-essential 139s autopkgtest: DBG: can use apt-get on testbed: True 139s 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', 'elpa-flycheck, flycheck-doc, debhelper-compat (= 13), dh-elpa (>= 1.7), elpa-buttercup (>= 1.31~), elpa-dash, elpa-f, elpa-let-alist, elpa-seq, elpa-shut-up, elpa-haskell-mode, git, python3-sphinx, python3-minimal, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 139s Reading package lists... 139s Building dependency tree... 139s Reading state information... 140s Starting pkgProblemResolver with broken count: 0 140s Starting 2 pkgProblemResolver with broken count: 0 140s Done 140s The following NEW packages will be installed: 140s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 140s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 140s dh-elpa dh-elpa-helper dh-strip-nondeterminism docutils-common dwz 140s elpa-buttercup elpa-dash elpa-f elpa-flycheck elpa-haskell-mode 140s elpa-let-alist elpa-s elpa-seq elpa-shut-up emacs emacs-bin-common 140s emacs-common emacs-el emacs-nox emacsen-common flycheck-doc g++ g++-14 140s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 140s gcc-s390x-linux-gnu gettext git git-man intltool-debian libapt-pkg-perl 140s libarchive-zip-perl libarray-unique-perl libarray-utils-perl libasan8 140s libasound2-data libasound2t64 libcc1-0 libcgi-pm-perl libclass-accessor-perl 140s libclone-perl libconfig-tiny-perl libdebhelper-perl libdebian-source-perl 140s libencode-locale-perl liberror-perl libexporter-lite-perl 140s libexporter-tiny-perl libfile-find-rule-perl libfile-listing-perl 140s libfile-stripnondeterminism-perl libgcc-14-dev libgomp1 libhtml-form-perl 140s libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl 140s libhttp-cookies-perl libhttp-date-perl libhttp-message-perl 140s libhttp-negotiate-perl libio-html-perl libio-socket-ssl-perl 140s libio-stringy-perl libisl23 libitm1 libjs-jquery libjs-sphinxdoc 140s libjs-underscore libjson-perl liblcms2-2 liblist-moreutils-perl 140s liblist-moreutils-xs-perl liblwp-mediatypes-perl liblwp-protocol-https-perl 140s libmpc3 libnet-http-perl libnet-ssleay-perl libnumber-compare-perl 140s libparse-debcontrol-perl libstdc++-14-dev libsub-install-perl 140s libsub-name-perl libtext-glob-perl libtie-ixhash-perl libtimedate-perl 140s libtool libtree-sitter0 libtry-tiny-perl libubsan1 liburi-perl 140s libwww-mechanize-perl libwww-perl libwww-robotrules-perl m4 140s perl-openssl-defaults po-debconf python3-alabaster python3-defusedxml 140s python3-docutils python3-imagesize python3-packaging python3-roman 140s python3-snowballstemmer python3-sphinx sgml-base sphinx-common xml-core 140s 0 upgraded, 123 newly installed, 0 to remove and 0 not upgraded. 140s Need to get 104 MB of archives. 140s After this operation, 342 MB of additional disk space will be used. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 141s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 141s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 141s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 141s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 141s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 141s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 143s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 143s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 143s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 143s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 143s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 143s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 143s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 144s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 144s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 144s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 145s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 145s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 145s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 145s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 146s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 146s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 146s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 146s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 147s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 147s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 147s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 147s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 147s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 147s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 147s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 147s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 147s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 147s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 147s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 147s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 147s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 147s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg-perl s390x 0.1.40build8 [70.7 kB] 148s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libtie-ixhash-perl all 1.23-4 [11.3 kB] 148s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x libarray-unique-perl all 0.09-1 [12.2 kB] 148s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-name-perl s390x 0.28-1 [10.8 kB] 148s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x libclass-accessor-perl all 0.51-2 [21.4 kB] 148s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libexporter-tiny-perl all 1.006002-1 [36.8 kB] 148s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x liblist-moreutils-xs-perl s390x 0.430-4build1 [45.3 kB] 148s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x liblist-moreutils-perl all 0.430-2 [38.2 kB] 148s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libio-stringy-perl all 2.113-2 [45.3 kB] 148s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 148s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libtimedate-perl all 2.3300-2 [34.0 kB] 148s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-date-perl all 6.06-1 [10.2 kB] 149s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-listing-perl all 6.16-1 [11.3 kB] 149s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 149s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 149s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 149s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tree-perl all 5.07-3 [200 kB] 149s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 149s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libio-html-perl all 1.004-3 [15.9 kB] 149s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-mediatypes-perl all 6.04-2 [20.1 kB] 149s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-message-perl all 7.00-2ubuntu1 [75.9 kB] 149s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-cookies-perl all 6.11-1 [18.2 kB] 149s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-negotiate-perl all 6.01-2 [12.4 kB] 149s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 149s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 150s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libio-socket-ssl-perl all 2.089-1 [200 kB] 150s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-http-perl all 6.23-1 [22.3 kB] 150s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-protocol-https-perl all 6.14-1 [9040 B] 150s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 150s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-robotrules-perl all 6.02-1 [12.6 kB] 150s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-perl all 6.77-1 [138 kB] 150s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x liberror-perl all 0.17029-2 [25.6 kB] 150s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libexporter-lite-perl all 0.09-2 [9748 B] 150s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libparse-debcontrol-perl all 2.005-6 [20.4 kB] 150s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-install-perl all 0.929-1 [9764 B] 150s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libcgi-pm-perl all 4.67-1 [185 kB] 150s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-form-perl all 6.12-1 [31.1 kB] 150s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-mechanize-perl all 2.18-1ubuntu1 [93.1 kB] 150s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libdebian-source-perl all 0.126 [53.5 kB] 151s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-el all 1:29.4+1-5ubuntu1 [18.7 MB] 152s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x emacsen-common all 3.0.5 [12.1 kB] 152s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-common all 1:29.4+1-5ubuntu1 [16.0 MB] 153s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-bin-common s390x 1:29.4+1-5ubuntu1 [109 kB] 153s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 153s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 153s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 153s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libtree-sitter0 s390x 0.20.8-2 [87.1 kB] 153s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs-nox s390x 1:29.4+1-5ubuntu1 [3724 kB] 153s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x emacs all 1:29.4+1-5ubuntu1 [20.8 kB] 153s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libarray-utils-perl all 0.5-3 [5862 B] 154s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-tiny-perl all 2.30-1 [14.7 kB] 154s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libnumber-compare-perl all 0.03-3 [5974 B] 154s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libtext-glob-perl all 0.11-3 [6780 B] 154s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-find-rule-perl all 0.34-3 [24.4 kB] 154s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-elpa all 2.1.5ubuntu1 [30.7 kB] 154s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-elpa-helper all 2.1.5ubuntu1 [9054 B] 154s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 154s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 154s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-buttercup all 1.37-1 [48.1 kB] 154s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-s all 1.13.0-2 [18.2 kB] 154s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-dash all 2.19.1+git20240510.1de9dcb+dfsg-1 [64.2 kB] 154s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-f all 0.21.0-1 [19.7 kB] 154s Get:103 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x elpa-flycheck all 34.1-2 [331 kB] 155s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-haskell-mode all 17.5-2 [187 kB] 155s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-let-alist all 1.0.6-3 [5476 B] 155s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-seq all 2.24-2 [12.1 kB] 155s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x elpa-shut-up all 0.3.3-5 [6090 B] 155s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 155s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 155s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 156s Get:111 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x flycheck-doc all 34.1-2 [864 kB] 156s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x git-man all 1:2.47.1-1ubuntu1 [1142 kB] 156s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x git s390x 1:2.47.1-1ubuntu1 [4260 kB] 157s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 157s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 157s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 157s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 157s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 157s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 157s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 157s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x sphinx-common all 8.1.3-4 [663 kB] 158s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 158s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sphinx all 8.1.3-4 [474 kB] 158s Fetched 104 MB in 18s (5810 kB/s) 158s Selecting previously unselected package sgml-base. 158s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 158s Preparing to unpack .../000-sgml-base_1.31_all.deb ... 158s Unpacking sgml-base (1.31) ... 158s Selecting previously unselected package m4. 158s Preparing to unpack .../001-m4_1.4.19-5_s390x.deb ... 158s Unpacking m4 (1.4.19-5) ... 158s Selecting previously unselected package autoconf. 158s Preparing to unpack .../002-autoconf_2.72-3_all.deb ... 158s Unpacking autoconf (2.72-3) ... 158s Selecting previously unselected package autotools-dev. 158s Preparing to unpack .../003-autotools-dev_20220109.1_all.deb ... 158s Unpacking autotools-dev (20220109.1) ... 158s Selecting previously unselected package automake. 158s Preparing to unpack .../004-automake_1%3a1.17-3_all.deb ... 158s Unpacking automake (1:1.17-3) ... 158s Selecting previously unselected package autopoint. 158s Preparing to unpack .../005-autopoint_0.23.1-1_all.deb ... 158s Unpacking autopoint (0.23.1-1) ... 158s Selecting previously unselected package libisl23:s390x. 158s Preparing to unpack .../006-libisl23_0.27-1_s390x.deb ... 158s Unpacking libisl23:s390x (0.27-1) ... 158s Selecting previously unselected package libmpc3:s390x. 158s Preparing to unpack .../007-libmpc3_1.3.1-1build2_s390x.deb ... 158s Unpacking libmpc3:s390x (1.3.1-1build2) ... 158s Selecting previously unselected package cpp-14-s390x-linux-gnu. 158s Preparing to unpack .../008-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 158s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package cpp-14. 159s Preparing to unpack .../009-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package cpp-s390x-linux-gnu. 159s Preparing to unpack .../010-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package cpp. 159s Preparing to unpack .../011-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking cpp (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package libcc1-0:s390x. 159s Preparing to unpack .../012-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libgomp1:s390x. 159s Preparing to unpack .../013-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libitm1:s390x. 159s Preparing to unpack .../014-libitm1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libasan8:s390x. 159s Preparing to unpack .../015-libasan8_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libubsan1:s390x. 159s Preparing to unpack .../016-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 159s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 159s Selecting previously unselected package libgcc-14-dev:s390x. 159s Preparing to unpack .../017-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package gcc-14-s390x-linux-gnu. 159s Preparing to unpack .../018-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package gcc-14. 159s Preparing to unpack .../019-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package gcc-s390x-linux-gnu. 159s Preparing to unpack .../020-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package gcc. 159s Preparing to unpack .../021-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking gcc (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package libstdc++-14-dev:s390x. 159s Preparing to unpack .../022-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package g++-14-s390x-linux-gnu. 159s Preparing to unpack .../023-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package g++-14. 159s Preparing to unpack .../024-g++-14_14.2.0-17ubuntu1_s390x.deb ... 159s Unpacking g++-14 (14.2.0-17ubuntu1) ... 159s Selecting previously unselected package g++-s390x-linux-gnu. 159s Preparing to unpack .../025-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package g++. 159s Preparing to unpack .../026-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 159s Unpacking g++ (4:14.2.0-1ubuntu1) ... 159s Selecting previously unselected package build-essential. 159s Preparing to unpack .../027-build-essential_12.10ubuntu1_s390x.deb ... 159s Unpacking build-essential (12.10ubuntu1) ... 159s Selecting previously unselected package libdebhelper-perl. 159s Preparing to unpack .../028-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 159s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 159s Selecting previously unselected package libtool. 159s Preparing to unpack .../029-libtool_2.5.4-3build1_all.deb ... 159s Unpacking libtool (2.5.4-3build1) ... 159s Selecting previously unselected package dh-autoreconf. 159s Preparing to unpack .../030-dh-autoreconf_20_all.deb ... 159s Unpacking dh-autoreconf (20) ... 159s Selecting previously unselected package libarchive-zip-perl. 159s Preparing to unpack .../031-libarchive-zip-perl_1.68-1_all.deb ... 159s Unpacking libarchive-zip-perl (1.68-1) ... 159s Selecting previously unselected package libfile-stripnondeterminism-perl. 159s Preparing to unpack .../032-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 159s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 159s Selecting previously unselected package dh-strip-nondeterminism. 159s Preparing to unpack .../033-dh-strip-nondeterminism_1.14.1-2_all.deb ... 159s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 159s Selecting previously unselected package debugedit. 159s Preparing to unpack .../034-debugedit_1%3a5.1-2_s390x.deb ... 159s Unpacking debugedit (1:5.1-2) ... 159s Selecting previously unselected package dwz. 159s Preparing to unpack .../035-dwz_0.15-1build6_s390x.deb ... 159s Unpacking dwz (0.15-1build6) ... 159s Selecting previously unselected package gettext. 159s Preparing to unpack .../036-gettext_0.23.1-1_s390x.deb ... 159s Unpacking gettext (0.23.1-1) ... 159s Selecting previously unselected package intltool-debian. 159s Preparing to unpack .../037-intltool-debian_0.35.0+20060710.6_all.deb ... 159s Unpacking intltool-debian (0.35.0+20060710.6) ... 159s Selecting previously unselected package po-debconf. 159s Preparing to unpack .../038-po-debconf_1.0.21+nmu1_all.deb ... 159s Unpacking po-debconf (1.0.21+nmu1) ... 159s Selecting previously unselected package debhelper. 159s Preparing to unpack .../039-debhelper_13.24.1ubuntu2_all.deb ... 159s Unpacking debhelper (13.24.1ubuntu2) ... 159s Selecting previously unselected package libapt-pkg-perl. 159s Preparing to unpack .../040-libapt-pkg-perl_0.1.40build8_s390x.deb ... 159s Unpacking libapt-pkg-perl (0.1.40build8) ... 159s Selecting previously unselected package libtie-ixhash-perl. 159s Preparing to unpack .../041-libtie-ixhash-perl_1.23-4_all.deb ... 159s Unpacking libtie-ixhash-perl (1.23-4) ... 159s Selecting previously unselected package libarray-unique-perl. 159s Preparing to unpack .../042-libarray-unique-perl_0.09-1_all.deb ... 159s Unpacking libarray-unique-perl (0.09-1) ... 159s Selecting previously unselected package libsub-name-perl:s390x. 159s Preparing to unpack .../043-libsub-name-perl_0.28-1_s390x.deb ... 159s Unpacking libsub-name-perl:s390x (0.28-1) ... 159s Selecting previously unselected package libclass-accessor-perl. 159s Preparing to unpack .../044-libclass-accessor-perl_0.51-2_all.deb ... 159s Unpacking libclass-accessor-perl (0.51-2) ... 159s Selecting previously unselected package libexporter-tiny-perl. 159s Preparing to unpack .../045-libexporter-tiny-perl_1.006002-1_all.deb ... 159s Unpacking libexporter-tiny-perl (1.006002-1) ... 159s Selecting previously unselected package liblist-moreutils-xs-perl. 159s Preparing to unpack .../046-liblist-moreutils-xs-perl_0.430-4build1_s390x.deb ... 159s Unpacking liblist-moreutils-xs-perl (0.430-4build1) ... 159s Selecting previously unselected package liblist-moreutils-perl. 159s Preparing to unpack .../047-liblist-moreutils-perl_0.430-2_all.deb ... 159s Unpacking liblist-moreutils-perl (0.430-2) ... 159s Selecting previously unselected package libio-stringy-perl. 159s Preparing to unpack .../048-libio-stringy-perl_2.113-2_all.deb ... 159s Unpacking libio-stringy-perl (2.113-2) ... 159s Selecting previously unselected package libencode-locale-perl. 159s Preparing to unpack .../049-libencode-locale-perl_1.05-3_all.deb ... 159s Unpacking libencode-locale-perl (1.05-3) ... 160s Selecting previously unselected package libtimedate-perl. 160s Preparing to unpack .../050-libtimedate-perl_2.3300-2_all.deb ... 160s Unpacking libtimedate-perl (2.3300-2) ... 160s Selecting previously unselected package libhttp-date-perl. 160s Preparing to unpack .../051-libhttp-date-perl_6.06-1_all.deb ... 160s Unpacking libhttp-date-perl (6.06-1) ... 160s Selecting previously unselected package libfile-listing-perl. 160s Preparing to unpack .../052-libfile-listing-perl_6.16-1_all.deb ... 160s Unpacking libfile-listing-perl (6.16-1) ... 160s Selecting previously unselected package libhtml-tagset-perl. 160s Preparing to unpack .../053-libhtml-tagset-perl_3.24-1_all.deb ... 160s Unpacking libhtml-tagset-perl (3.24-1) ... 160s Selecting previously unselected package liburi-perl. 160s Preparing to unpack .../054-liburi-perl_5.30-1_all.deb ... 160s Unpacking liburi-perl (5.30-1) ... 160s Selecting previously unselected package libhtml-parser-perl:s390x. 160s Preparing to unpack .../055-libhtml-parser-perl_3.83-1build1_s390x.deb ... 160s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 160s Selecting previously unselected package libhtml-tree-perl. 160s Preparing to unpack .../056-libhtml-tree-perl_5.07-3_all.deb ... 160s Unpacking libhtml-tree-perl (5.07-3) ... 160s Selecting previously unselected package libclone-perl:s390x. 160s Preparing to unpack .../057-libclone-perl_0.47-1_s390x.deb ... 160s Unpacking libclone-perl:s390x (0.47-1) ... 160s Selecting previously unselected package libio-html-perl. 160s Preparing to unpack .../058-libio-html-perl_1.004-3_all.deb ... 160s Unpacking libio-html-perl (1.004-3) ... 160s Selecting previously unselected package liblwp-mediatypes-perl. 160s Preparing to unpack .../059-liblwp-mediatypes-perl_6.04-2_all.deb ... 160s Unpacking liblwp-mediatypes-perl (6.04-2) ... 160s Selecting previously unselected package libhttp-message-perl. 160s Preparing to unpack .../060-libhttp-message-perl_7.00-2ubuntu1_all.deb ... 160s Unpacking libhttp-message-perl (7.00-2ubuntu1) ... 160s Selecting previously unselected package libhttp-cookies-perl. 160s Preparing to unpack .../061-libhttp-cookies-perl_6.11-1_all.deb ... 160s Unpacking libhttp-cookies-perl (6.11-1) ... 160s Selecting previously unselected package libhttp-negotiate-perl. 160s Preparing to unpack .../062-libhttp-negotiate-perl_6.01-2_all.deb ... 160s Unpacking libhttp-negotiate-perl (6.01-2) ... 160s Selecting previously unselected package perl-openssl-defaults:s390x. 160s Preparing to unpack .../063-perl-openssl-defaults_7build3_s390x.deb ... 160s Unpacking perl-openssl-defaults:s390x (7build3) ... 160s Selecting previously unselected package libnet-ssleay-perl:s390x. 160s Preparing to unpack .../064-libnet-ssleay-perl_1.94-2_s390x.deb ... 160s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 160s Selecting previously unselected package libio-socket-ssl-perl. 160s Preparing to unpack .../065-libio-socket-ssl-perl_2.089-1_all.deb ... 160s Unpacking libio-socket-ssl-perl (2.089-1) ... 160s Selecting previously unselected package libnet-http-perl. 160s Preparing to unpack .../066-libnet-http-perl_6.23-1_all.deb ... 160s Unpacking libnet-http-perl (6.23-1) ... 160s Selecting previously unselected package liblwp-protocol-https-perl. 160s Preparing to unpack .../067-liblwp-protocol-https-perl_6.14-1_all.deb ... 160s Unpacking liblwp-protocol-https-perl (6.14-1) ... 160s Selecting previously unselected package libtry-tiny-perl. 160s Preparing to unpack .../068-libtry-tiny-perl_0.32-1_all.deb ... 160s Unpacking libtry-tiny-perl (0.32-1) ... 160s Selecting previously unselected package libwww-robotrules-perl. 160s Preparing to unpack .../069-libwww-robotrules-perl_6.02-1_all.deb ... 160s Unpacking libwww-robotrules-perl (6.02-1) ... 160s Selecting previously unselected package libwww-perl. 160s Preparing to unpack .../070-libwww-perl_6.77-1_all.deb ... 160s Unpacking libwww-perl (6.77-1) ... 160s Selecting previously unselected package liberror-perl. 160s Preparing to unpack .../071-liberror-perl_0.17029-2_all.deb ... 160s Unpacking liberror-perl (0.17029-2) ... 160s Selecting previously unselected package libexporter-lite-perl. 160s Preparing to unpack .../072-libexporter-lite-perl_0.09-2_all.deb ... 160s Unpacking libexporter-lite-perl (0.09-2) ... 160s Selecting previously unselected package libparse-debcontrol-perl. 160s Preparing to unpack .../073-libparse-debcontrol-perl_2.005-6_all.deb ... 160s Unpacking libparse-debcontrol-perl (2.005-6) ... 160s Selecting previously unselected package libsub-install-perl. 160s Preparing to unpack .../074-libsub-install-perl_0.929-1_all.deb ... 160s Unpacking libsub-install-perl (0.929-1) ... 160s Selecting previously unselected package libcgi-pm-perl. 160s Preparing to unpack .../075-libcgi-pm-perl_4.67-1_all.deb ... 160s Unpacking libcgi-pm-perl (4.67-1) ... 160s Selecting previously unselected package libhtml-form-perl. 160s Preparing to unpack .../076-libhtml-form-perl_6.12-1_all.deb ... 160s Unpacking libhtml-form-perl (6.12-1) ... 160s Selecting previously unselected package libwww-mechanize-perl. 160s Preparing to unpack .../077-libwww-mechanize-perl_2.18-1ubuntu1_all.deb ... 160s Unpacking libwww-mechanize-perl (2.18-1ubuntu1) ... 160s Selecting previously unselected package libdebian-source-perl. 160s Preparing to unpack .../078-libdebian-source-perl_0.126_all.deb ... 160s Unpacking libdebian-source-perl (0.126) ... 160s Selecting previously unselected package emacs-el. 160s Preparing to unpack .../079-emacs-el_1%3a29.4+1-5ubuntu1_all.deb ... 160s Unpacking emacs-el (1:29.4+1-5ubuntu1) ... 160s Selecting previously unselected package emacsen-common. 160s Preparing to unpack .../080-emacsen-common_3.0.5_all.deb ... 160s Unpacking emacsen-common (3.0.5) ... 160s Selecting previously unselected package emacs-common. 160s Preparing to unpack .../081-emacs-common_1%3a29.4+1-5ubuntu1_all.deb ... 160s Unpacking emacs-common (1:29.4+1-5ubuntu1) ... 160s Selecting previously unselected package emacs-bin-common. 160s Preparing to unpack .../082-emacs-bin-common_1%3a29.4+1-5ubuntu1_s390x.deb ... 160s Unpacking emacs-bin-common (1:29.4+1-5ubuntu1) ... 160s Selecting previously unselected package libasound2-data. 160s Preparing to unpack .../083-libasound2-data_1.2.13-1build1_all.deb ... 160s Unpacking libasound2-data (1.2.13-1build1) ... 160s Selecting previously unselected package libasound2t64:s390x. 160s Preparing to unpack .../084-libasound2t64_1.2.13-1build1_s390x.deb ... 160s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 160s Selecting previously unselected package liblcms2-2:s390x. 160s Preparing to unpack .../085-liblcms2-2_2.16-2_s390x.deb ... 160s Unpacking liblcms2-2:s390x (2.16-2) ... 160s Selecting previously unselected package libtree-sitter0:s390x. 160s Preparing to unpack .../086-libtree-sitter0_0.20.8-2_s390x.deb ... 160s Unpacking libtree-sitter0:s390x (0.20.8-2) ... 160s Selecting previously unselected package emacs-nox. 160s Preparing to unpack .../087-emacs-nox_1%3a29.4+1-5ubuntu1_s390x.deb ... 160s Unpacking emacs-nox (1:29.4+1-5ubuntu1) ... 161s Selecting previously unselected package emacs. 161s Preparing to unpack .../088-emacs_1%3a29.4+1-5ubuntu1_all.deb ... 161s Unpacking emacs (1:29.4+1-5ubuntu1) ... 161s Selecting previously unselected package libarray-utils-perl. 161s Preparing to unpack .../089-libarray-utils-perl_0.5-3_all.deb ... 161s Unpacking libarray-utils-perl (0.5-3) ... 161s Selecting previously unselected package libconfig-tiny-perl. 161s Preparing to unpack .../090-libconfig-tiny-perl_2.30-1_all.deb ... 161s Unpacking libconfig-tiny-perl (2.30-1) ... 161s Selecting previously unselected package libnumber-compare-perl. 161s Preparing to unpack .../091-libnumber-compare-perl_0.03-3_all.deb ... 161s Unpacking libnumber-compare-perl (0.03-3) ... 161s Selecting previously unselected package libtext-glob-perl. 161s Preparing to unpack .../092-libtext-glob-perl_0.11-3_all.deb ... 161s Unpacking libtext-glob-perl (0.11-3) ... 161s Selecting previously unselected package libfile-find-rule-perl. 161s Preparing to unpack .../093-libfile-find-rule-perl_0.34-3_all.deb ... 161s Unpacking libfile-find-rule-perl (0.34-3) ... 161s Selecting previously unselected package dh-elpa. 161s Preparing to unpack .../094-dh-elpa_2.1.5ubuntu1_all.deb ... 161s Unpacking dh-elpa (2.1.5ubuntu1) ... 161s Selecting previously unselected package dh-elpa-helper. 161s Preparing to unpack .../095-dh-elpa-helper_2.1.5ubuntu1_all.deb ... 161s Unpacking dh-elpa-helper (2.1.5ubuntu1) ... 161s Selecting previously unselected package xml-core. 161s Preparing to unpack .../096-xml-core_0.19_all.deb ... 161s Unpacking xml-core (0.19) ... 161s Selecting previously unselected package docutils-common. 161s Preparing to unpack .../097-docutils-common_0.21.2+dfsg-2_all.deb ... 161s Unpacking docutils-common (0.21.2+dfsg-2) ... 161s Selecting previously unselected package elpa-buttercup. 161s Preparing to unpack .../098-elpa-buttercup_1.37-1_all.deb ... 161s Unpacking elpa-buttercup (1.37-1) ... 161s Selecting previously unselected package elpa-s. 161s Preparing to unpack .../099-elpa-s_1.13.0-2_all.deb ... 161s Unpacking elpa-s (1.13.0-2) ... 161s Selecting previously unselected package elpa-dash. 161s Preparing to unpack .../100-elpa-dash_2.19.1+git20240510.1de9dcb+dfsg-1_all.deb ... 161s Unpacking elpa-dash (2.19.1+git20240510.1de9dcb+dfsg-1) ... 161s Selecting previously unselected package elpa-f. 161s Preparing to unpack .../101-elpa-f_0.21.0-1_all.deb ... 161s Unpacking elpa-f (0.21.0-1) ... 161s Selecting previously unselected package elpa-flycheck. 161s Preparing to unpack .../102-elpa-flycheck_34.1-2_all.deb ... 161s Unpacking elpa-flycheck (34.1-2) ... 161s Selecting previously unselected package elpa-haskell-mode. 161s Preparing to unpack .../103-elpa-haskell-mode_17.5-2_all.deb ... 161s Unpacking elpa-haskell-mode (17.5-2) ... 161s Selecting previously unselected package elpa-let-alist. 161s Preparing to unpack .../104-elpa-let-alist_1.0.6-3_all.deb ... 161s Unpacking elpa-let-alist (1.0.6-3) ... 161s Selecting previously unselected package elpa-seq. 161s Preparing to unpack .../105-elpa-seq_2.24-2_all.deb ... 161s Unpacking elpa-seq (2.24-2) ... 161s Selecting previously unselected package elpa-shut-up. 161s Preparing to unpack .../106-elpa-shut-up_0.3.3-5_all.deb ... 161s Unpacking elpa-shut-up (0.3.3-5) ... 161s Selecting previously unselected package libjs-jquery. 161s Preparing to unpack .../107-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 161s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 161s Selecting previously unselected package libjs-underscore. 161s Preparing to unpack .../108-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 161s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 161s Selecting previously unselected package libjs-sphinxdoc. 161s Preparing to unpack .../109-libjs-sphinxdoc_8.1.3-4_all.deb ... 161s Unpacking libjs-sphinxdoc (8.1.3-4) ... 161s Selecting previously unselected package flycheck-doc. 161s Preparing to unpack .../110-flycheck-doc_34.1-2_all.deb ... 161s Unpacking flycheck-doc (34.1-2) ... 161s Selecting previously unselected package git-man. 161s Preparing to unpack .../111-git-man_1%3a2.47.1-1ubuntu1_all.deb ... 161s Unpacking git-man (1:2.47.1-1ubuntu1) ... 161s Selecting previously unselected package git. 161s Preparing to unpack .../112-git_1%3a2.47.1-1ubuntu1_s390x.deb ... 161s Unpacking git (1:2.47.1-1ubuntu1) ... 161s Selecting previously unselected package libjson-perl. 161s Preparing to unpack .../113-libjson-perl_4.10000-1_all.deb ... 161s Unpacking libjson-perl (4.10000-1) ... 161s Selecting previously unselected package python3-defusedxml. 161s Preparing to unpack .../114-python3-defusedxml_0.7.1-3_all.deb ... 161s Unpacking python3-defusedxml (0.7.1-3) ... 161s Selecting previously unselected package python3-roman. 161s Preparing to unpack .../115-python3-roman_5.0-1_all.deb ... 161s Unpacking python3-roman (5.0-1) ... 161s Selecting previously unselected package python3-docutils. 161s Preparing to unpack .../116-python3-docutils_0.21.2+dfsg-2_all.deb ... 161s Unpacking python3-docutils (0.21.2+dfsg-2) ... 161s Selecting previously unselected package python3-imagesize. 161s Preparing to unpack .../117-python3-imagesize_1.4.1-1_all.deb ... 161s Unpacking python3-imagesize (1.4.1-1) ... 161s Selecting previously unselected package python3-packaging. 161s Preparing to unpack .../118-python3-packaging_24.2-1_all.deb ... 161s Unpacking python3-packaging (24.2-1) ... 161s Selecting previously unselected package python3-snowballstemmer. 161s Preparing to unpack .../119-python3-snowballstemmer_2.2.0-4build1_all.deb ... 161s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 161s Selecting previously unselected package sphinx-common. 161s Preparing to unpack .../120-sphinx-common_8.1.3-4_all.deb ... 161s Unpacking sphinx-common (8.1.3-4) ... 161s Selecting previously unselected package python3-alabaster. 161s Preparing to unpack .../121-python3-alabaster_0.7.16-0.1_all.deb ... 161s Unpacking python3-alabaster (0.7.16-0.1) ... 161s Selecting previously unselected package python3-sphinx. 161s Preparing to unpack .../122-python3-sphinx_8.1.3-4_all.deb ... 161s Unpacking python3-sphinx (8.1.3-4) ... 161s Setting up libapt-pkg-perl (0.1.40build8) ... 161s Setting up libarray-utils-perl (0.5-3) ... 161s Setting up liblcms2-2:s390x (2.16-2) ... 161s Setting up libtie-ixhash-perl (1.23-4) ... 161s Setting up libtext-glob-perl (0.11-3) ... 161s Setting up python3-defusedxml (0.7.1-3) ... 161s Setting up libclone-perl:s390x (0.47-1) ... 161s Setting up libarchive-zip-perl (1.68-1) ... 161s Setting up python3-alabaster (0.7.16-0.1) ... 161s Setting up libio-stringy-perl (2.113-2) ... 161s Setting up libhtml-tagset-perl (3.24-1) ... 161s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 161s Setting up liblwp-mediatypes-perl (6.04-2) ... 161s Setting up libtry-tiny-perl (0.32-1) ... 161s Setting up perl-openssl-defaults:s390x (7build3) ... 161s Setting up m4 (1.4.19-5) ... 161s Setting up libencode-locale-perl (1.05-3) ... 161s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 161s Setting up libconfig-tiny-perl (2.30-1) ... 161s Setting up libsub-install-perl (0.929-1) ... 161s Setting up libnumber-compare-perl (0.03-3) ... 161s Setting up liberror-perl (0.17029-2) ... 161s Setting up libasound2-data (1.2.13-1build1) ... 161s Setting up python3-roman (5.0-1) ... 161s Setting up autotools-dev (20220109.1) ... 161s Setting up python3-packaging (24.2-1) ... 161s Setting up libasound2t64:s390x (1.2.13-1build1) ... 161s Setting up libtree-sitter0:s390x (0.20.8-2) ... 161s Setting up emacsen-common (3.0.5) ... 161s Setting up libfile-find-rule-perl (0.34-3) ... 161s Setting up python3-snowballstemmer (2.2.0-4build1) ... 162s Setting up dh-elpa-helper (2.1.5ubuntu1) ... 162s Setting up libarray-unique-perl (0.09-1) ... 162s Setting up libmpc3:s390x (1.3.1-1build2) ... 162s Setting up libio-html-perl (1.004-3) ... 162s Setting up autopoint (0.23.1-1) ... 162s Setting up liblist-moreutils-xs-perl (0.430-4build1) ... 162s Setting up elpa-shut-up (0.3.3-5) ... 162s Setting up autoconf (2.72-3) ... 162s Setting up libtimedate-perl (2.3300-2) ... 162s Setting up libexporter-lite-perl (0.09-2) ... 162s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 162s Setting up libsub-name-perl:s390x (0.28-1) ... 162s Setting up dwz (0.15-1build6) ... 162s Setting up elpa-let-alist (1.0.6-3) ... 162s Setting up elpa-seq (2.24-2) ... 162s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 162s Setting up libjson-perl (4.10000-1) ... 162s Setting up debugedit (1:5.1-2) ... 162s Setting up git-man (1:2.47.1-1ubuntu1) ... 162s Setting up sgml-base (1.31) ... 162s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 162s Setting up libexporter-tiny-perl (1.006002-1) ... 162s Setting up libclass-accessor-perl (0.51-2) ... 162s Setting up libisl23:s390x (0.27-1) ... 162s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 162s Setting up liburi-perl (5.30-1) ... 162s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 162s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 162s Setting up python3-imagesize (1.4.1-1) ... 162s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 162s Setting up automake (1:1.17-3) ... 162s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 162s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 162s Setting up libhttp-date-perl (6.06-1) ... 162s Setting up gettext (0.23.1-1) ... 162s Setting up libfile-listing-perl (6.16-1) ... 162s Setting up elpa-s (1.13.0-2) ... 162s Setting up elpa-flycheck (34.1-2) ... 162s Setting up liblist-moreutils-perl (0.430-2) ... 162s Setting up elpa-haskell-mode (17.5-2) ... 162s Setting up libnet-http-perl (6.23-1) ... 162s Setting up intltool-debian (0.35.0+20060710.6) ... 162s Setting up elpa-dash (2.19.1+git20240510.1de9dcb+dfsg-1) ... 162s Setting up git (1:2.47.1-1ubuntu1) ... 162s Setting up libjs-sphinxdoc (8.1.3-4) ... 162s Setting up flycheck-doc (34.1-2) ... 162s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Setting up cpp-14 (14.2.0-17ubuntu1) ... 162s Setting up dh-strip-nondeterminism (1.14.1-2) ... 162s Setting up libwww-robotrules-perl (6.02-1) ... 162s Setting up xml-core (0.19) ... 162s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 162s Setting up elpa-f (0.21.0-1) ... 162s tsort: -: input contains a loop: 162s tsort: elpa-dash 162s tsort: emacsen-common 162s tsort: -: input contains a loop: 162s tsort: emacsen-common 162s tsort: elpa-s 162s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 162s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 162s Setting up libio-socket-ssl-perl (2.089-1) ... 162s Setting up libhttp-message-perl (7.00-2ubuntu1) ... 162s Setting up libhtml-form-perl (6.12-1) ... 162s Setting up libhttp-negotiate-perl (6.01-2) ... 162s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Setting up libhttp-cookies-perl (6.11-1) ... 162s Setting up po-debconf (1.0.21+nmu1) ... 162s Setting up libhtml-tree-perl (5.07-3) ... 162s Setting up libcgi-pm-perl (4.67-1) ... 162s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Setting up sphinx-common (8.1.3-4) ... 162s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Setting up cpp (4:14.2.0-1ubuntu1) ... 162s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Setting up gcc-14 (14.2.0-17ubuntu1) ... 162s Setting up g++-14 (14.2.0-17ubuntu1) ... 162s Setting up libtool (2.5.4-3build1) ... 162s Setting up gcc (4:14.2.0-1ubuntu1) ... 162s Setting up dh-autoreconf (20) ... 162s Setting up g++ (4:14.2.0-1ubuntu1) ... 162s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 162s Setting up build-essential (12.10ubuntu1) ... 162s Setting up debhelper (13.24.1ubuntu2) ... 162s Setting up emacs-el (1:29.4+1-5ubuntu1) ... 162s Setting up emacs-common (1:29.4+1-5ubuntu1) ... 162s Setting up liblwp-protocol-https-perl (6.14-1) ... 162s Setting up libwww-perl (6.77-1) ... 162s Setting up libparse-debcontrol-perl (2.005-6) ... 162s Setting up libwww-mechanize-perl (2.18-1ubuntu1) ... 162s Setting up libdebian-source-perl (0.126) ... 162s Setting up emacs-bin-common (1:29.4+1-5ubuntu1) ... 162s update-alternatives: using /usr/bin/ctags.emacs to provide /usr/bin/ctags (ctags) in auto mode 162s update-alternatives: using /usr/bin/ebrowse.emacs to provide /usr/bin/ebrowse (ebrowse) in auto mode 162s update-alternatives: using /usr/bin/etags.emacs to provide /usr/bin/etags (etags) in auto mode 162s Setting up emacs-nox (1:29.4+1-5ubuntu1) ... 162s update-alternatives: using /usr/bin/emacs-nox to provide /usr/bin/emacs (emacs) in auto mode 162s update-alternatives: using /usr/bin/emacsclient.emacs to provide /usr/bin/emacsclient (emacsclient) in auto mode 162s Install emacsen-common for emacs 162s emacsen-common: Handling install of emacsen flavor emacs 162s Install elpa-let-alist for emacs 162s install/let-alist-1.0.6: Handling install of emacsen flavor emacs 162s install/let-alist-1.0.6: byte-compiling for emacs 162s Install elpa-flycheck for emacs 162s install/flycheck-34.1: Handling install of emacsen flavor emacs 162s install/flycheck-34.1: byte-compiling for emacs 163s Install elpa-shut-up for emacs 163s install/shut-up-0.3.2: Handling install of emacsen flavor emacs 163s install/shut-up-0.3.2: byte-compiling for emacs 163s Install elpa-s for emacs 163s install/s-1.13.0: Handling install of emacsen flavor emacs 163s install/s-1.13.0: byte-compiling for emacs 163s Install elpa-seq for emacs 163s install/seq-2.24: Handling install of emacsen flavor emacs 163s install/seq-2.24: byte-compiling for emacs 163s Install elpa-dash for emacs 163s install/dash-2.19.1: Handling install of emacsen flavor emacs 163s install/dash-2.19.1: byte-compiling for emacs 164s Install elpa-haskell-mode for emacs 164s install/haskell-mode-17.5: Handling install of emacsen flavor emacs 164s install/haskell-mode-17.5: byte-compiling for emacs 164s Install elpa-f for emacs 164s install/f-0.21.0: Handling install of emacsen flavor emacs 164s install/f-0.21.0: byte-compiling for emacs 165s Setting up dh-elpa (2.1.5ubuntu1) ... 165s Setting up emacs (1:29.4+1-5ubuntu1) ... 165s Setting up elpa-buttercup (1.37-1) ... 165s Install emacsen-common for emacs 165s emacsen-common: Handling install of emacsen flavor emacs 165s Install elpa-buttercup for emacs 165s install/buttercup-1.37: Handling install of emacsen flavor emacs 165s install/buttercup-1.37: byte-compiling for emacs 165s Processing triggers for install-info (7.1.1-1) ... 165s Processing triggers for libc-bin (2.40-4ubuntu1) ... 165s Processing triggers for man-db (2.13.0-1) ... 165s Processing triggers for sgml-base (1.31) ... 165s Setting up docutils-common (0.21.2+dfsg-2) ... 165s Processing triggers for sgml-base (1.31) ... 165s Setting up python3-docutils (0.21.2+dfsg-2) ... 166s Setting up python3-sphinx (8.1.3-4) ... 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'elpa-flycheck'], kind short, sout pipe, serr pipe, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'flycheck-doc'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-packages.all /tmp/autopkgtest-work.9hvndo55/out/dh-elpa-test-autopkgtest-packages.all 167s autopkgtest: DBG: got reply from testbed: ok 167s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.MfZFqe/build.284/src'], kind short, sout raw, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.MfZFqe/build.284/src already exists 167s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '/tmp/autopkgtest.MfZFqe/build.284/src'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [04:45:21]: test dh-elpa-test-autopkgtest: dh_elpa_test --autopkgtest 167s autopkgtest [04:45:21]: test dh-elpa-test-autopkgtest: [----------------------- 167s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.MfZFqe/wrapper.sh --debug --artifacts=/tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-artifacts --chdir=/tmp/autopkgtest.MfZFqe/build.284/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.MfZFqe/dh-elpa-test-autopkgtest-stderr --stdout=/tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-stdout --tmp=/tmp/autopkgtest.MfZFqe/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=flycheck/34.1-2 -- bash -ec 'dh_elpa_test --autopkgtest'"], kind test, sout raw, serr raw, env [] 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-artifacts 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: changing to directory: /tmp/autopkgtest.MfZFqe/build.284/src 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: setting environment: LANG=C.UTF-8 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LANGUAGE 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_ADDRESS 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_ALL 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_COLLATE 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_CTYPE 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_IDENTIFICATION 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_MEASUREMENT 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_MESSAGES 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_MONETARY 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_NAME 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_NUMERIC 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_PAPER 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_TELEPHONE 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: unsetting environment: LC_TIME 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: pretending to be a login shell 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: will write standard error to /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-stderr 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: will write stdout to /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-stdout 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.MfZFqe/autopkgtest_tmp 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=flycheck/34.1-2 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: command to run: bash -ec dh_elpa_test --autopkgtest 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: copying /tmp/tmp.xWwzIGdAbC/out to stdout and file: /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-stdout 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: copying /tmp/tmp.xWwzIGdAbC/err to standard error and file: /tmp/autopkgtest.MfZFqe/dh-elpa-test-autopkgtest-stdout 167s /tmp/autopkgtest.MfZFqe/wrapper.sh: writing script pid 2873 to /tmp/autopkgtest_script_pid 168s buttercup -L . --traceback pretty 168s Loading /etc/emacs/site-start.d/00debian.el (source)... 168s Loading /etc/emacs/site-start.d/50autoconf.el (source)... 168s Running 110 specs. 168s 168s Language C/C++ 168s The Cppcheck error parser 168s parses Cppcheck XML using automatic parser selection  parses Cppcheck XML using automatic parser selection (5.09ms) 168s parses Cppcheck XML without errors using automatic parser selection  parses Cppcheck XML without errors using automatic parser selection (0.14ms) 168s parses Cppcheck XML without errors using builtin parser  parses Cppcheck XML without errors using builtin parser (1.65ms) 168s 168s Language Emacs Lisp 168s Checkdoc 168s exports all customizable variables  exports all customizable variables (0.20ms) 168s 168s Language Go 168s The staticcheck error parser 168s parses staticcheck JSON output  parses staticcheck JSON output (0.45ms) 168s 168s Language Haskell 168s Module names 168s does not extract a module name from commented code  does not extract a module name from commented code (0.12ms) 168s extracts a simple module name without exports  extracts a simple module name without exports (0.11ms) 168s extracts a simple module name at the end of a line  extracts a simple module name at the end of a line (0.10ms) 168s extracts a module name with exports  extracts a module name with exports (0.10ms) 168s extracts a module name with exports right after the name  extracts a module name with exports right after the name (0.11ms) 168s 168s Syntax checker Help 168s flycheck-describe-checker 168s pops up a help buffer for ruby-rubocop  pops up a help buffer for ruby-rubocop (0.61ms) 168s documents ruby-rubocop in the help buffer  documents ruby-rubocop in the help buffer (0.50ms) 168s navigates to the source of ruby-rubocop  navigates to the source of ruby-rubocop (12.48ms) 168s shows next checkers in the help of ruby-rubocop  shows next checkers in the help of ruby-rubocop (0.59ms) 168s shows the executable name in the help of ruby-rubocop  shows the executable name in the help of ruby-rubocop (0.51ms) 168s shows the executable variable in the help of ruby-rubocop  shows the executable variable in the help of ruby-rubocop (0.49ms) 168s shows the configuration file variable in the help of ruby-rubocop  shows the configuration file variable in the help of ruby-rubocop (0.49ms) 168s shows the option variables in the help of ruby-rubocop  shows the option variables in the help of ruby-rubocop (0.50ms) 168s shows the docstring of ruby-rubocop  shows the docstring of ruby-rubocop (0.50ms) 168s 168s Language JavaScript 168s The ESLint error parser 168s parses ESLint JSON output with errors  parses ESLint JSON output with errors (0.14ms) 168s parses ESLint JSON output without errors  parses ESLint JSON output without errors (0.11ms) 168s parses ESLint JSON output with deprecation warning  parses ESLint JSON output with deprecation warning (0.14ms) 168s 168s Language PHP 168s The PHDMD error parser 168s parses PHPMD XML output  parses PHPMD XML output (0.45ms) 168s 168s Language Ruby 168s The Reek error parser 168s parses Reek JSON output  parses Reek JSON output (0.47ms) 168s 168s Language TypeScript 168s The TSLint error parser 168s parses TSLint JSON output  parses TSLint JSON output (0.34ms) 168s parses TSLint JSON output with unknown severity  parses TSLint JSON output with unknown severity (0.23ms) 168s 168s Documentation 168s Syntax checkers 168s documents all syntax checkers  documents all syntax checkers (0.64ms) 168s doesn't document syntax checkers that don't exist  doesn't document syntax checkers that don't exist (0.62ms) 168s Options 168s documents all syntax checker options  documents all syntax checker options (0.63ms) 168s doesn't document syntax checker options that don't exist  doesn't document syntax checker options that don't exist (0.61ms) 168s Configuration files 168s documents all syntax checker configuration files  documents all syntax checker configuration files (0.16ms) 168s it doesn't document configuration files that don't exist  it doesn't document configuration files that don't exist (0.14ms) 168s 168s Error filters 168s flycheck-sanitize-errors 168s removes trailing whitespace  removes trailing whitespace (0.11ms) 168s removes empty error IDs  removes empty error IDs (0.11ms) 168s removes zero columns  removes zero columns (0.11ms) 168s flycheck-remove-error-file-names 168s removes the given filename from errors  removes the given filename from errors (0.20ms) 168s flycheck-increment-error-columns 168s ignores nil columns  ignores nil columns (0.11ms) 168s increments with the default offset  increments with the default offset (0.13ms) 168s increments with a custom offset  increments with a custom offset (0.12ms) 168s flycheck-fold-include-levels 168s skips over intermittent errors  skips over intermittent errors (0.47ms) 168s flycheck-collapse-error-message-whitespace 168s collapses all whitespace in error messages  collapses all whitespace in error messages (0.12ms) 168s flycheck-dequalify-error-ids 168s removes all nested qualifiers  removes all nested qualifiers (0.14ms) 168s leaves unqualified IDs alone  leaves unqualified IDs alone (0.12ms) 168s ignores errors without IDs  ignores errors without IDs (0.11ms) 168s flycheck-remove-error-ids 168s ignores errors without IDs  ignores errors without IDs (0.11ms) 168s removes error IDs  removes error IDs (0.11ms) 168s flycheck-fill-empty-line-numbers 168s ignores errors with line numbers  ignores errors with line numbers (0.11ms) 168s sets errors missing line numbers to line 0  sets errors missing line numbers to line 0 (0.11ms) 168s 168s Error List 168s has the correct buffer name  has the correct buffer name (0.10ms) 168s has a permanently local source buffer  has a permanently local source buffer (1.55ms) 168s derives from Tabulated List Mode  derives from Tabulated List Mode (0.13ms) 168s Format 168s sets the error list format locally  sets the error list format locally (0.20ms) 168s sets a proper padding locally  sets a proper padding locally (0.17ms) 168s sets the list entries locally  sets the list entries locally (0.16ms) 168s has a local header line  has a local header line (0.25ms) 168s Columns 168s has the file name in the 1st column  has the file name in the 1st column (0.11ms) 168s has the line number in the 2nd column  has the line number in the 2nd column (0.11ms) 168s has the column number in the 3rd column  has the column number in the 3rd column (0.11ms) 168s has the error level in the 4th column  has the error level in the 4th column (0.11ms) 168s has the error ID in the 5th column  has the error ID in the 5th column (0.11ms) 168s has the error message in the 6th column  has the error message in the 6th column (0.11ms) 168s Entry 168s has the error object as ID  has the error object as ID (0.15ms) 168s has the line number in the 2nd cell  has the line number in the 2nd cell (0.11ms) 168s has the column number in the 3rd cell  has the column number in the 3rd cell (0.11ms) 168s has an empty 3rd cell if there is no column number  has an empty 3rd cell if there is no column number (0.13ms) 168s has the error level in the 4th cell  has the error level in the 4th cell (0.11ms) 168s has the error ID in the 5th cell  has the error ID in the 5th cell (0.12ms) 168s has the error message in the 6th cell  has the error message in the 6th cell (0.12ms) 168s has a default message in the 6th cell if there is no message  has a default message in the 6th cell if there is no message (0.14ms) 168s Filter 168s kills the filter variable when resetting the filter  kills the filter variable when resetting the filter (0.14ms) 168s filters errors with lower levels  filters errors with lower levels (0.13ms) 168s Mode Line 168s shows no mode line indicator if no filter is set  shows no mode line indicator if no filter is set (0.07ms) 168s shows the level filter in the mode line if set  shows the level filter in the mode line if set (0.12ms) 168s 168s Error parsers 168s The checkstyle parser 168s parses Checkstyle XML using built-in XML parser  parses Checkstyle XML using built-in XML parser (0.55ms) 168s parses Checkstyle XML using libxml  parses Checkstyle XML using libxml (0.42ms) 168s parses Checkstyle XML with automatic parser selection  parses Checkstyle XML with automatic parser selection (0.39ms) 168s 168s Generic syntax checkers 168s Major mode 168s supports the current major mode  supports the current major mode (0.06ms) 168s supports a major mode  supports a major mode (0.06ms) 168s does not support a major mode  does not support a major mode (0.07ms) 168s 168s Global Flycheck Mode 168s checks whether it may enable the mode  checks whether it may enable the mode (0.22ms) 168s enables Flycheck in a regular buffer  enables Flycheck in a regular buffer (0.18ms) 168s enables Flycheck when only that major mode is allowed  enables Flycheck when only that major mode is allowed (0.18ms) 168s does not enable Flycheck in temporary buffers  does not enable Flycheck in temporary buffers (0.11ms) 168s does not enable Flycheck in ephemeral buffers  does not enable Flycheck in ephemeral buffers (0.15ms) 168s does not enable Flycheck in special modes  does not enable Flycheck in special modes (0.11ms) 168s does not enable Flycheck in fundamental-mode  does not enable Flycheck in fundamental-mode (0.11ms) 168s does not enable Flycheck in encrypted buffers  does not enable Flycheck in encrypted buffers (0.18ms) 168s does not enable Flycheck in compilation mode  does not enable Flycheck in compilation mode (11.32ms) 168s does not enable Flycheck if all major modes are disabled  does not enable Flycheck if all major modes are disabled (0.20ms) 168s does not enable Flycheck if the major mode is disabled  does not enable Flycheck if the major mode is disabled (0.19ms) 168s does not enable Flycheck if the major mode is not enabled  does not enable Flycheck if the major mode is not enabled (0.19ms) 168s 168s Encrypted buffers 168s flycheck-encrypted-buffer-p 168s considers a temporary buffer as unencrypted  considers a temporary buffer as unencrypted (0.27ms) 168s considers a file buffer as unencrypted  considers a file buffer as unencrypted (3.18ms) 169s recognizes an encrypted buffer  recognizes an encrypted buffer (1.25s) 169s 169s Mode Line 169s shows the number of errors and warnings  shows the number of errors and warnings (0.16ms) 169s does not show the number of infos  does not show the number of infos (0.14ms) 169s includes the prefix  includes the prefix (0.12ms) 169s 169s Utilities 169s flycheck-buffer-empty-p 169s considers an empty buffer as empty  considers an empty buffer as empty (0.09ms) 169s does not consider a buffer with content as empty  does not consider a buffer with content as empty (0.11ms) 169s detects emptiness of narrowed buffers  detects emptiness of narrowed buffers (0.17ms) 169s flycheck-buffer-saved-p 169s considers an unmodified buffer without backing file unsaved  considers an unmodified buffer without backing file unsaved (0.10ms) 169s considers a modified buffer without backing file unsaved  considers a modified buffer without backing file unsaved (0.10ms) 169s considers an unmodified buffer with backing file saved  considers an unmodified buffer with backing file saved (0.27ms) 169s considers a modified buffer with backing file unsaved  considers a modified buffer with backing file unsaved (0.29ms) 169s flycheck-default-executable-find 169s non-existing programs 169s returns nil when given a non-existing program name  returns nil when given a non-existing program name (0.26ms) 169s returns nil when given a non-existing relative program path  returns nil when given a non-existing relative program path (0.27ms) 169s returns nil when given a non-existing absolute program path  returns nil when given a non-existing absolute program path (0.14ms) 169s existing programs with implied suffix 169s resolves the path when given an existing program name  resolves the path when given an existing program name (0.63ms) 169s resolves the path when given an existing relative program path  resolves the path when given an existing relative program path (0.73ms) 169s resolves the path when given an existing absolute program path  resolves the path when given an existing absolute program path (0.58ms) 169s 169s Ran 110 specs, 0 failed, in 1.32s. 169s emacs -batch -Q -l package --eval "(add-to-list 'package-directory-list \"/usr/share/emacs/site-lisp/elpa\")" --eval "(add-to-list 'package-directory-list \"/usr/share/emacs/site-lisp/elpa-src\")" --eval "(setq ert-batch-backtrace-right-margin nil)" -f package-initialize -L . -L test -l flycheck-ert.el -l test/flycheck-test.el -l debian/ert-helper.el 170s Loading /tmp/autopkgtest.MfZFqe/build.284/src/test/run.el (source)... 170s Running tests on Emacs 29.4, built at 2025-01-15 170s Running 559 tests (2025-02-19 04:45:24+0000, selector ‘(and "flycheck-" t)’) 170s passed 1/559 flycheck-CHECKER-executable/defaults-to-nil (0.000458 sec) 170s passed 2/559 flycheck-CHECKER-executable/is-customizable (0.000440 sec) 170s passed 3/559 flycheck-CHECKER-executable/is-special-variable (0.000433 sec) 170s passed 4/559 flycheck-add-mode (0.000037 sec) 170s passed 5/559 flycheck-add-mode/no-valid-checker (0.000050 sec) 170s passed 6/559 flycheck-add-mode/no-valid-mode (0.000046 sec) 170s passed 7/559 flycheck-add-next-checker/append (0.000037 sec) 170s passed 8/559 flycheck-add-next-checker/no-valid-checker (0.000046 sec) 170s passed 9/559 flycheck-add-next-checker/no-valid-next-checker (0.000093 sec) 170s passed 10/559 flycheck-add-next-checker/prepend (0.000035 sec) 170s passed 11/559 flycheck-add-next-checker/redundant (0.000042 sec) 170s passed 12/559 flycheck-add-overlay/can-suppress-help-echo (0.002116 sec) 170s passed 13/559 flycheck-add-overlay/error-category (0.001159 sec) 170s passed 14/559 flycheck-add-overlay/has-error-fringe-icon (0.000420 sec) 170s passed 15/559 flycheck-add-overlay/has-flycheck-error-property (0.000420 sec) 170s passed 16/559 flycheck-add-overlay/has-flycheck-overlay-property (0.000411 sec) 170s passed 17/559 flycheck-add-overlay/has-help-echo (0.000399 sec) 170s passed 18/559 flycheck-add-overlay/has-info-fringe-icon (0.000419 sec) 170s passed 19/559 flycheck-add-overlay/has-left-fringe-icon (0.000412 sec) 170s passed 20/559 flycheck-add-overlay/has-no-fringe-icon-with-disabled-indication (0.000436 sec) 170s passed 21/559 flycheck-add-overlay/has-right-fringe-icon (0.000416 sec) 170s passed 22/559 flycheck-add-overlay/has-warning-fringe-icon (0.000416 sec) 170s passed 23/559 flycheck-add-overlay/help-echo-for-nil-message-is-default (0.000422 sec) 170s passed 24/559 flycheck-add-overlay/help-echo-is-error-message (0.000413 sec) 170s passed 25/559 flycheck-add-overlay/help-echo-stacks-errors (0.000423 sec) 170s passed 26/559 flycheck-add-overlay/help-echo-stacks-errors-region (0.001673 sec) 170s passed 27/559 flycheck-add-overlay/info-category (0.000415 sec) 170s passed 28/559 flycheck-add-overlay/no-error-level (0.000062 sec) 170s skipped 29/559 flycheck-add-overlay/right-position-in-narrowed-buffer (0.107267 sec) 170s passed 30/559 flycheck-add-overlay/undefined-error-level (0.000074 sec) 170s passed 31/559 flycheck-add-overlay/warning-category (0.000426 sec) 170s passed 32/559 flycheck-assert-error-list-p/all-flycheck-errors (0.000040 sec) 170s passed 33/559 flycheck-assert-error-list-p/nil-in-list (0.000073 sec) 170s passed 34/559 flycheck-assert-error-list-p/no-list (0.000066 sec) 170s passed 35/559 flycheck-assert-error-list-p/wrong-type-in-list (0.000068 sec) 170s passed 36/559 flycheck-autoloads-file-p/a-plain-file (0.002215 sec) 170s passed 37/559 flycheck-autoloads-file-p/autoloads-with-backing-file (0.003907 sec) 170s passed 38/559 flycheck-autoloads-file-p/autoloads-without-backing-file (0.000408 sec) 170s passed 39/559 flycheck-autoloads-file-p/ephemeral-buffer (0.000395 sec) 170s passed 40/559 flycheck-bounds-of-things-at-point (0.000801 sec) 170s passed 41/559 flycheck-buffer-automatically/defers-the-test (0.000437 sec) 170s passed 42/559 flycheck-buffer-automatically/does-not-check-with-disabled-mode (0.000400 sec) 170s passed 43/559 flycheck-buffer-deferred/schedules-a-deferred-syntax-check (0.000398 sec) 170s passed 44/559 flycheck-check-syntax-automatically/buffer-switch-check-intermediate-buffers-does-not-cancel-idle-change (0.018860 sec) 170s passed 45/559 flycheck-check-syntax-automatically/defaults-to-all-events (0.000042 sec) 170s passed 46/559 flycheck-check-syntax-automatically/does-not-check-after-buffer-switch-by-default (0.103780 sec) 171s passed 47/559 flycheck-check-syntax-automatically/idle-buffer-switch-cancels-idle-change (1.025301 sec) 171s passed 48/559 flycheck-check-syntax-automatically/idle-buffer-switch-checks-after-buffer-switch (0.104551 sec) 171s passed 49/559 flycheck-check-syntax-automatically/idle-buffer-switch-checks-intermediate-buffers-with-option (0.107863 sec) 172s passed 50/559 flycheck-check-syntax-automatically/idle-buffer-switch-does-not-check-intermediate-buffers-by-default (1.008598 sec) 173s passed 51/559 flycheck-check-syntax-automatically/idle-change-cancels-idle-buffer-switch (1.021386 sec) 174s passed 52/559 flycheck-check-syntax-automatically/idle-change-checks-changed-buffer (1.206141 sec) 175s passed 53/559 flycheck-check-syntax-automatically/idle-change-checks-syntax-after-change (1.005311 sec) 177s passed 54/559 flycheck-check-syntax-automatically/idle-change-does-not-check-before-delay (1.655707 sec) 178s passed 55/559 flycheck-check-syntax-automatically/idle-change-is-disabled (0.555305 sec) 178s passed 56/559 flycheck-check-syntax-automatically/mode-enabled-checks-syntax-after-flycheck-mode (0.004014 sec) 178s passed 57/559 flycheck-check-syntax-automatically/mode-enabled-is-disabled (0.003822 sec) 178s passed 58/559 flycheck-check-syntax-automatically/new-line-checks-syntax-after-new-line (0.003609 sec) 178s passed 59/559 flycheck-check-syntax-automatically/new-line-is-disabled (0.003543 sec) 178s passed 60/559 flycheck-check-syntax-automatically/save-checks-syntax-after-save (0.005012 sec) 178s passed 61/559 flycheck-check-syntax-automatically/save-disabled (0.003779 sec) 178s passed 62/559 flycheck-checker-executable/is-string (0.000710 sec) 178s passed 63/559 flycheck-checker-executable/override-the-executable (0.000695 sec) 178s passed 64/559 flycheck-checker-get/gets-a-property (0.000043 sec) 178s passed 65/559 flycheck-checker-get/modes (0.000812 sec) 178s passed 66/559 flycheck-checker-get/setf (0.000050 sec) 178s passed 67/559 flycheck-checker/disabled-checker-is-not-used (0.004984 sec) 178s passed 68/559 flycheck-checker/unregistered-checker-is-used (0.066588 sec) 178s passed 69/559 flycheck-checker/unusable-checker-causes-an-error (0.000788 sec) 178s passed 70/559 flycheck-checker/usable-checker-is-used (0.066460 sec) 178s passed 71/559 flycheck-checkers/all-declared-checkers-are-registered (0.004980 sec) 178s passed 72/559 flycheck-checkers/all-registered-checkers-are-declared (0.000651 sec) 178s passed 73/559 flycheck-checkers/no-registered-checker-is-disabled (0.000364 sec) 178s passed 74/559 flycheck-checkers/there-are-registered-checkers (0.000038 sec) 178s passed 75/559 flycheck-clean-deferred-check/removes-a-deferred-syntax-check (0.000410 sec) 178s passed 76/559 flycheck-command-argument-p/config-file-with-quoted-variable-symbol (0.000042 sec) 178s passed 77/559 flycheck-command-argument-p/config-file-with-variable-symbol (0.000040 sec) 178s passed 78/559 flycheck-command-argument-p/config-file-without-variable-symbol (0.000040 sec) 178s passed 79/559 flycheck-command-argument-p/eval-with-function-call (0.000039 sec) 178s passed 80/559 flycheck-command-argument-p/eval-with-multiple-forms (0.000038 sec) 178s passed 81/559 flycheck-command-argument-p/eval-with-no-form (0.000039 sec) 178s passed 82/559 flycheck-command-argument-p/eval-with-variable (0.000040 sec) 178s passed 83/559 flycheck-command-argument-p/integer-literal (0.000040 sec) 178s passed 84/559 flycheck-command-argument-p/option-list-with-prepender (0.000037 sec) 178s passed 85/559 flycheck-command-argument-p/option-list-with-prepender-and-filter (0.000041 sec) 178s passed 86/559 flycheck-command-argument-p/option-list-with-quoted-filter-symbol (0.000041 sec) 178s passed 87/559 flycheck-command-argument-p/option-list-with-quoted-prepender-symbol (0.000039 sec) 178s passed 88/559 flycheck-command-argument-p/option-list-with-quoted-variable-symbol (0.000038 sec) 178s passed 89/559 flycheck-command-argument-p/option-list-without-filter-and-prepender (0.000038 sec) 178s passed 90/559 flycheck-command-argument-p/option-list-without-variable-symbol (0.000039 sec) 178s passed 91/559 flycheck-command-argument-p/option-with-filter (0.000038 sec) 178s passed 92/559 flycheck-command-argument-p/option-with-quoted-filter-symbol (0.000038 sec) 178s passed 93/559 flycheck-command-argument-p/option-with-quoted-variable-symbol (0.000034 sec) 178s passed 94/559 flycheck-command-argument-p/option-without-filter (0.000035 sec) 178s passed 95/559 flycheck-command-argument-p/option-without-variable (0.000036 sec) 178s passed 96/559 flycheck-command-argument-p/unknown-argument-cell (0.000038 sec) 178s passed 97/559 flycheck-command-argument-p/unknown-argument-symbol (0.000034 sec) 178s passed 98/559 flycheck-command-argument-p/with-symbols (0.000051 sec) 178s 1st message 178s 2nd message 178s foo 178s 1st message 178s 2nd message [foo] 178s passed 99/559 flycheck-copy-errors-as-kill (0.000544 sec) 178s passed 100/559 flycheck-d-base-directory/no-module-declaration (0.004668 sec) 178s passed 101/559 flycheck-d-base-directory/package-file (0.004552 sec) 178s passed 102/559 flycheck-d-base-directory/with-module-declaration (0.004569 sec) 178s passed 103/559 flycheck-d-module-re/matches-module-name (0.000053 sec) 178s passed 104/559 flycheck-deferred-check-p/nil (0.000038 sec) 178s passed 105/559 flycheck-deferred-check-p/truthy (0.000037 sec) 178s skipped 106/559 flycheck-define-checker/ada-gnat/syntax-error (0.000238 sec) 178s skipped 107/559 flycheck-define-checker/ada-gnat/warnings (0.000164 sec) 178s skipped 108/559 flycheck-define-checker/asciidoc/default (0.000175 sec) 178s skipped 109/559 flycheck-define-checker/asciidoctor/default (0.000179 sec) 178s Test flycheck-define-checker/awk-gawk/syntax-error backtrace: 178s signal(ert-test-failed (((should (equal (mapcar #'flycheck-error-without-group expected) (mapcar #'flycheck-error-without-group current))) :form (equal (#s(flycheck-error :buffer # :checker awk-gawk :filename "/tmp/autopkgtest.MfZFqe/build.284/src/test/resourc..." :line 2 :column nil :message "x=|\n ^ syntax error" :level warning :id nil :group nil :-end-line nil :-end-column nil)) nil) :value nil :explanation (different-types (#s(flycheck-error :buffer # :checker awk-gawk :filename "/tmp/autopkgtest.MfZFqe/build.284/src/test/resourc..." :line 2 :column nil :message "x=|\n ^ syntax error" :level warning :id nil :group nil :-end-line nil :-end-column nil)) nil)))) 178s ert-fail(((should (equal (mapcar #'flycheck-error-without-group expected) (mapcar #'flycheck-error-without-group current))) :form (equal (#s(flycheck-error :buffer # :checker awk-gawk :filename "/tmp/autopkgtest.MfZFqe/build.284/src/test/resourc..." :line 2 :column nil :message "x=|\n ^ syntax error" :level warning :id nil :group nil :-end-line nil :-end-column nil)) nil) :value nil :explanation (different-types (#s(flycheck-error :buffer # :checker awk-gawk :filename "/tmp/autopkgtest.MfZFqe/build.284/src/test/resourc..." :line 2 :column nil :message "x=|\n ^ syntax error" :level warning :id nil :group nil :-end-line nil :-end-column nil)) nil))) 178s (if (unwind-protect (setq value-66 (apply fn-64 args-65)) (setq form-description-68 (nconc (list '(should (equal ... ...))) (list :form (cons fn-64 args-65)) (if (eql value-66 'ert-form-evaluation-aborted-67) nil (list :value value-66)) (if (eql value-66 'ert-form-evaluation-aborted-67) nil (let* ((-explainer- ...)) (if -explainer- (list :explanation ...) nil))))) (ert--signal-should-execution form-description-68)) nil (ert-fail form-description-68)) 178s (let (form-description-68) (if (unwind-protect (setq value-66 (apply fn-64 args-65)) (setq form-description-68 (nconc (list '(should ...)) (list :form (cons fn-64 args-65)) (if (eql value-66 'ert-form-evaluation-aborted-67) nil (list :value value-66)) (if (eql value-66 'ert-form-evaluation-aborted-67) nil (let* (...) (if -explainer- ... nil))))) (ert--signal-should-execution form-description-68)) nil (ert-fail form-description-68))) 178s (let ((value-66 'ert-form-evaluation-aborted-67)) (let (form-description-68) (if (unwind-protect (setq value-66 (apply fn-64 args-65)) (setq form-description-68 (nconc (list '...) (list :form (cons fn-64 args-65)) (if (eql value-66 ...) nil (list :value value-66)) (if (eql value-66 ...) nil (let* ... ...)))) (ert--signal-should-execution form-description-68)) nil (ert-fail form-description-68))) value-66) 178s (let* ((fn-64 #'equal) (args-65 (condition-case err (let ((signal-hook-function #'ert--should-signal-hook)) (list (mapcar #'flycheck-error-without-group expected) (mapcar #'flycheck-error-without-group current))) (error (progn (setq fn-64 #'signal) (list (car err) (cdr err))))))) (let ((value-66 'ert-form-evaluation-aborted-67)) (let (form-description-68) (if (unwind-protect (setq value-66 (apply fn-64 args-65)) (setq form-description-68 (nconc (list ...) (list :form ...) (if ... nil ...) (if ... nil ...))) (ert--signal-should-execution form-description-68)) nil (ert-fail form-description-68))) value-66)) 178s (let ((expected (flycheck-ert-sort-errors (mapcar (apply-partially #'apply #'flycheck-error-new-at) errors))) (current (flycheck-ert-sort-errors flycheck-current-errors))) (let* ((fn-64 #'equal) (args-65 (condition-case err (let ((signal-hook-function ...)) (list (mapcar ... expected) (mapcar ... current))) (error (progn (setq fn-64 ...) (list ... ...)))))) (let ((value-66 'ert-form-evaluation-aborted-67)) (let (form-description-68) (if (unwind-protect (setq value-66 (apply fn-64 args-65)) (setq form-description-68 (nconc ... ... ... ...)) (ert--signal-should-execution form-description-68)) nil (ert-fail form-description-68))) value-66)) (cl-mapcar #'(lambda (err1 err2) (let* ((fn-69 #'equal) (args-70 (condition-case err ... ...))) (let ((value-71 ...)) (let (form-description-73) (if ... nil ...)) value-71))) expected current) (mapc #'flycheck-ert-should-overlay expected)) 178s flycheck-ert-should-errors((2 nil warning "x=|\n ^ syntax error" :checker awk-gawk)) 178s apply(flycheck-ert-should-errors (2 nil warning "x=|\n ^ syntax error" :checker awk-gawk)) 178s (let ((process-hook-called 0) (suspicious nil)) (add-hook 'flycheck-process-error-functions #'(lambda (_err) (setq process-hook-called (1+ process-hook-called)) nil) nil :local) (add-hook 'flycheck-status-changed-functions #'(lambda (status) (if (eq status 'suspicious) (progn (setq suspicious t)))) nil :local) (flycheck-ert-buffer-sync) (if suspicious (progn (signal 'flycheck-ert-suspicious-checker nil))) (apply #'flycheck-ert-should-errors errors) (let* ((fn-79 #'=) (args-80 (condition-case err (let ((signal-hook-function ...)) (list process-hook-called (length errors))) (error (progn (setq fn-79 ...) (list ... ...)))))) (let ((value-81 'ert-form-evaluation-aborted-82)) (let (form-description-83) (if (unwind-protect (setq value-81 (apply fn-79 args-80)) (setq form-description-83 (nconc ... ... ... ...)) (ert--signal-should-execution form-description-83)) nil (ert-fail form-description-83))) value-81))) 178s flycheck-ert-should-syntax-check-in-buffer((2 nil warning "x=|\n ^ syntax error" :checker awk-gawk)) 178s apply(flycheck-ert-should-syntax-check-in-buffer (2 nil warning "x=|\n ^ syntax error" :checker awk-gawk)) 178s (progn (insert-file-contents file-name 'visit) (set-visited-file-name file-name 'no-query) (cd (file-name-directory file-name)) (set-buffer-modified-p nil) (funcall mode) (apply #'flycheck-ert-should-syntax-check-in-buffer errors)) 178s (unwind-protect (progn (insert-file-contents file-name 'visit) (set-visited-file-name file-name 'no-query) (cd (file-name-directory file-name)) (set-buffer-modified-p nil) (funcall mode) (apply #'flycheck-ert-should-syntax-check-in-buffer errors)) (set-buffer-modified-p nil) (set-visited-file-name nil 'no-query)) 178s (progn (unwind-protect (progn (insert-file-contents file-name 'visit) (set-visited-file-name file-name 'no-query) (cd (file-name-directory file-name)) (set-buffer-modified-p nil) (funcall mode) (apply #'flycheck-ert-should-syntax-check-in-buffer errors)) (set-buffer-modified-p nil) (set-visited-file-name nil 'no-query))) 178s (unwind-protect (progn (unwind-protect (progn (insert-file-contents file-name 'visit) (set-visited-file-name file-name 'no-query) (cd (file-name-directory file-name)) (set-buffer-modified-p nil) (funcall mode) (apply #'flycheck-ert-should-syntax-check-in-buffer errors)) (set-buffer-modified-p nil) (set-visited-file-name nil 'no-query))) (and (buffer-name temp-buffer) (kill-buffer temp-buffer))) 178s (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (unwind-protect (progn (insert-file-contents file-name 'visit) (set-visited-file-name file-name 'no-query) (cd (file-name-directory file-name)) (set-buffer-modified-p nil) (funcall mode) (apply #'flycheck-ert-should-syntax-check-in-buffer errors)) (set-buffer-modified-p nil) (set-visited-file-name nil 'no-query))) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))) 178s (let ((temp-buffer (generate-new-buffer " *temp*" t))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (unwind-protect (progn (insert-file-contents file-name 'visit) (set-visited-file-name file-name 'no-query) (cd (file-name-directory file-name)) (set-buffer-modified-p nil) (funcall mode) (apply #'flycheck-ert-should-syntax-check-in-buffer errors)) (set-buffer-modified-p nil) (set-visited-file-name nil 'no-query))) (and (buffer-name temp-buffer) (kill-buffer temp-buffer))))) 178s (let ((file-name (flycheck-ert-resource-filename resource-file))) (if (file-exists-p file-name) nil (error "%s does not exist" file-name)) (let ((temp-buffer (generate-new-buffer " *temp*" t))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (unwind-protect (progn (insert-file-contents file-name ...) (set-visited-file-name file-name ...) (cd ...) (set-buffer-modified-p nil) (funcall mode) (apply ... errors)) (set-buffer-modified-p nil) (set-visited-file-name nil 'no-query))) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))) 178s (let ((mode (car tail))) (if (fboundp mode) nil (ert-skip (format "%S missing" mode))) (let ((file-name (flycheck-ert-resource-filename resource-file))) (if (file-exists-p file-name) nil (error "%s does not exist" file-name)) (let ((temp-buffer (generate-new-buffer " *temp*" t))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (unwind-protect (progn ... ... ... ... ... ...) (set-buffer-modified-p nil) (set-visited-file-name nil ...))) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))) (setq tail (cdr tail))) 178s (while tail (let ((mode (car tail))) (if (fboundp mode) nil (ert-skip (format "%S missing" mode))) (let ((file-name (flycheck-ert-resource-filename resource-file))) (if (file-exists-p file-name) nil (error "%s does not exist" file-name)) (let ((temp-buffer (generate-new-buffer " *temp*" t))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn (unwind-protect ... ... ...)) (and (buffer-name temp-buffer) (kill-buffer temp-buffer)))))) (setq tail (cdr tail)))) 178s (let ((tail modes)) (while tail (let ((mode (car tail))) (if (fboundp mode) nil (ert-skip (format "%S missing" mode))) (let ((file-name (flycheck-ert-resource-filename resource-file))) (if (file-exists-p file-name) nil (error "%s does not exist" file-name)) (let ((temp-buffer (generate-new-buffer " *temp*" t))) (save-current-buffer (set-buffer temp-buffer) (unwind-protect (progn ...) (and ... ...))))) (setq tail (cdr tail))))) 178s flycheck-ert-should-syntax-check("language/awk/syntax-error.awk" awk-mode (2 nil warning "x=|\n ^ syntax error" :checker awk-gawk)) 178s (closure (truncated-stdin-mode-abbrev-table truncated-stdin-mode-syntax-table flycheck-test-option-var flycheck-test-config-var t) nil (let ((value-3313 (gensym "ert-form-evaluation-aborted-"))) (let (form-description-3314) (if (condition-case nil (progn (unwind-protect (setq value-3313 ...) (setq form-description-3314 ...) (ert--signal-should-execution form-description-3314))) (error nil)) nil (ert-skip form-description-3314))) value-3313) (flycheck-ert-should-syntax-check "language/awk/syntax-error.awk" 'awk-mode '(2 nil warning "x=|\n ^ syntax error" :checker awk-gawk)))() 178s ert--run-test-internal(#s(ert--test-execution-info :test #s(ert-test :name flycheck-define-checker/awk-gawk/syntax-error :documentation nil :body ... :most-recent-result ... :expected-result-type :passed :tags ... :file-name "/tmp/autopkgtest.MfZ...") :result #s(ert-test-failed :messages "" :should-forms ... :duration 0.077679631 :condition ... :backtrace ... :infos nil) :exit-continuation #f(compiled-function () #) :next-debugger debug :ert-debug-on-error nil)) 178s ert-run-test(#s(ert-test :name flycheck-define-checker/awk-gawk/syntax-error :documentation nil :body (closure (truncated-stdin-mode-abbrev-table truncated-stdin-mode-syntax-table flycheck-test-option-var flycheck-test-config-var t) nil (let (...) (let ... ...) value-3313) (flycheck-ert-should-syntax-check "language/awk/syntax-error.awk" 'awk-mode '...)) :most-recent-result #s(ert-test-failed :messages "" :should-forms ((... :form ... :value "/usr/bin/gawk") (... :form ... :value t) (... :form ... :value awk-gawk) (... :form ... :value ...) (... :form ... :value nil) (... :form ... :value nil :explanation ...)) :duration 0.077679631 :condition (ert-test-failed (... :form ... :value nil :explanation ...)) :backtrace (#s(backtrace-frame :evald t :fun signal :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert-fail :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun if :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let* :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun flycheck-ert-should-errors :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun apply :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun flycheck-ert-should-syntax-check-in-buffer :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun apply :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun progn :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun unwind-protect :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun progn :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun unwind-protect :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun save-current-buffer :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun while :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun flycheck-ert-should-syntax-check :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ... :args nil :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert--run-test-internal :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert-run-test :args #0 :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert-run-or-rerun-test :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert-run-tests :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert-run-tests-batch :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald t :fun ert-run-tests-batch-and-exit :args ... :flags nil :locals nil :buffer nil :pos nil) #s(backtrace-frame :evald nil :fun let :args ... :flags nil :locals ... :buffer nil :pos nil) #s(backtrace-frame :evald t :fun flycheck-run-tests-batch-and-exit :args nil :flags nil :locals nil :buffer nil :pos nil) ...) :infos nil) :expected-result-type :passed :tags (syntax-checker external-tool language-awk checker-awk-gawk) :file-name "/tmp/autopkgtest.MfZFqe/build.28...")) 178s ert-run-or-rerun-test(#s(ert--stats :selector ... :tests ... :test-map # :test-results ... :test-start-times ... :test-end-times ... :passed-expected 104 :passed-unexpected 0 :failed-expected 0 :failed-unexpected 1 :skipped 5 :start-time ... :end-time nil :aborted-p nil ...) #s(ert-test :name flycheck-define-checker/awk-gawk/syntax-error :documentation nil :body ... :most-recent-result ... :expected-result-type :passed :tags ... :file-name "/tmp/autopkgte...") #f(compiled-function (event-type &rest event-args) #)) 178s ert-run-tests((and "flycheck-" t) #f(compiled-function (event-type &rest event-args) #) nil) 178s ert-run-tests-batch((and "flycheck-" t)) 178s ert-run-tests-batch-and-exit((and "flycheck-" t)) 178s (let ((selector (car-safe (prog1 argv (setq argv (cdr argv)))))) (if argv (progn (message "WARNING: Unused trailing arguments: %S" argv) (setq argv nil))) (setq selector (list 'and "flycheck-" (cond ((not selector) t) ((= (length selector) 0) (message "Warning: Empty test selector, defaulting to t") t) (t (condition-case nil (flycheck-read-whole-string selector) (error (flycheck-run-check-selector selector) (kill-emacs 1))))))) (flycheck-run-unlimit-ert-pretty-printer) (ert-run-tests-batch-and-exit (flycheck-transform-selector selector))) 178s flycheck-run-tests-batch-and-exit() 178s (let ((debug-on-error t)) (flycheck-run-tests-batch-and-exit)) 178s (let* ((load-prefer-newer t) (source-directory (locate-dominating-file flycheck-runner-file "Eask")) (pkg-rel-dir (format ".cask/%s.%S/elpa" emacs-major-version emacs-minor-version))) (setenv "LC_ALL" "C") (setq package-user-dir (expand-file-name pkg-rel-dir source-directory)) (package-initialize) (message "Running tests on Emacs %s, built at %s" emacs-version (format-time-string "%F" emacs-build-time)) (let ((debug-on-error t)) (flycheck-run-tests-batch-and-exit))) 178s flycheck-run-tests-main() 178s eval-buffer(# nil "/tmp/autopkgtest.MfZFqe/build.284/src/debian/ert-h..." nil t) ; Reading at buffer position 52 178s load-with-code-conversion("/tmp/autopkgtest.MfZFqe/build.284/src/debian/ert-h..." "/tmp/autopkgtest.MfZFqe/build.284/src/debian/ert-h..." nil t) 178s load("/tmp/autopkgtest.MfZFqe/build.284/src/debian/ert-h..." nil t) 178s command-line-1(("-l" "package" "--eval" "(add-to-list 'package-directory-list \"/usr/share/e..." "--eval" "(add-to-list 'package-directory-list \"/usr/share/e..." "--eval" "(setq ert-batch-backtrace-right-margin nil)" "-f" "package-initialize" "-L" "." "-L" "test" "-l" "flycheck-ert.el" "-l" "test/flycheck-test.el" "-l" "debian/ert-helper.el")) 178s command-line() 178s normal-top-level() 178s 178s Test flycheck-define-checker/awk-gawk/syntax-error condition: 178s (ert-test-failed 178s ((should 178s (equal 178s (mapcar #'flycheck-error-without-group expected) 178s (mapcar #'flycheck-error-without-group current))) 178s :form 178s (equal 178s (#s(flycheck-error # awk-gawk "/tmp/autopkgtest.MfZFqe/build.284/src/test/resources/language/awk/syntax-error.awk" 2 nil "x=|\n ^ syntax error" warning nil nil nil nil)) 178s nil) 178s :value nil :explanation 178s (different-types 178s (#s(flycheck-error # awk-gawk "/tmp/autopkgtest.MfZFqe/build.284/src/test/resources/language/awk/syntax-error.awk" 2 nil "x=|\n ^ syntax error" warning nil nil nil nil)) 178s nil))) 178s FAILED 110/559 flycheck-define-checker/awk-gawk/syntax-error (0.077680 sec) at test/flycheck-test.el:1 178s skipped 111/559 flycheck-define-checker/bazel-build-buildifier/default (0.000274 sec) 178s skipped 112/559 flycheck-define-checker/bazel-build-buildifier/error (0.000164 sec) 178s skipped 113/559 flycheck-define-checker/bazel-module-buildifier/default (0.000164 sec) 178s skipped 114/559 flycheck-define-checker/bazel-module-buildifier/error (0.000162 sec) 178s skipped 115/559 flycheck-define-checker/bazel-starlark-buildifier/default (0.000162 sec) 178s skipped 116/559 flycheck-define-checker/bazel-starlark-buildifier/error (0.000163 sec) 178s skipped 117/559 flycheck-define-checker/bazel-workspace-buildifier/default (0.000161 sec) 178s skipped 118/559 flycheck-define-checker/bazel-workspace-buildifier/error (0.000160 sec) 178s skipped 119/559 flycheck-define-checker/c/c++-clang/error (0.000171 sec) 178s skipped 120/559 flycheck-define-checker/c/c++-clang/fatal-error (0.000158 sec) 178s skipped 121/559 flycheck-define-checker/c/c++-clang/included-file-warning (0.000164 sec) 178s skipped 122/559 flycheck-define-checker/c/c++-clang/warnings (0.000162 sec) 178s skipped 123/559 flycheck-define-checker/c/c++-cppcheck/default (0.000182 sec) 178s skipped 124/559 flycheck-define-checker/c/c++-gcc/error (0.000149 sec) 178s passed 125/559 flycheck-define-checker/c/c++-gcc/fatal-error (0.027591 sec) 178s passed 126/559 flycheck-define-checker/c/c++-gcc/included-file-warning (0.029489 sec) 178s passed 127/559 flycheck-define-checker/c/c++-gcc/warning (0.027370 sec) 178s skipped 128/559 flycheck-define-checker/cfengine/error (0.000213 sec) 178s skipped 129/559 flycheck-define-checker/cfengine/warning (0.000168 sec) 178s skipped 130/559 flycheck-define-checker/coffee-coffeelint/error (0.000184 sec) 178s skipped 131/559 flycheck-define-checker/coffee-coffeelint/warning (0.000165 sec) 178s skipped 132/559 flycheck-define-checker/coffee/syntax-error (0.000171 sec) 178s skipped 133/559 flycheck-define-checker/css-csslint/default (0.000173 sec) 178s skipped 134/559 flycheck-define-checker/css-csslint/syntax-error (0.000162 sec) 178s skipped 135/559 flycheck-define-checker/cuda/syntax-error (0.000121 sec) 178s skipped 136/559 flycheck-define-checker/cuda/syntax-warning (0.000121 sec) 178s skipped 137/559 flycheck-define-checker/cwl/syntax-error (0.000181 sec) 178s skipped 138/559 flycheck-define-checker/d-dmd/continuation-line (0.000174 sec) 178s skipped 139/559 flycheck-define-checker/d-dmd/missing-import (0.000159 sec) 178s skipped 140/559 flycheck-define-checker/d-dmd/non-d-extension (0.000162 sec) 178s skipped 141/559 flycheck-define-checker/d-dmd/warning-include-path (0.000159 sec) 178s skipped 142/559 flycheck-define-checker/dockerfile-hadolint/error (0.000174 sec) 178s skipped 143/559 flycheck-define-checker/dockerfile-hadolint/warnings (0.000165 sec) 178s skipped 144/559 flycheck-define-checker/elixir-credo/infos-with-strict-mode (0.000174 sec) 178s skipped 145/559 flycheck-define-checker/elixir-credo/infos-without-strict-mode (0.000163 sec) 178s skipped 146/559 flycheck-define-checker/elixir-credo/warnings (0.000158 sec) 178s passed 147/559 flycheck-define-checker/emacs-lisp-checkdoc/inherits-checkdoc-variables (0.108572 sec) 178s skipped 148/559 flycheck-define-checker/emacs-lisp/check-declare-warnings (0.000150 sec) 178s skipped 149/559 flycheck-define-checker/emacs-lisp/checkdoc-does-not-check-cask-files (0.000135 sec) 178s skipped 150/559 flycheck-define-checker/emacs-lisp/checks-compressed-file (0.000130 sec) 178s skipped 151/559 flycheck-define-checker/emacs-lisp/default (0.000130 sec) 179s passed 152/559 flycheck-define-checker/emacs-lisp/disable-check-declare (0.087969 sec) 179s passed 153/559 flycheck-define-checker/emacs-lisp/does-not-check-autoloads-buffers (0.004046 sec) 179s passed 154/559 flycheck-define-checker/emacs-lisp/does-not-check-with-no-byte-compile (0.066920 sec) 179s skipped 155/559 flycheck-define-checker/emacs-lisp/syntax-error (0.000142 sec) 179s passed 156/559 flycheck-define-checker/emacs-lisp/uses-right-major-mode (0.088090 sec) 179s passed 157/559 flycheck-define-checker/emacs-lisp/without-file-name (0.107489 sec) 179s skipped 158/559 flycheck-define-checker/ember-template/error (0.000225 sec) 179s skipped 159/559 flycheck-define-checker/ember-template/warning (0.000173 sec) 179s skipped 160/559 flycheck-define-checker/erlang-rebar3/build (0.000179 sec) 179s skipped 161/559 flycheck-define-checker/erlang-rebar3/error (0.000165 sec) 179s skipped 162/559 flycheck-define-checker/erlang/error (0.000175 sec) 179s skipped 163/559 flycheck-define-checker/erlang/warning (0.000165 sec) 179s skipped 164/559 flycheck-define-checker/eruby-erubis/default (0.000175 sec) 179s skipped 165/559 flycheck-define-checker/eruby-ruumba/syntax-error (0.000176 sec) 179s skipped 166/559 flycheck-define-checker/fortran-gfortran/error (0.000180 sec) 179s skipped 167/559 flycheck-define-checker/fortran-gfortran/free-form-error (0.000164 sec) 179s skipped 168/559 flycheck-define-checker/fortran-gfortran/warning (0.000165 sec) 179s skipped 169/559 flycheck-define-checker/go-build/complete-chain (0.000173 sec) 179s skipped 170/559 flycheck-define-checker/go-build/handles-packages (0.000161 sec) 179s skipped 171/559 flycheck-define-checker/go-build/missing-package (0.000162 sec) 179s skipped 172/559 flycheck-define-checker/go-errcheck/default (0.000177 sec) 179s skipped 173/559 flycheck-define-checker/go-gofmt/syntax-error (0.000179 sec) 179s skipped 174/559 flycheck-define-checker/go-staticcheck/default (0.000178 sec) 179s skipped 175/559 flycheck-define-checker/go-test/default (0.000163 sec) 179s skipped 176/559 flycheck-define-checker/go-unconvert/default (0.000177 sec) 179s skipped 177/559 flycheck-define-checker/groovy/syntax-error (0.000179 sec) 179s skipped 178/559 flycheck-define-checker/haml/haml-error (0.000181 sec) 179s skipped 179/559 flycheck-define-checker/haml/ruby-error (0.000166 sec) 179s skipped 180/559 flycheck-define-checker/handlebars/default (0.000175 sec) 179s skipped 181/559 flycheck-define-checker/haskell-ghc/complete-chain (0.000180 sec) 179s skipped 182/559 flycheck-define-checker/haskell-ghc/literate (0.000163 sec) 179s skipped 183/559 flycheck-define-checker/haskell-ghc/syntax-error (0.000174 sec) 179s skipped 184/559 flycheck-define-checker/haskell-ghc/type-error (0.000160 sec) 179s skipped 185/559 flycheck-define-checker/haskell-stack-ghc/complete-chain (0.000179 sec) 179s skipped 186/559 flycheck-define-checker/haskell-stack-ghc/literate (0.000166 sec) 179s skipped 187/559 flycheck-define-checker/haskell-stack-ghc/nonstandard-stack-yaml-file (0.000167 sec) 179s skipped 188/559 flycheck-define-checker/haskell-stack-ghc/syntax-error (0.000167 sec) 179s skipped 189/559 flycheck-define-checker/haskell-stack-ghc/type-error (0.000161 sec) 179s skipped 190/559 flycheck-define-checker/html-tidy/default (0.000175 sec) 179s skipped 191/559 flycheck-define-checker/javascript-eslint/error (0.000182 sec) 179s skipped 192/559 flycheck-define-checker/javascript-eslint/warning (0.000166 sec) 179s skipped 193/559 flycheck-define-checker/javascript-jshint/default (0.000182 sec) 179s skipped 194/559 flycheck-define-checker/javascript-jshint/syntax-error (0.000164 sec) 179s skipped 195/559 flycheck-define-checker/javascript-standard/error (0.000176 sec) 179s skipped 196/559 flycheck-define-checker/javascript-standard/semistandard (0.000172 sec) 179s skipped 197/559 flycheck-define-checker/json-jq/default (0.000162 sec) 179s skipped 198/559 flycheck-define-checker/json-jsonlint/default (0.000187 sec) 179s skipped 199/559 flycheck-define-checker/json-python-json/default (0.000151 sec) 179s skipped 200/559 flycheck-define-checker/jsonnet-runtime/default (0.000125 sec) 179s skipped 201/559 flycheck-define-checker/jsonnet-static/default (0.000128 sec) 179s skipped 202/559 flycheck-define-checker/less/file-error (0.000176 sec) 179s skipped 203/559 flycheck-define-checker/less/syntax-error (0.000169 sec) 179s skipped 204/559 flycheck-define-checker/llvm-llc/default (0.000177 sec) 179s skipped 205/559 flycheck-define-checker/lua-luacheck/custom-luacheckrc (0.000180 sec) 179s skipped 206/559 flycheck-define-checker/lua-luacheck/custom-standards (0.000172 sec) 179s skipped 207/559 flycheck-define-checker/lua-luacheck/syntax-error (0.000164 sec) 179s skipped 208/559 flycheck-define-checker/lua-luacheck/warnings (0.000172 sec) 179s skipped 209/559 flycheck-define-checker/lua/default (0.000171 sec) 179s skipped 210/559 flycheck-define-checker/markdown-markdownlint-cli/default (0.000176 sec) 179s skipped 211/559 flycheck-define-checker/markdown-mdl/default (0.000189 sec) 179s skipped 212/559 flycheck-define-checker/markdown-pymarkdown/default (0.000178 sec) 179s skipped 213/559 flycheck-define-checker/nix-linter/default (0.000183 sec) 179s skipped 214/559 flycheck-define-checker/nix/default (0.000177 sec) 179s skipped 215/559 flycheck-define-checker/opam/default (0.000166 sec) 179s skipped 216/559 flycheck-define-checker/perl/default (0.000208 sec) 179s passed 217/559 flycheck-define-checker/perl/modules (0.194993 sec) 179s skipped 218/559 flycheck-define-checker/php/default (0.000236 sec) 179s skipped 219/559 flycheck-define-checker/php/syntax-error (0.000173 sec) 179s skipped 220/559 flycheck-define-checker/processing/syntax-error (0.000187 sec) 179s skipped 221/559 flycheck-define-checker/proselint/default (0.000185 sec) 179s skipped 222/559 flycheck-define-checker/protobuf-protoc/syntax-error (0.000189 sec) 179s skipped 223/559 flycheck-define-checker/protobuf-prototool/warnings (0.000181 sec) 179s skipped 224/559 flycheck-define-checker/pug/include-extends-error (0.000174 sec) 179s skipped 225/559 flycheck-define-checker/pug/non-block-or-mixin-at-top-level-of-extended-template-error (0.000167 sec) 179s skipped 226/559 flycheck-define-checker/pug/syntax-error (0.000167 sec) 179s skipped 227/559 flycheck-define-checker/pug/type-error (0.000166 sec) 179s skipped 228/559 flycheck-define-checker/pug/unknown-filter (0.000163 sec) 179s skipped 229/559 flycheck-define-checker/puppet-lint/default (0.000186 sec) 179s skipped 230/559 flycheck-define-checker/puppet-parser/parser-error-puppet-3 (0.000177 sec) 179s skipped 231/559 flycheck-define-checker/puppet-parser/parser-error-puppet-4 (0.000166 sec) 179s skipped 232/559 flycheck-define-checker/python-flake8/default (0.000140 sec) 179s skipped 233/559 flycheck-define-checker/python-flake8/syntax-error (0.000131 sec) 179s skipped 234/559 flycheck-define-checker/python-mypy/default (0.000174 sec) 179s passed 235/559 flycheck-define-checker/python-pycompile/has-no-warnings (0.065216 sec) 179s skipped 236/559 flycheck-define-checker/python-pycompile/python27 (0.000246 sec) 179s skipped 237/559 flycheck-define-checker/python-pylint/default (0.000138 sec) 179s skipped 238/559 flycheck-define-checker/python-pylint/negative-columns (0.000137 sec) 179s skipped 239/559 flycheck-define-checker/python-pylint/no-symbolic-id (0.000137 sec) 179s skipped 240/559 flycheck-define-checker/python-pyright/default (0.000191 sec) 179s skipped 241/559 flycheck-define-checker/r-lintr/default (0.000175 sec) 179s skipped 242/559 flycheck-define-checker/racket/default (0.000188 sec) 179s skipped 243/559 flycheck-define-checker/rpm-rpmlint/default (0.000198 sec) 179s skipped 244/559 flycheck-define-checker/rst-sphinx/default (0.000146 sec) 179s passed 245/559 flycheck-define-checker/rst-sphinx/not-outside-of-a-sphinx-project (0.013657 sec) 179s skipped 246/559 flycheck-define-checker/rst/default (0.000217 sec) 179s skipped 247/559 flycheck-define-checker/ruby-jruby/default (0.000183 sec) 179s skipped 248/559 flycheck-define-checker/ruby-jruby/syntax-error (0.000174 sec) 179s skipped 249/559 flycheck-define-checker/ruby-reek/warnings (0.000178 sec) 179s skipped 250/559 flycheck-define-checker/ruby-rubocop/syntax-error (0.000189 sec) 179s skipped 251/559 flycheck-define-checker/ruby-rubocop/warnings (0.000171 sec) 179s skipped 252/559 flycheck-define-checker/ruby-standard/syntax-error (0.000185 sec) 179s skipped 253/559 flycheck-define-checker/ruby/syntax-error (0.000180 sec) 179s skipped 254/559 flycheck-define-checker/ruby/warnings (0.000174 sec) 179s skipped 255/559 flycheck-define-checker/rust-cargo/conventional-layout (0.000184 sec) 179s skipped 256/559 flycheck-define-checker/rust-cargo/default-target (0.000172 sec) 179s skipped 257/559 flycheck-define-checker/rust-cargo/dev-dependencies (0.000178 sec) 179s skipped 258/559 flycheck-define-checker/rust-cargo/lib-main (0.000186 sec) 179s skipped 259/559 flycheck-define-checker/rust-cargo/warning (0.000177 sec) 179s skipped 260/559 flycheck-define-checker/rust-cargo/workspace-subcrate (0.000173 sec) 179s skipped 261/559 flycheck-define-checker/rust/crate-root-not-set (0.000181 sec) 179s skipped 262/559 flycheck-define-checker/rust/macro-error (0.000175 sec) 179s skipped 263/559 flycheck-define-checker/rust/note-and-help (0.000174 sec) 179s skipped 264/559 flycheck-define-checker/rust/syntax-error (0.000174 sec) 179s skipped 265/559 flycheck-define-checker/rust/type-error (0.000176 sec) 179s skipped 266/559 flycheck-define-checker/rust/warning (0.000174 sec) 179s skipped 267/559 flycheck-define-checker/sass/default (0.000183 sec) 179s skipped 268/559 flycheck-define-checker/sass/warning (0.000173 sec) 179s skipped 269/559 flycheck-define-checker/scala-scalastyle/error (0.000191 sec) 179s skipped 270/559 flycheck-define-checker/scala-scalastyle/warning (0.000179 sec) 179s skipped 271/559 flycheck-define-checker/scala/default (0.000183 sec) 179s skipped 272/559 flycheck-define-checker/scheme-chicken/error-no-line-number (0.000182 sec) 179s skipped 273/559 flycheck-define-checker/scheme-chicken/syntax-error (0.000175 sec) 179s skipped 274/559 flycheck-define-checker/scheme-chicken/syntax-error-no-line-number (0.000173 sec) 179s skipped 275/559 flycheck-define-checker/scheme-chicken/syntax-read-error (0.000172 sec) 179s skipped 276/559 flycheck-define-checker/scss-lint/default (0.000191 sec) 179s skipped 277/559 flycheck-define-checker/scss-lint/syntax-error (0.000177 sec) 179s skipped 278/559 flycheck-define-checker/scss/default (0.000186 sec) 179s skipped 279/559 flycheck-define-checker/scss/warning (0.000177 sec) 179s passed 280/559 flycheck-define-checker/sh-bash/default (0.033689 sec) 179s skipped 281/559 flycheck-define-checker/sh-posix-bash/default (0.000174 sec) 179s passed 282/559 flycheck-define-checker/sh-posix-dash/default (0.026413 sec) 179s skipped 283/559 flycheck-define-checker/sh-shellcheck/default (0.000223 sec) 179s skipped 284/559 flycheck-define-checker/sh-zsh/default (0.000195 sec) 179s skipped 285/559 flycheck-define-checker/slim/default (0.000200 sec) 179s skipped 286/559 flycheck-define-checker/sqlint/default (0.000120 sec) 179s skipped 287/559 flycheck-define-checker/systemd-analyze/default (0.000180 sec) 179s skipped 288/559 flycheck-define-checker/tcl-nagelfar/default (0.000191 sec) 179s skipped 289/559 flycheck-define-checker/terraform-tflint/default (0.000192 sec) 179s skipped 290/559 flycheck-define-checker/terraform/default (0.000191 sec) 179s skipped 291/559 flycheck-define-checker/tex-chktex/default (0.000193 sec) 179s skipped 292/559 flycheck-define-checker/tex-lacheck/default (0.000188 sec) 179s skipped 293/559 flycheck-define-checker/texinfo/default (0.000189 sec) 179s skipped 294/559 flycheck-define-checker/textlint/default (0.000190 sec) 179s skipped 295/559 flycheck-define-checker/typescript-tslint/default (0.000191 sec) 179s skipped 296/559 flycheck-define-checker/verilog-verilator/error (0.000194 sec) 179s skipped 297/559 flycheck-define-checker/verilog-verilator/warning (0.000177 sec) 179s skipped 298/559 flycheck-define-checker/vhdl-ghdl/error (0.000185 sec) 179s skipped 299/559 flycheck-define-checker/xml-xmllint/default (0.000195 sec) 179s skipped 300/559 flycheck-define-checker/xml-xmlstarlet/default (0.000192 sec) 179s skipped 301/559 flycheck-define-checker/yaml-jsyaml/default (0.000190 sec) 179s skipped 302/559 flycheck-define-checker/yaml-ruby/default (0.000178 sec) 179s skipped 303/559 flycheck-define-checker/yaml-yamllint/default (0.000190 sec) 179s passed 304/559 flycheck-define-error-level/has-error-list-face (0.000046 sec) 179s passed 305/559 flycheck-define-error-level/has-fringe-bitmap (0.000046 sec) 179s passed 306/559 flycheck-define-error-level/has-fringe-face (0.000044 sec) 179s passed 307/559 flycheck-define-error-level/has-overlay-category (0.000045 sec) 179s passed 308/559 flycheck-define-error-level/has-severity (0.000043 sec) 179s passed 309/559 flycheck-define-error-level/is-error-level? (0.000044 sec) 179s passed 310/559 flycheck-defined-checkers/are-registered (0.004409 sec) 179s passed 311/559 flycheck-defined-checkers/are-valid (0.002877 sec) 179s passed 312/559 flycheck-disable-checker/disables-checker (0.000664 sec) 179s passed 313/559 flycheck-disable-checker/enables-checker (0.000538 sec) 179s passed 314/559 flycheck-disabled-checker-p/disabled-checker (0.000047 sec) 179s passed 315/559 flycheck-disabled-checker-p/enabled-checker (0.000044 sec) 179s passed 316/559 flycheck-disabled-checkers/is-empty (0.000046 sec) 179s passed 317/559 flycheck-display-error-messages (0.000129 sec) 179s passed 318/559 flycheck-display-errors-delay/defaults-to-0.9 (0.000045 sec) 179s passed 319/559 flycheck-display-errors-function/defaults-to-display-error-messages (0.000045 sec) 179s passed 320/559 flycheck-display-errors/custom-function (0.000076 sec) 179s passed 321/559 flycheck-display-errors/no-display-function-set (0.000108 sec) 179s passed 322/559 flycheck-ephemeral-buffer-p/buffer-with-leading-whitespace (0.000414 sec) 179s passed 323/559 flycheck-ephemeral-buffer-p/buffer-without-leading-whitespace (0.000412 sec) 179s passed 324/559 flycheck-ephemeral-buffer-p/temporary-buffer (0.000419 sec) 179s passed 325/559 flycheck-error-