0s autopkgtest: DBG: testbed init 0s autopkgtest [04:31:03]: starting date and time: 2025-02-19 04:31:03+0000 0s autopkgtest [04:31:03]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:31:03]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.dooc2_ie/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:pcre2 --apt-upgrade mariadb --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=pcre2/10.45-1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-26.secgroup --name adt-plucky-s390x-mariadb-20250219-043103-juju-7f2275-prod-proposed-migration-environment-15-f9ba7f09-1569-4e16-a7b5-803505ddcda5 --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 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.E79602 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.0bjezbpa/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu revert reboot root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'reboot', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.E79602/wrapper.sh 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/wrapper.sh'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [04:32:50]: testbed dpkg architecture: s390x 107s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [04:32:50]: testbed apt version: 2.9.29 107s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [04:32:50]: @@@@@@@@@@@@@@@@@@@@ test bed setup 107s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [04:32:51]: testbed release detected to be: None 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT source: Types: deb deb-src 108s URIs: http://ftpmaster.internal/ubuntu/ 108s Suites: plucky-proposed 108s Components: main restricted universe multiverse 108s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 500 108s 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [04:32:51]: updating testbed package index (apt update) 108s 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'] 109s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 109s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 110s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 110s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 110s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 110s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 110s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 110s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 110s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 110s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 110s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 110s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 110s Fetched 1723 kB in 2s (897 kB/s) 111s Reading package lists... 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 111s Package: * 111s Pin: release plucky-proposed 111s Pin-Priority: 100 111s 111s Package: src:pcre2:any 111s Pin: release plucky-proposed 111s Pin-Priority: 995 111s 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:pcre2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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.E79602/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s 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'] 112s + lsb_release --codename --short 112s + RELEASE=plucky 112s + cat 112s + [ plucky != trusty ] 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s Calculating upgrade... 112s The following packages were automatically installed and are no longer required: 112s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 112s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 112s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 112s linux-tools-6.11.0-8-generic 112s Use 'sudo apt autoremove' to remove them. 112s The following NEW packages will be installed: 112s libapt-pkg7.0 112s The following packages will be upgraded: 112s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 112s s390-tools-signed 112s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 8909 kB of archives. 112s After this operation, 3624 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 113s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 113s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 114s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 114s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 114s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 114s Fetched 8909 kB in 2s (4069 kB/s) 114s Selecting previously unselected package libapt-pkg7.0:s390x. 115s (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.) 115s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 115s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 115s Setting up libapt-pkg7.0:s390x (2.9.30) ... 115s (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.) 115s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 115s Unpacking apt (2.9.30) over (2.9.29) ... 115s Setting up apt (2.9.30) ... 115s (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.) 115s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 115s Unpacking apt-utils (2.9.30) over (2.9.29) ... 115s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 115s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 115s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 115s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 115s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 115s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 115s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 115s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 115s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 115s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 116s Setting up apt-utils (2.9.30) ... 116s Setting up rsyslog (8.2412.0-2ubuntu1) ... 116s info: The user `syslog' is already a member of `adm'. 116s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 116s Setting up dhcpcd-base (1:10.1.0-7) ... 116s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 116s Setting up s390-tools (2.37.0-0ubuntu2) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s Processing triggers for man-db (2.13.0-1) ... 119s Processing triggers for initramfs-tools (0.145ubuntu2) ... 119s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 119s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 123s Using config file '/etc/zipl.conf' 123s Building bootmap in '/boot' 123s Adding IPL section 'ubuntu' (default) 123s Preparing boot device for LD-IPL: vda (0000). 123s Done. 123s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 123s + /usr/lib/apt/apt-helper analyze-pattern ?true 123s + uname -r 123s + sed s/\./\\./g 123s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 123s + apt list ?obsolete 123s + tail -n+2 123s + cut -d/ -f1 123s + grep -v ^linux-.*6\.12\.0-15-generic.* 124s + true 124s + obsolete_pkgs= 124s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 124s Reading package lists... 124s Building dependency tree... 124s Reading state information... 124s The following packages will be REMOVED: 124s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 124s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 124s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 124s linux-tools-6.11.0-8-generic* 124s 0 upgraded, 0 newly installed, 9 to remove and 1 not upgraded. 124s After this operation, 167 MB disk space will be freed. 125s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 125s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 125s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 125s Removing libpython3.12t64:s390x (3.12.9-1) ... 125s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 125s Removing libnsl2:s390x (1.3.0-3build3) ... 125s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 125s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 125s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 126s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 126s Processing triggers for libc-bin (2.40-4ubuntu1) ... 126s (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.) 126s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 126s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 126s + grep -q trusty /etc/lsb-release 126s + [ ! -d /usr/share/doc/unattended-upgrades ] 126s + [ ! -d /usr/share/doc/lxd ] 126s + [ ! -d /usr/share/doc/lxd-client ] 126s + [ ! -d /usr/share/doc/snapd ] 126s + type iptables 126s + cat 126s + chmod 755 /etc/rc.local 126s + . /etc/rc.local 126s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 126s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 126s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 126s + uname -m 126s + [ s390x = ppc64le ] 126s + [ -d /run/systemd/system ] 126s + systemd-detect-virt --quiet --vm 126s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 126s + cat 126s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 126s + echo COMPRESS=lz4 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest [04:33:09]: upgrading testbed (apt dist-upgrade and autopurge) 126s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 126s Reading package lists... 126s Building dependency tree... 126s Reading state information... 126s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 126s Starting 2 pkgProblemResolver with broken count: 0 126s Done 127s Entering ResolveByKeep 127s 127s The following packages will be upgraded: 127s libpcre2-8-0 127s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 127s Need to get 276 kB of archives. 127s After this operation, 58.4 kB of additional disk space will be used. 127s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-8-0 s390x 10.45-1 [276 kB] 128s Fetched 276 kB in 1s (425 kB/s) 128s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55928 files and directories currently installed.) 128s Preparing to unpack .../libpcre2-8-0_10.45-1_s390x.deb ... 128s Unpacking libpcre2-8-0:s390x (10.45-1) over (10.42-4ubuntu3) ... 128s Setting up libpcre2-8-0:s390x (10.45-1) ... 128s Processing triggers for libc-bin (2.40-4ubuntu1) ... 128s autopkgtest: DBG: testbed command exited with code 0 128s 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'] 128s Reading package lists... 128s Building dependency tree... 128s Reading state information... 129s Starting pkgProblemResolver with broken count: 0 129s Starting 2 pkgProblemResolver with broken count: 0 129s Done 129s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 129s autopkgtest: DBG: testbed command exited with code 0 129s 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.E79602/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 129s autopkgtest: DBG: testbed command exited with code 1 129s autopkgtest [04:33:12]: rebooting testbed after setup commands that affected boot 129s autopkgtest: DBG: sending command to testbed: reboot 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.E79602/autopkgtest-reboot 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.E79602/autopkgtest-reboot-prepare 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [04:33:35]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 152s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.E79602/testbed-packages"], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/testbed-packages /tmp/autopkgtest-work.dooc2_ie/out/testbed-packages 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 152s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.E79602/autopkgtest-reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.E79602/autopkgtest-reboot-prepare 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: Binaries: initialising 154s autopkgtest [04:33:37]: @@@@@@@@@@@@@@@@@@@@ apt-source mariadb 154s autopkgtest: DBG: blame += mariadb 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 154s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'mariadb'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-provider-lz4$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-provider-lz4=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmariadb-dev$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmariadb-dev=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-s3$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-s3=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-connect$'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-connect=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-connect-jdbc$'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-connect-jdbc=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-cracklib-password-check$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-cracklib-password-check=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-test$'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-test=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-server-core$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-server-core=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-gssapi-client$'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-gssapi-client=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-server$'], kind short, sout pipe, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-server=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-provider-lzma$'], kind short, sout pipe, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-provider-lzma=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-backup$'], kind short, sout pipe, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-backup=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-server-compat$'], kind short, sout pipe, serr raw, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-server-compat=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-gssapi-server$'], kind short, sout pipe, serr raw, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-gssapi-server=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-provider-bzip2$'], kind short, sout pipe, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-provider-bzip2=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-spider$'], kind short, sout pipe, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-spider=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 161s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-client-compat$'], kind short, sout pipe, serr raw, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-client-compat=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmariadbd19t64$'], kind short, sout pipe, serr raw, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmariadbd19t64=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-provider-snappy$'], kind short, sout pipe, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-provider-snappy=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-client-core$'], kind short, sout pipe, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-client-core=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-provider-lzo$'], kind short, sout pipe, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-provider-lzo=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmariadbd-dev$'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmariadbd-dev=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-oqgraph$'], kind short, sout pipe, serr raw, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-oqgraph=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-test-data$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-test-data=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-plugin-hashicorp-key-management$'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-plugin-hashicorp-key-management=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmariadb3$'], kind short, sout pipe, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmariadb3=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-client$'], kind short, sout pipe, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-client=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-server-10\\.5$'], kind short, sout pipe, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-server-10.5=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mariadb-common$'], kind short, sout pipe, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mariadb-common=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmariadb-dev-compat$'], kind short, sout pipe, serr raw, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmariadb-dev-compat=1:11.4.4-3'], kind short, sout pipe, serr raw, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: install_deps: deps_new=[] 168s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s 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.E79602/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source mariadb=1:11.4.4-3 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x mariadb_*.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=pcre2/10.45-1'] 168s + cd / 168s + mktemp -d /tmp/autopkgtest.E79602/build.XXX 168s + builddir=/tmp/autopkgtest.E79602/build.Qsw 168s + cd /tmp/autopkgtest.E79602/build.Qsw 168s + apt-get source -d -q --only-source mariadb=1:11.4.4-3 203s + OUT=Reading package lists... 203s NOTICE: 'mariadb' packaging is maintained in the 'Git' version control system at: 203s https://salsa.debian.org/mariadb-team/mariadb-server.git 203s Please use: 203s git clone https://salsa.debian.org/mariadb-team/mariadb-server.git 203s to retrieve the latest (possibly unreleased) updates to the package. 203s Need to get 111 MB of source archives. 203s Get:1 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (dsc) [5595 B] 203s Get:2 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (tar) [111 MB] 203s Get:3 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (asc) [833 B] 203s Get:4 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (diff) [290 kB] 203s Fetched 111 MB in 35s (3144 kB/s) 203s Download complete and in download only mode 203s + [ -n ] 203s + grep ^Get: 203s + echo Reading package lists... 203s NOTICE: 'mariadb' packaging is maintained in the 'Git' version control system at: 203s https://salsa.debian.org/mariadb-team/mariadb-server.git 203s Please use: 203s git clone https://salsa.debian.org/mariadb-team/mariadb-server.git 203s to retrieve the latest (possibly unreleased) updates to the package. 203s Need to get 111 MB of source archives. 203s Get:1 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (dsc) [5595 B] 203s Get:2 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (tar) [111 MB] 203s Get:3 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (asc) [833 B] 203s Get:4 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (diff) [290 kB] 203s Fetched 111 MB in 35s (3144 kB/s) 203s Download complete and in download only mode 203s Get:1 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (dsc) [5595 B] 203s Get:2 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (tar) [111 MB] 203s Get:3 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (asc) [833 B] 203s Get:4 http://ftpmaster.internal/ubuntu plucky/universe mariadb 1:11.4.4-3 (diff) [290 kB] 203s + dpkg-source -x mariadb_11.4.4-3.dsc src 204s gpgv: Signature made Mon Jan 13 04:39:37 2025 UTC 204s gpgv: using RSA key 99B452B11F3C74C3B453E46FBED8449FCEE8DA88 204s gpgv: Can't check signature: No public key 204s dpkg-source: warning: cannot verify inline signature for ./mariadb_11.4.4-3.dsc: no acceptable signature found 208s + chmod -R a+rX . 208s + cd src/. 208s + pwd 208s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 208s autopkgtest: DBG: testbed command exited with code 0 208s autopkgtest [04:34:31]: testing package mariadb version 1:11.4.4-3 208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/build.Qsw/src/debian/ /tmp/autopkgtest-work.dooc2_ie/out/pkg/debian/ 209s autopkgtest: DBG: got reply from testbed: ok 210s autopkgtest: DBG: processing dependency diffutils 210s autopkgtest: DBG: processing dependency mariadb-server 210s autopkgtest: DBG: marked alternatives ['mariadb-server'] as a synthesised dependency 210s autopkgtest: DBG: Test defined: name configuration-tracing path debian/tests/configuration-tracing command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['diffutils', 'mariadb-server'] 211s autopkgtest: DBG: processing dependency mariadb-plugin-provider-bzip2 211s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-bzip2'] as a synthesised dependency 211s autopkgtest: DBG: processing dependency mariadb-plugin-provider-lz4 211s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-lz4'] as a synthesised dependency 211s autopkgtest: DBG: processing dependency mariadb-plugin-provider-lzma 211s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-lzma'] as a synthesised dependency 211s autopkgtest: DBG: processing dependency mariadb-plugin-provider-lzo 211s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-lzo'] as a synthesised dependency 211s autopkgtest: DBG: processing dependency mariadb-plugin-provider-snappy 211s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-snappy'] as a synthesised dependency 211s autopkgtest: DBG: processing dependency mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64] 211s autopkgtest: DBG: marked alternatives ['mariadb-plugin-rocksdb'] as a synthesised dependency 211s autopkgtest: DBG: Test defined: name smoke path debian/tests/smoke command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['mariadb-plugin-provider-bzip2', 'mariadb-plugin-provider-lz4', 'mariadb-plugin-provider-lzma', 'mariadb-plugin-provider-lzo', 'mariadb-plugin-provider-snappy', 'mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64]'] 212s autopkgtest: DBG: processing dependency eatmydata 212s autopkgtest: DBG: processing dependency mariadb-test 212s autopkgtest: DBG: marked alternatives ['mariadb-test'] as a synthesised dependency 212s autopkgtest: DBG: Test defined: name upstream path debian/tests/upstream command "None" restrictions ['allow-stderr', 'breaks-testbed'] features [] depends ['eatmydata', 'mariadb-test'] 212s autopkgtest [04:34:35]: build not needed 212s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/build.Qsw/src/ /tmp/autopkgtest-work.dooc2_ie/out/tests-tree/ 238s autopkgtest: DBG: got reply from testbed: ok 240s autopkgtest: DBG: processing dependency diffutils 240s autopkgtest: DBG: processing dependency mariadb-server 240s autopkgtest: DBG: marked alternatives ['mariadb-server'] as a synthesised dependency 240s autopkgtest: DBG: Test defined: name configuration-tracing path debian/tests/configuration-tracing command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['diffutils', 'mariadb-server'] 242s autopkgtest: DBG: processing dependency mariadb-plugin-provider-bzip2 242s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-bzip2'] as a synthesised dependency 242s autopkgtest: DBG: processing dependency mariadb-plugin-provider-lz4 242s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-lz4'] as a synthesised dependency 242s autopkgtest: DBG: processing dependency mariadb-plugin-provider-lzma 242s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-lzma'] as a synthesised dependency 242s autopkgtest: DBG: processing dependency mariadb-plugin-provider-lzo 242s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-lzo'] as a synthesised dependency 242s autopkgtest: DBG: processing dependency mariadb-plugin-provider-snappy 242s autopkgtest: DBG: marked alternatives ['mariadb-plugin-provider-snappy'] as a synthesised dependency 242s autopkgtest: DBG: processing dependency mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64] 242s autopkgtest: DBG: marked alternatives ['mariadb-plugin-rocksdb'] as a synthesised dependency 242s autopkgtest: DBG: Test defined: name smoke path debian/tests/smoke command "None" restrictions ['allow-stderr', 'isolation-container', 'needs-root'] features [] depends ['mariadb-plugin-provider-bzip2', 'mariadb-plugin-provider-lz4', 'mariadb-plugin-provider-lzma', 'mariadb-plugin-provider-lzo', 'mariadb-plugin-provider-snappy', 'mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64]'] 243s autopkgtest: DBG: processing dependency eatmydata 243s autopkgtest: DBG: processing dependency mariadb-test 243s autopkgtest: DBG: marked alternatives ['mariadb-test'] as a synthesised dependency 243s autopkgtest: DBG: Test defined: name upstream path debian/tests/upstream command "None" restrictions ['allow-stderr', 'breaks-testbed'] features [] depends ['eatmydata', 'mariadb-test'] 243s autopkgtest [04:35:06]: test configuration-tracing: preparing testbed 243s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['diffutils', 'mariadb-server'] 243s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 243s autopkgtest: DBG: install_deps: deps_new=['diffutils', 'mariadb-server'] 243s autopkgtest: DBG: install-deps: satisfying diffutils, mariadb-server 243s autopkgtest: DBG: can use apt-get on testbed: True 243s 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', 'diffutils, mariadb-server'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 243s Reading package lists... 243s Building dependency tree... 243s Reading state information... 243s Starting pkgProblemResolver with broken count: 0 243s Starting 2 pkgProblemResolver with broken count: 0 243s Done 244s The following NEW packages will be installed: 244s galera-4 libconfig-inifiles-perl libdbi-perl libmariadb3 liburing2 244s mariadb-client mariadb-client-core mariadb-common mariadb-server 244s mariadb-server-core mysql-common socat 244s 0 upgraded, 12 newly installed, 0 to remove and 0 not upgraded. 244s Need to get 17.6 MB of archives. 244s After this operation, 194 MB of additional disk space will be used. 244s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x galera-4 s390x 26.4.21-1 [753 kB] 245s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 245s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-common all 1:11.4.4-3 [28.6 kB] 245s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 245s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-inifiles-perl all 3.000003-3 [38.4 kB] 245s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libmariadb3 s390x 1:11.4.4-3 [203 kB] 245s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client-core s390x 1:11.4.4-3 [1056 kB] 246s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client s390x 1:11.4.4-3 [2410 kB] 246s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 246s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server-core s390x 1:11.4.4-3 [8555 kB] 250s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x socat s390x 1.8.0.2-1 [385 kB] 250s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server s390x 1:11.4.4-3 [3311 kB] 252s Preconfiguring packages ... 252s Fetched 17.6 MB in 8s (2309 kB/s) 252s Selecting previously unselected package galera-4. 252s (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.) 252s Preparing to unpack .../00-galera-4_26.4.21-1_s390x.deb ... 252s Unpacking galera-4 (26.4.21-1) ... 252s Selecting previously unselected package mysql-common. 252s Preparing to unpack .../01-mysql-common_5.8+1.1.1_all.deb ... 252s Unpacking mysql-common (5.8+1.1.1) ... 252s Selecting previously unselected package mariadb-common. 252s Preparing to unpack .../02-mariadb-common_1%3a11.4.4-3_all.deb ... 252s Unpacking mariadb-common (1:11.4.4-3) ... 252s Selecting previously unselected package libdbi-perl:s390x. 252s Preparing to unpack .../03-libdbi-perl_1.647-1_s390x.deb ... 252s Unpacking libdbi-perl:s390x (1.647-1) ... 252s Selecting previously unselected package libconfig-inifiles-perl. 252s Preparing to unpack .../04-libconfig-inifiles-perl_3.000003-3_all.deb ... 252s Unpacking libconfig-inifiles-perl (3.000003-3) ... 252s Selecting previously unselected package libmariadb3:s390x. 252s Preparing to unpack .../05-libmariadb3_1%3a11.4.4-3_s390x.deb ... 252s Unpacking libmariadb3:s390x (1:11.4.4-3) ... 252s Selecting previously unselected package mariadb-client-core. 252s Preparing to unpack .../06-mariadb-client-core_1%3a11.4.4-3_s390x.deb ... 252s Unpacking mariadb-client-core (1:11.4.4-3) ... 252s Selecting previously unselected package mariadb-client. 252s Preparing to unpack .../07-mariadb-client_1%3a11.4.4-3_s390x.deb ... 252s Unpacking mariadb-client (1:11.4.4-3) ... 252s Selecting previously unselected package liburing2:s390x. 252s Preparing to unpack .../08-liburing2_2.9-1_s390x.deb ... 252s Unpacking liburing2:s390x (2.9-1) ... 252s Selecting previously unselected package mariadb-server-core. 252s Preparing to unpack .../09-mariadb-server-core_1%3a11.4.4-3_s390x.deb ... 252s Unpacking mariadb-server-core (1:11.4.4-3) ... 252s Selecting previously unselected package socat. 252s Preparing to unpack .../10-socat_1.8.0.2-1_s390x.deb ... 252s Unpacking socat (1.8.0.2-1) ... 252s Setting up mysql-common (5.8+1.1.1) ... 252s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 252s Setting up mariadb-common (1:11.4.4-3) ... 252s update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 252s Selecting previously unselected package mariadb-server. 252s (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 ... 56374 files and directories currently installed.) 252s Preparing to unpack .../mariadb-server_1%3a11.4.4-3_s390x.deb ... 253s Unpacking mariadb-server (1:11.4.4-3) ... 253s Setting up libconfig-inifiles-perl (3.000003-3) ... 253s Setting up galera-4 (26.4.21-1) ... 253s Setting up socat (1.8.0.2-1) ... 253s Setting up libmariadb3:s390x (1:11.4.4-3) ... 253s Setting up liburing2:s390x (2.9-1) ... 253s Setting up libdbi-perl:s390x (1.647-1) ... 253s Setting up mariadb-client-core (1:11.4.4-3) ... 253s Setting up mariadb-server-core (1:11.4.4-3) ... 253s Invalid file '/usr/sbin/mysqld' for capability operation 253s Setcap failed on /usr/sbin/mysqld, required with --memlock if insufficent RLIMIT_MEMLOCK 253s Setting up mariadb-client (1:11.4.4-3) ... 253s Setting up mariadb-server (1:11.4.4-3) ... 254s Created symlink '/etc/systemd/system/multi-user.target.wants/mariadb.service' → '/usr/lib/systemd/system/mariadb.service'. 258s Processing triggers for man-db (2.13.0-1) ... 259s Processing triggers for libc-bin (2.40-4ubuntu1) ... 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-server'], kind short, sout pipe, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.E79602/configuration-tracing-packages.all"], kind short, sout raw, serr pipe, env [] 259s autopkgtest: DBG: testbed command exited with code 0 259s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/configuration-tracing-packages.all /tmp/autopkgtest-work.dooc2_ie/out/configuration-tracing-packages.all 259s autopkgtest: DBG: got reply from testbed: ok 259s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.E79602/build.Qsw/src'], kind short, sout raw, serr raw, env [] 260s autopkgtest: DBG: testbed command exited with code 0 260s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.E79602/build.Qsw/src already exists 260s autopkgtest [04:35:23]: test configuration-tracing: [----------------------- 260s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.E79602/wrapper.sh --debug --artifacts=/tmp/autopkgtest.E79602/configuration-tracing-artifacts --chdir=/tmp/autopkgtest.E79602/build.Qsw/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.E79602/configuration-tracing-stderr --stdout=/tmp/autopkgtest.E79602/configuration-tracing-stdout --tmp=/tmp/autopkgtest.E79602/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=pcre2/10.45-1 --make-executable=/tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/configuration-tracing -- /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/configuration-tracing'], kind test, sout raw, serr raw, env [] 260s /tmp/autopkgtest.E79602/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.E79602/configuration-tracing-artifacts 260s /tmp/autopkgtest.E79602/wrapper.sh: changing to directory: /tmp/autopkgtest.E79602/build.Qsw/src 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: LANG=C.UTF-8 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LANGUAGE 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_ADDRESS 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_ALL 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_COLLATE 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_CTYPE 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_IDENTIFICATION 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MEASUREMENT 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MESSAGES 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MONETARY 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_NAME 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_NUMERIC 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_PAPER 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_TELEPHONE 260s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_TIME 260s /tmp/autopkgtest.E79602/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 260s /tmp/autopkgtest.E79602/wrapper.sh: pretending to be a login shell 260s /tmp/autopkgtest.E79602/wrapper.sh: will write standard error to /tmp/autopkgtest.E79602/configuration-tracing-stderr 260s /tmp/autopkgtest.E79602/wrapper.sh: will write stdout to /tmp/autopkgtest.E79602/configuration-tracing-stdout 260s /tmp/autopkgtest.E79602/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.E79602/autopkgtest_tmp 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 260s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=pcre2/10.45-1 260s /tmp/autopkgtest.E79602/wrapper.sh: marking as executable: /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/configuration-tracing 260s /tmp/autopkgtest.E79602/wrapper.sh: command to run: /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/configuration-tracing 260s /tmp/autopkgtest.E79602/wrapper.sh: copying /tmp/tmp.F6exz6NXEk/out to stdout and file: /tmp/autopkgtest.E79602/configuration-tracing-stdout 260s /tmp/autopkgtest.E79602/wrapper.sh: copying /tmp/tmp.F6exz6NXEk/err to standard error and file: /tmp/autopkgtest.E79602/configuration-tracing-stdout 260s /tmp/autopkgtest.E79602/wrapper.sh: writing script pid 2459 to /tmp/autopkgtest_script_pid 260s Running test 'configuration-tracing' at /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests 260s 260s Tracing: /usr/bin/mariadb --print-defaults 260s diff --ignore-space-change -u mariadb-print-defaults.expected mariadb-print-defaults.actual 260s 260s Tracing: /usr/bin/mariadb --verbose --help 260s diff --ignore-space-change -u mariadb-verbose-help.expected mariadb-verbose-help.actual 260s 260s Tracing: /usr/sbin/mariadbd --print-defaults 260s diff --ignore-space-change -u mariadbd-print-defaults.expected mariadbd-print-defaults.actual 260s 260s Tracing: /usr/sbin/mariadbd --verbose --help 260s diff --ignore-space-change -u mariadbd-verbose-help.expected mariadbd-verbose-help.actual 260s /tmp/autopkgtest.E79602/wrapper.sh: checking for leaked background processes... 260s /tmp/autopkgtest.E79602/wrapper.sh: waiting for tee/cat subprocesses... 260s /tmp/autopkgtest.E79602/wrapper.sh: cleaning up... 260s /tmp/autopkgtest.E79602/wrapper.sh: Exit status: 0 260s autopkgtest: DBG: testbed command exited with code 0 260s autopkgtest [04:35:23]: test configuration-tracing: -----------------------] 260s autopkgtest: DBG: testbed executing test finished with exit status 0 260s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/configuration-tracing-stdout /tmp/autopkgtest-work.dooc2_ie/out/configuration-tracing-stdout 261s autopkgtest: DBG: got reply from testbed: ok 261s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/configuration-tracing-stderr /tmp/autopkgtest-work.dooc2_ie/out/configuration-tracing-stderr 261s autopkgtest: DBG: got reply from testbed: ok 261s autopkgtest [04:35:24]: test configuration-tracing: - - - - - - - - - - results - - - - - - - - - - 261s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/configuration-tracing-artifacts/ /tmp/autopkgtest-work.dooc2_ie/out/artifacts/ 261s configuration-tracing PASS 261s autopkgtest: DBG: got reply from testbed: ok 261s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.E79602/configuration-tracing-artifacts', '/tmp/autopkgtest.E79602/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 261s autopkgtest: DBG: testbed command exited with code 0 261s autopkgtest [04:35:24]: test smoke: preparing testbed 261s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['diffutils', 'mariadb-server'], deps_new=['mariadb-plugin-provider-bzip2', 'mariadb-plugin-provider-lz4', 'mariadb-plugin-provider-lzma', 'mariadb-plugin-provider-lzo', 'mariadb-plugin-provider-snappy', 'mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64]'] 261s autopkgtest: DBG: testbed reset 261s autopkgtest: DBG: sending command to testbed: revert 373s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.E79602 373s autopkgtest: DBG: sending command to testbed: print-execute-command 373s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.0bjezbpa/runcmd 373s autopkgtest: DBG: sending command to testbed: capabilities 373s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu revert ok reboot root-on-testbed 373s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'ok', 'reboot', 'root-on-testbed', 'has_internet'] 373s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 374s autopkgtest: DBG: testbed command exited with code 0 374s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.E79602/wrapper.sh 374s autopkgtest: DBG: got reply from testbed: ok 374s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/wrapper.sh'], kind short, sout raw, serr pipe, env [] 374s autopkgtest: DBG: testbed command exited with code 0 374s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 374s autopkgtest: DBG: testbed command exited with code 0 374s autopkgtest [04:37:17]: testbed dpkg architecture: s390x 374s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 374s autopkgtest: DBG: testbed command exited with code 0 374s autopkgtest [04:37:17]: testbed apt version: 2.9.29 374s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 375s autopkgtest: DBG: testbed command exited with code 0 375s autopkgtest: DBG: testbed has eatmydata 375s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 375s autopkgtest: DBG: testbed command exited with code 0 375s autopkgtest [04:37:18]: @@@@@@@@@@@@@@@@@@@@ test bed setup 375s 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 [] 375s autopkgtest: DBG: testbed command exited with code 0 375s autopkgtest [04:37:18]: testbed release detected to be: plucky 375s 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 [] 375s autopkgtest: DBG: testbed command exited with code 0 375s 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 [] 375s autopkgtest: DBG: testbed command exited with code 0 375s autopkgtest: DBG: adding APT source: Types: deb deb-src 375s URIs: http://ftpmaster.internal/ubuntu/ 375s Suites: plucky-proposed 375s Components: main restricted universe multiverse 375s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 375s 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 [] 375s autopkgtest: DBG: testbed command exited with code 0 375s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 375s Package: * 375s Pin: release plucky-proposed 375s Pin-Priority: 500 375s 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 [] 376s autopkgtest: DBG: testbed command exited with code 0 376s autopkgtest [04:37:19]: updating testbed package index (apt update) 376s 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'] 376s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 376s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 376s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 376s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 376s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 376s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 376s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 376s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 376s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 377s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 377s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 377s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 377s Fetched 1723 kB in 1s (1839 kB/s) 378s Reading package lists... 378s autopkgtest: DBG: testbed command exited with code 0 378s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 378s Package: * 378s Pin: release plucky-proposed 378s Pin-Priority: 100 378s 378s Package: src:pcre2:any 378s Pin: release plucky-proposed 378s Pin-Priority: 995 378s 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:pcre2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 378s autopkgtest: DBG: testbed command exited with code 0 378s 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.E79602/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 378s autopkgtest: DBG: testbed command exited with code 0 378s 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'] 378s + lsb_release --codename --short 378s + RELEASE=plucky 378s + cat 378s + [ plucky != trusty ] 378s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 378s Reading package lists... 379s Building dependency tree... 379s Reading state information... 379s Calculating upgrade... 379s The following packages were automatically installed and are no longer required: 379s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 379s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 379s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 379s linux-tools-6.11.0-8-generic 379s Use 'sudo apt autoremove' to remove them. 379s The following NEW packages will be installed: 379s libapt-pkg7.0 379s The following packages will be upgraded: 379s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 379s s390-tools-signed 379s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 379s Need to get 8909 kB of archives. 379s After this operation, 3624 kB of additional disk space will be used. 379s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 380s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 380s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 380s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 380s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 380s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 380s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 380s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 380s Fetched 8909 kB in 1s (9744 kB/s) 380s Selecting previously unselected package libapt-pkg7.0:s390x. 380s (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.) 380s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 380s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 380s Setting up libapt-pkg7.0:s390x (2.9.30) ... 380s (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.) 380s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 380s Unpacking apt (2.9.30) over (2.9.29) ... 381s Setting up apt (2.9.30) ... 381s (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.) 381s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 381s Unpacking apt-utils (2.9.30) over (2.9.29) ... 381s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 381s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 381s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 381s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 381s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 381s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 381s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 381s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 381s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 381s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 381s Setting up apt-utils (2.9.30) ... 381s Setting up rsyslog (8.2412.0-2ubuntu1) ... 381s info: The user `syslog' is already a member of `adm'. 382s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 382s Setting up dhcpcd-base (1:10.1.0-7) ... 382s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 382s Setting up s390-tools (2.37.0-0ubuntu2) ... 383s Processing triggers for libc-bin (2.40-4ubuntu1) ... 383s Processing triggers for man-db (2.13.0-1) ... 384s Processing triggers for initramfs-tools (0.145ubuntu2) ... 384s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 384s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 389s Using config file '/etc/zipl.conf' 389s Building bootmap in '/boot' 389s Adding IPL section 'ubuntu' (default) 389s Preparing boot device for LD-IPL: vda (0000). 389s Done. 389s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 389s + /usr/lib/apt/apt-helper analyze-pattern ?true 389s + uname -r 389s + sed s/\./\\./g 389s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 389s + apt list ?obsolete 389s + tail -n+2 389s + cut -d/ -f1 389s + grep -v ^linux-.*6\.12\.0-15-generic.* 390s + true 390s + obsolete_pkgs= 390s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 390s Reading package lists... 390s Building dependency tree... 390s Reading state information... 390s The following packages will be REMOVED: 390s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 390s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 390s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 390s linux-tools-6.11.0-8-generic* 391s 0 upgraded, 0 newly installed, 9 to remove and 1 not upgraded. 391s After this operation, 167 MB disk space will be freed. 391s (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.) 391s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 391s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 391s Removing libpython3.12t64:s390x (3.12.9-1) ... 391s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 391s Removing libnsl2:s390x (1.3.0-3build3) ... 391s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 391s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 391s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 392s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 392s Processing triggers for libc-bin (2.40-4ubuntu1) ... 392s (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.) 392s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 392s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 392s + grep -q trusty /etc/lsb-release 392s + [ ! -d /usr/share/doc/unattended-upgrades ] 392s + [ ! -d /usr/share/doc/lxd ] 392s + [ ! -d /usr/share/doc/lxd-client ] 392s + [ ! -d /usr/share/doc/snapd ] 392s + type iptables 392s + cat 392s + chmod 755 /etc/rc.local 392s + . /etc/rc.local 392s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 392s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 392s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 392s + uname -m 392s + [ s390x = ppc64le ] 392s + [ -d /run/systemd/system ] 392s + systemd-detect-virt --quiet --vm 392s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 392s + cat 392s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 392s + echo COMPRESS=lz4 392s autopkgtest: DBG: testbed command exited with code 0 392s autopkgtest [04:37:35]: upgrading testbed (apt dist-upgrade and autopurge) 392s 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'] 392s Reading package lists... 393s Building dependency tree... 393s Reading state information... 393s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 393s Starting 2 pkgProblemResolver with broken count: 0 393s Done 393s Entering ResolveByKeep 393s 393s The following packages will be upgraded: 393s libpcre2-8-0 393s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 393s Need to get 276 kB of archives. 393s After this operation, 58.4 kB of additional disk space will be used. 393s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-8-0 s390x 10.45-1 [276 kB] 394s Fetched 276 kB in 0s (656 kB/s) 394s (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.) 394s Preparing to unpack .../libpcre2-8-0_10.45-1_s390x.deb ... 394s Unpacking libpcre2-8-0:s390x (10.45-1) over (10.42-4ubuntu3) ... 394s Setting up libpcre2-8-0:s390x (10.45-1) ... 394s Processing triggers for libc-bin (2.40-4ubuntu1) ... 394s autopkgtest: DBG: testbed command exited with code 0 394s 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'] 394s Reading package lists... 394s Building dependency tree... 394s Reading state information... 395s Starting pkgProblemResolver with broken count: 0 395s Starting 2 pkgProblemResolver with broken count: 0 395s Done 395s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 395s autopkgtest: DBG: testbed command exited with code 0 395s 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.E79602/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 395s autopkgtest: DBG: testbed command exited with code 1 395s autopkgtest [04:37:38]: rebooting testbed after setup commands that affected boot 395s autopkgtest: DBG: sending command to testbed: reboot 404s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 413s autopkgtest: DBG: got reply from testbed: ok 413s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 413s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.E79602/autopkgtest-reboot 413s autopkgtest: DBG: got reply from testbed: ok 413s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 413s autopkgtest: DBG: testbed command exited with code 0 413s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.E79602/autopkgtest-reboot-prepare 414s autopkgtest: DBG: got reply from testbed: ok 414s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 414s autopkgtest: DBG: testbed command exited with code 0 414s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.E79602/testbed-packages"], kind short, sout raw, serr pipe, env [] 415s autopkgtest: DBG: testbed command exited with code 0 415s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/testbed-packages /tmp/autopkgtest-work.dooc2_ie/out/testbed-packages 416s autopkgtest: DBG: got reply from testbed: ok 416s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 416s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 416s autopkgtest: DBG: testbed command exited with code 0 416s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.E79602/autopkgtest-reboot 416s autopkgtest: DBG: got reply from testbed: ok 416s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.E79602/autopkgtest-reboot-prepare 417s autopkgtest: DBG: got reply from testbed: ok 417s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 417s autopkgtest: DBG: testbed command exited with code 0 417s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 418s autopkgtest: DBG: testbed command exited with code 0 418s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 418s autopkgtest: DBG: testbed command exited with code 0 418s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 418s autopkgtest: DBG: install_deps: deps_new=['mariadb-plugin-provider-bzip2', 'mariadb-plugin-provider-lz4', 'mariadb-plugin-provider-lzma', 'mariadb-plugin-provider-lzo', 'mariadb-plugin-provider-snappy', 'mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64]'] 418s autopkgtest: DBG: install-deps: satisfying mariadb-plugin-provider-bzip2, mariadb-plugin-provider-lz4, mariadb-plugin-provider-lzma, mariadb-plugin-provider-lzo, mariadb-plugin-provider-snappy, mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64] 418s autopkgtest: DBG: can use apt-get on testbed: True 418s 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', 'mariadb-plugin-provider-bzip2, mariadb-plugin-provider-lz4, mariadb-plugin-provider-lzma, mariadb-plugin-provider-lzo, mariadb-plugin-provider-snappy, mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64]'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 418s Reading package lists... 418s Building dependency tree... 418s Reading state information... 418s Starting pkgProblemResolver with broken count: 0 418s Starting 2 pkgProblemResolver with broken count: 0 418s Done 419s The following NEW packages will be installed: 419s galera-4 libconfig-inifiles-perl libdbi-perl libmariadb3 libsnappy1v5 419s liburing2 mariadb-client mariadb-client-core mariadb-common 419s mariadb-plugin-provider-bzip2 mariadb-plugin-provider-lz4 419s mariadb-plugin-provider-lzma mariadb-plugin-provider-lzo 419s mariadb-plugin-provider-snappy mariadb-server mariadb-server-core 419s mysql-common socat 419s 0 upgraded, 18 newly installed, 0 to remove and 0 not upgraded. 419s Need to get 17.7 MB of archives. 419s After this operation, 195 MB of additional disk space will be used. 419s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x galera-4 s390x 26.4.21-1 [753 kB] 419s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 419s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-common all 1:11.4.4-3 [28.6 kB] 419s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 419s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-inifiles-perl all 3.000003-3 [38.4 kB] 419s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libmariadb3 s390x 1:11.4.4-3 [203 kB] 419s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client-core s390x 1:11.4.4-3 [1056 kB] 419s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client s390x 1:11.4.4-3 [2410 kB] 419s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 419s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server-core s390x 1:11.4.4-3 [8555 kB] 420s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x socat s390x 1.8.0.2-1 [385 kB] 420s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server s390x 1:11.4.4-3 [3311 kB] 420s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-plugin-provider-bzip2 s390x 1:11.4.4-3 [14.0 kB] 420s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-plugin-provider-lz4 s390x 1:11.4.4-3 [13.9 kB] 420s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-plugin-provider-lzma s390x 1:11.4.4-3 [14.0 kB] 420s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-plugin-provider-lzo s390x 1:11.4.4-3 [13.9 kB] 420s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 420s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-plugin-provider-snappy s390x 1:11.4.4-3 [13.9 kB] 420s Preconfiguring packages ... 420s Fetched 17.7 MB in 1s (14.4 MB/s) 420s Selecting previously unselected package galera-4. 420s (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.) 420s Preparing to unpack .../00-galera-4_26.4.21-1_s390x.deb ... 420s Unpacking galera-4 (26.4.21-1) ... 420s Selecting previously unselected package mysql-common. 420s Preparing to unpack .../01-mysql-common_5.8+1.1.1_all.deb ... 420s Unpacking mysql-common (5.8+1.1.1) ... 420s Selecting previously unselected package mariadb-common. 420s Preparing to unpack .../02-mariadb-common_1%3a11.4.4-3_all.deb ... 420s Unpacking mariadb-common (1:11.4.4-3) ... 420s Selecting previously unselected package libdbi-perl:s390x. 420s Preparing to unpack .../03-libdbi-perl_1.647-1_s390x.deb ... 420s Unpacking libdbi-perl:s390x (1.647-1) ... 420s Selecting previously unselected package libconfig-inifiles-perl. 420s Preparing to unpack .../04-libconfig-inifiles-perl_3.000003-3_all.deb ... 420s Unpacking libconfig-inifiles-perl (3.000003-3) ... 420s Selecting previously unselected package libmariadb3:s390x. 420s Preparing to unpack .../05-libmariadb3_1%3a11.4.4-3_s390x.deb ... 420s Unpacking libmariadb3:s390x (1:11.4.4-3) ... 420s Selecting previously unselected package mariadb-client-core. 420s Preparing to unpack .../06-mariadb-client-core_1%3a11.4.4-3_s390x.deb ... 420s Unpacking mariadb-client-core (1:11.4.4-3) ... 421s Selecting previously unselected package mariadb-client. 421s Preparing to unpack .../07-mariadb-client_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-client (1:11.4.4-3) ... 421s Selecting previously unselected package liburing2:s390x. 421s Preparing to unpack .../08-liburing2_2.9-1_s390x.deb ... 421s Unpacking liburing2:s390x (2.9-1) ... 421s Selecting previously unselected package mariadb-server-core. 421s Preparing to unpack .../09-mariadb-server-core_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-server-core (1:11.4.4-3) ... 421s Selecting previously unselected package socat. 421s Preparing to unpack .../10-socat_1.8.0.2-1_s390x.deb ... 421s Unpacking socat (1.8.0.2-1) ... 421s Setting up mysql-common (5.8+1.1.1) ... 421s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 421s Setting up mariadb-common (1:11.4.4-3) ... 421s update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 421s Selecting previously unselected package mariadb-server. 421s (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 ... 56374 files and directories currently installed.) 421s Preparing to unpack .../0-mariadb-server_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-server (1:11.4.4-3) ... 421s Selecting previously unselected package mariadb-plugin-provider-bzip2. 421s Preparing to unpack .../1-mariadb-plugin-provider-bzip2_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-plugin-provider-bzip2 (1:11.4.4-3) ... 421s Selecting previously unselected package mariadb-plugin-provider-lz4. 421s Preparing to unpack .../2-mariadb-plugin-provider-lz4_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-plugin-provider-lz4 (1:11.4.4-3) ... 421s Selecting previously unselected package mariadb-plugin-provider-lzma. 421s Preparing to unpack .../3-mariadb-plugin-provider-lzma_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-plugin-provider-lzma (1:11.4.4-3) ... 421s Selecting previously unselected package mariadb-plugin-provider-lzo. 421s Preparing to unpack .../4-mariadb-plugin-provider-lzo_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-plugin-provider-lzo (1:11.4.4-3) ... 421s Selecting previously unselected package libsnappy1v5:s390x. 421s Preparing to unpack .../5-libsnappy1v5_1.2.1-1_s390x.deb ... 421s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 421s Selecting previously unselected package mariadb-plugin-provider-snappy. 421s Preparing to unpack .../6-mariadb-plugin-provider-snappy_1%3a11.4.4-3_s390x.deb ... 421s Unpacking mariadb-plugin-provider-snappy (1:11.4.4-3) ... 421s Setting up libconfig-inifiles-perl (3.000003-3) ... 421s Setting up galera-4 (26.4.21-1) ... 421s Setting up libsnappy1v5:s390x (1.2.1-1) ... 421s Setting up socat (1.8.0.2-1) ... 421s Setting up libmariadb3:s390x (1:11.4.4-3) ... 421s Setting up liburing2:s390x (2.9-1) ... 421s Setting up libdbi-perl:s390x (1.647-1) ... 421s Setting up mariadb-client-core (1:11.4.4-3) ... 421s Setting up mariadb-server-core (1:11.4.4-3) ... 422s Invalid file '/usr/sbin/mysqld' for capability operation 422s Setcap failed on /usr/sbin/mysqld, required with --memlock if insufficent RLIMIT_MEMLOCK 422s Setting up mariadb-client (1:11.4.4-3) ... 422s Setting up mariadb-server (1:11.4.4-3) ... 423s Created symlink '/etc/systemd/system/multi-user.target.wants/mariadb.service' → '/usr/lib/systemd/system/mariadb.service'. 424s Setting up mariadb-plugin-provider-bzip2 (1:11.4.4-3) ... 424s Setting up mariadb-plugin-provider-lzma (1:11.4.4-3) ... 424s Setting up mariadb-plugin-provider-lzo (1:11.4.4-3) ... 424s Setting up mariadb-plugin-provider-lz4 (1:11.4.4-3) ... 424s Setting up mariadb-plugin-provider-snappy (1:11.4.4-3) ... 424s Processing triggers for man-db (2.13.0-1) ... 425s Processing triggers for libc-bin (2.40-4ubuntu1) ... 425s Processing triggers for mariadb-server (1:11.4.4-3) ... 425s autopkgtest: DBG: testbed command exited with code 0 425s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-plugin-provider-bzip2'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-plugin-provider-lz4'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-plugin-provider-lzma'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-plugin-provider-lzo'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-plugin-provider-snappy'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 0 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-plugin-rocksdb'], kind short, sout pipe, serr pipe, env [] 426s autopkgtest: DBG: testbed command exited with code 1 426s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status} ${Provides}\n', '*'], kind short, sout pipe, serr pipe, env [] 427s autopkgtest: DBG: testbed command exited with code 0 427s autopkgtest: WARNING: package mariadb-plugin-rocksdb is not installed though it should be 427s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.E79602/smoke-packages.all"], kind short, sout raw, serr pipe, env [] 427s autopkgtest: DBG: testbed command exited with code 0 427s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/smoke-packages.all /tmp/autopkgtest-work.dooc2_ie/out/smoke-packages.all 427s autopkgtest: DBG: got reply from testbed: ok 427s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.E79602/build.Qsw/src'], kind short, sout raw, serr raw, env [] 427s autopkgtest: DBG: testbed command exited with code 1 427s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602/build.Qsw'], kind short, sout raw, serr pipe, env [] 427s autopkgtest: DBG: testbed command exited with code 0 427s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.dooc2_ie/out/tests-tree/ /tmp/autopkgtest.E79602/build.Qsw/src/ 514s autopkgtest: DBG: got reply from testbed: ok 514s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.E79602/build.Qsw/src'], kind short, sout raw, serr pipe, env [] 514s autopkgtest: DBG: testbed command exited with code 0 514s autopkgtest [04:39:37]: test smoke: [----------------------- 514s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.E79602/wrapper.sh --debug --artifacts=/tmp/autopkgtest.E79602/smoke-artifacts --chdir=/tmp/autopkgtest.E79602/build.Qsw/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.E79602/smoke-stderr --stdout=/tmp/autopkgtest.E79602/smoke-stdout --tmp=/tmp/autopkgtest.E79602/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=pcre2/10.45-1 --make-executable=/tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/smoke -- /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/smoke'], kind test, sout raw, serr raw, env [] 514s /tmp/autopkgtest.E79602/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.E79602/smoke-artifacts 514s /tmp/autopkgtest.E79602/wrapper.sh: changing to directory: /tmp/autopkgtest.E79602/build.Qsw/src 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: LANG=C.UTF-8 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LANGUAGE 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_ADDRESS 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_ALL 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_COLLATE 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_CTYPE 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_IDENTIFICATION 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MEASUREMENT 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MESSAGES 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MONETARY 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_NAME 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_NUMERIC 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_PAPER 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_TELEPHONE 514s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_TIME 514s /tmp/autopkgtest.E79602/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 514s /tmp/autopkgtest.E79602/wrapper.sh: pretending to be a login shell 514s /tmp/autopkgtest.E79602/wrapper.sh: will write standard error to /tmp/autopkgtest.E79602/smoke-stderr 514s /tmp/autopkgtest.E79602/wrapper.sh: will write stdout to /tmp/autopkgtest.E79602/smoke-stdout 514s /tmp/autopkgtest.E79602/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.E79602/autopkgtest_tmp 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 514s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=pcre2/10.45-1 514s /tmp/autopkgtest.E79602/wrapper.sh: marking as executable: /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/smoke 514s /tmp/autopkgtest.E79602/wrapper.sh: command to run: /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/smoke 514s /tmp/autopkgtest.E79602/wrapper.sh: copying /tmp/tmp.1P3FD0GKYe/out to stdout and file: /tmp/autopkgtest.E79602/smoke-stdout 514s /tmp/autopkgtest.E79602/wrapper.sh: copying /tmp/tmp.1P3FD0GKYe/err to standard error and file: /tmp/autopkgtest.E79602/smoke-stdout 514s /tmp/autopkgtest.E79602/wrapper.sh: writing script pid 1819 to /tmp/autopkgtest_script_pid 514s Running test 'smoke' 514s /usr/bin/systemctl 514s Found systemctl, continuing smoke test.. 514s + command -v systemctl 514s + echo Found systemctl, continuing smoke test.. 514s + systemctl restart mariadb 519s + mariadb 519s + mariadb testdatabase 519s + echo+ SELECT bar+1 FROM foo; 519s mariadb --batch --skip-column-names --user=testuser --password=testpassword testdatabase 519s + result=42 519s + [ 42 != 42 ] 519s + mariadb --user=testuser --password=testpassword testdatabase 519s + mariadb 519s + mariadb 519s Variable_name Value 519s Innodb_have_lz4 ON 519s Innodb_have_lzo ON 519s Innodb_have_lzma ON 519s Innodb_have_bzip2 ON 519s Innodb_have_snappy ON 519s Innodb_have_punch_hole OFF 519s + mariadb 519s + plugin=mariadb-plugin-rocksdb 519s + dpkg-architecture -qDEB_HOST_ARCH_BITS 519s dpkg-architecture: warning: cannot determine CC system type, falling back to default (native compilation) 519s + [ 64 != 32 ] 519s + dpkg-architecture -qDEB_HOST_ARCH_ENDIAN 519s dpkg-architecture: warning: cannot determine CC system type, falling back to default (native compilation) 519s + [ big = little ] 519s + dpkg-query -W mariadb-plugin-rocksdb 519s dpkg-query: no packages found matching mariadb-plugin-rocksdb 519s /tmp/autopkgtest.E79602/wrapper.sh: checking for leaked background processes... 519s /tmp/autopkgtest.E79602/wrapper.sh: waiting for tee/cat subprocesses... 519s /tmp/autopkgtest.E79602/wrapper.sh: cleaning up... 519s /tmp/autopkgtest.E79602/wrapper.sh: Exit status: 0 519s autopkgtest: DBG: testbed command exited with code 0 519s autopkgtest [04:39:42]: test smoke: -----------------------] 519s autopkgtest: DBG: testbed executing test finished with exit status 0 519s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/smoke-stdout /tmp/autopkgtest-work.dooc2_ie/out/smoke-stdout 519s autopkgtest: DBG: got reply from testbed: ok 519s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/smoke-stderr /tmp/autopkgtest-work.dooc2_ie/out/smoke-stderr 520s autopkgtest: DBG: got reply from testbed: ok 520s autopkgtest [04:39:43]: test smoke: - - - - - - - - - - results - - - - - - - - - - 520s smoke PASS 520s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/smoke-artifacts/ /tmp/autopkgtest-work.dooc2_ie/out/artifacts/ 520s autopkgtest: DBG: got reply from testbed: ok 520s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.E79602/smoke-artifacts', '/tmp/autopkgtest.E79602/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 520s autopkgtest: DBG: testbed command exited with code 0 520s autopkgtest [04:39:43]: test upstream: preparing testbed 520s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['mariadb-plugin-provider-bzip2', 'mariadb-plugin-provider-lz4', 'mariadb-plugin-provider-lzma', 'mariadb-plugin-provider-lzo', 'mariadb-plugin-provider-snappy', 'mariadb-plugin-rocksdb [amd64 arm64 mips64el ppc64el riscv64]'], deps_new=['eatmydata', 'mariadb-test'] 520s autopkgtest: DBG: testbed reset 520s autopkgtest: DBG: sending command to testbed: revert 660s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.E79602 660s autopkgtest: DBG: sending command to testbed: print-execute-command 660s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.0bjezbpa/runcmd 660s autopkgtest: DBG: sending command to testbed: capabilities 660s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert-full-system suggested-normal-user=ubuntu revert ok reboot root-on-testbed 660s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert-full-system', 'suggested-normal-user=ubuntu', 'revert', 'ok', 'reboot', 'root-on-testbed', 'has_internet'] 660s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 660s autopkgtest: DBG: testbed command exited with code 0 660s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.E79602/wrapper.sh 660s autopkgtest: DBG: got reply from testbed: ok 660s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/wrapper.sh'], kind short, sout raw, serr pipe, env [] 660s autopkgtest: DBG: testbed command exited with code 0 660s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 661s autopkgtest: DBG: testbed command exited with code 0 661s autopkgtest [04:42:04]: testbed dpkg architecture: s390x 661s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 661s autopkgtest: DBG: testbed command exited with code 0 661s autopkgtest [04:42:04]: testbed apt version: 2.9.29 661s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 661s autopkgtest: DBG: testbed command exited with code 0 661s autopkgtest: DBG: testbed has eatmydata 661s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 661s autopkgtest: DBG: testbed command exited with code 0 661s autopkgtest [04:42:04]: @@@@@@@@@@@@@@@@@@@@ test bed setup 661s 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 [] 661s autopkgtest: DBG: testbed command exited with code 0 661s autopkgtest [04:42:04]: testbed release detected to be: plucky 661s 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 [] 661s autopkgtest: DBG: testbed command exited with code 0 661s 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 [] 662s autopkgtest: DBG: testbed command exited with code 0 662s autopkgtest: DBG: adding APT source: Types: deb deb-src 662s URIs: http://ftpmaster.internal/ubuntu/ 662s Suites: plucky-proposed 662s Components: main restricted universe multiverse 662s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 662s 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 [] 662s autopkgtest: DBG: testbed command exited with code 0 662s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 662s Package: * 662s Pin: release plucky-proposed 662s Pin-Priority: 500 662s 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 [] 662s autopkgtest: DBG: testbed command exited with code 0 662s autopkgtest [04:42:05]: updating testbed package index (apt update) 662s 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'] 662s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 663s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 663s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 663s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 663s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 663s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 663s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [770 kB] 664s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.2 kB] 664s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [93.9 kB] 664s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 664s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [648 kB] 664s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5836 B] 664s Fetched 1723 kB in 2s (763 kB/s) 665s Reading package lists... 665s autopkgtest: DBG: testbed command exited with code 0 665s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 665s Package: * 665s Pin: release plucky-proposed 665s Pin-Priority: 100 665s 665s Package: src:pcre2:any 665s Pin: release plucky-proposed 665s Pin-Priority: 995 665s 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:pcre2:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 665s autopkgtest: DBG: testbed command exited with code 0 665s 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.E79602/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 665s autopkgtest: DBG: testbed command exited with code 0 665s 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'] 666s + lsb_release --codename --short 666s + RELEASE=plucky 666s + cat 666s + [ plucky != trusty ] 666s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 666s Reading package lists... 666s Building dependency tree... 666s Reading state information... 666s Calculating upgrade... 666s The following packages were automatically installed and are no longer required: 666s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 666s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 666s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 666s linux-tools-6.11.0-8-generic 666s Use 'sudo apt autoremove' to remove them. 666s The following NEW packages will be installed: 666s libapt-pkg7.0 666s The following packages will be upgraded: 666s apt apt-utils dhcpcd-base rsyslog s390-tools s390-tools-data 666s s390-tools-signed 666s 7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 666s Need to get 8909 kB of archives. 666s After this operation, 3624 kB of additional disk space will be used. 666s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 667s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 668s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x apt-utils s390x 2.9.30 [214 kB] 669s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 669s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x rsyslog s390x 8.2412.0-2ubuntu1 [536 kB] 669s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 669s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 673s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 673s Fetched 8909 kB in 7s (1241 kB/s) 673s Selecting previously unselected package libapt-pkg7.0:s390x. 673s (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.) 674s Preparing to unpack .../libapt-pkg7.0_2.9.30_s390x.deb ... 674s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 674s Setting up libapt-pkg7.0:s390x (2.9.30) ... 674s (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.) 674s Preparing to unpack .../archives/apt_2.9.30_s390x.deb ... 674s Unpacking apt (2.9.30) over (2.9.29) ... 674s Setting up apt (2.9.30) ... 674s (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.) 674s Preparing to unpack .../0-apt-utils_2.9.30_s390x.deb ... 674s Unpacking apt-utils (2.9.30) over (2.9.29) ... 674s Preparing to unpack .../1-dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 674s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 674s Preparing to unpack .../2-rsyslog_8.2412.0-2ubuntu1_s390x.deb ... 674s Unpacking rsyslog (8.2412.0-2ubuntu1) over (8.2412.0-1ubuntu1) ... 674s Preparing to unpack .../3-s390-tools-data_2.37.0-0ubuntu2_all.deb ... 674s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 674s Preparing to unpack .../4-s390-tools_2.37.0-0ubuntu2_s390x.deb ... 674s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 674s Preparing to unpack .../5-s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 674s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 674s Setting up apt-utils (2.9.30) ... 674s Setting up rsyslog (8.2412.0-2ubuntu1) ... 674s info: The user `syslog' is already a member of `adm'. 675s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 675s Setting up dhcpcd-base (1:10.1.0-7) ... 675s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 675s Setting up s390-tools (2.37.0-0ubuntu2) ... 676s Processing triggers for libc-bin (2.40-4ubuntu1) ... 676s Processing triggers for man-db (2.13.0-1) ... 677s Processing triggers for initramfs-tools (0.145ubuntu2) ... 677s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 677s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 681s Using config file '/etc/zipl.conf' 681s Building bootmap in '/boot' 681s Adding IPL section 'ubuntu' (default) 681s Preparing boot device for LD-IPL: vda (0000). 681s Done. 681s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 681s + /usr/lib/apt/apt-helper analyze-pattern ?true 681s + uname -r+ 681s sed s/\./\\./g 681s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 681s + apt list+ ?obsolete 681s + cut -d/ -f1 681s + grep -v ^linux-.*6\.12\.0-15-generic.* 681s tail -n+2 682s + true 682s + obsolete_pkgs= 682s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 682s Reading package lists... 682s Building dependency tree... 682s Reading state information... 682s The following packages will be REMOVED: 682s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 682s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 682s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 682s linux-tools-6.11.0-8-generic* 682s 0 upgraded, 0 newly installed, 9 to remove and 1 not upgraded. 682s After this operation, 167 MB disk space will be freed. 682s (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.) 682s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 682s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 682s Removing libpython3.12t64:s390x (3.12.9-1) ... 682s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 682s Removing libnsl2:s390x (1.3.0-3build3) ... 682s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 683s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 683s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 683s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 683s Processing triggers for libc-bin (2.40-4ubuntu1) ... 684s (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.) 684s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 684s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 684s + grep -q trusty /etc/lsb-release 684s + [ ! -d /usr/share/doc/unattended-upgrades ] 684s + [ ! -d /usr/share/doc/lxd ] 684s + [ ! -d /usr/share/doc/lxd-client ] 684s + [ ! -d /usr/share/doc/snapd ] 684s + type iptables 684s + cat 684s + chmod 755 /etc/rc.local 684s + . /etc/rc.local 684s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 684s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 684s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 684s + uname -m 684s + [ s390x = ppc64le ] 684s + [ -d /run/systemd/system ] 684s + systemd-detect-virt --quiet --vm 684s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 684s + cat 684s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 684s + echo COMPRESS=lz4 684s autopkgtest: DBG: testbed command exited with code 0 684s autopkgtest [04:42:27]: upgrading testbed (apt dist-upgrade and autopurge) 684s 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'] 684s Reading package lists... 684s Building dependency tree... 684s Reading state information... 684s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 684s Starting 2 pkgProblemResolver with broken count: 0 684s Done 684s Entering ResolveByKeep 685s 685s The following packages will be upgraded: 685s libpcre2-8-0 685s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 685s Need to get 276 kB of archives. 685s After this operation, 58.4 kB of additional disk space will be used. 685s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-8-0 s390x 10.45-1 [276 kB] 685s Fetched 276 kB in 0s (577 kB/s) 685s (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.) 685s Preparing to unpack .../libpcre2-8-0_10.45-1_s390x.deb ... 685s Unpacking libpcre2-8-0:s390x (10.45-1) over (10.42-4ubuntu3) ... 685s Setting up libpcre2-8-0:s390x (10.45-1) ... 685s Processing triggers for libc-bin (2.40-4ubuntu1) ... 686s autopkgtest: DBG: testbed command exited with code 0 686s 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'] 686s Reading package lists... 686s Building dependency tree... 686s Reading state information... 686s Starting pkgProblemResolver with broken count: 0 686s Starting 2 pkgProblemResolver with broken count: 0 686s Done 686s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 686s autopkgtest: DBG: testbed command exited with code 0 686s 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.E79602/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 686s autopkgtest: DBG: testbed command exited with code 1 686s autopkgtest [04:42:29]: rebooting testbed after setup commands that affected boot 686s autopkgtest: DBG: sending command to testbed: reboot 704s autopkgtest: DBG: got reply from testbed: ok 704s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 704s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 704s autopkgtest: DBG: testbed command exited with code 0 704s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.E79602/autopkgtest-reboot 704s autopkgtest: DBG: got reply from testbed: ok 704s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.E79602/autopkgtest-reboot-prepare 705s autopkgtest: DBG: got reply from testbed: ok 705s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 705s autopkgtest: DBG: testbed command exited with code 0 705s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 706s autopkgtest: DBG: testbed command exited with code 0 706s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 706s autopkgtest: DBG: testbed command exited with code 0 706s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.E79602/testbed-packages"], kind short, sout raw, serr pipe, env [] 706s autopkgtest: DBG: testbed command exited with code 0 706s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/testbed-packages /tmp/autopkgtest-work.dooc2_ie/out/testbed-packages 706s autopkgtest: DBG: got reply from testbed: ok 706s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 706s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 707s autopkgtest: DBG: testbed command exited with code 0 707s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.E79602/autopkgtest-reboot 707s autopkgtest: DBG: got reply from testbed: ok 707s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 707s autopkgtest: DBG: testbed command exited with code 0 707s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 707s autopkgtest: DBG: testbed command exited with code 0 707s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 707s autopkgtest: DBG: testbed command exited with code 0 707s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602'], kind short, sout raw, serr pipe, env [] 707s autopkgtest: DBG: testbed command exited with code 0 707s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.E79602/autopkgtest-reboot-prepare 708s autopkgtest: DBG: got reply from testbed: ok 708s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.E79602/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 708s autopkgtest: DBG: testbed command exited with code 0 708s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 708s autopkgtest: DBG: install_deps: deps_new=['eatmydata', 'mariadb-test'] 708s autopkgtest: DBG: install-deps: satisfying eatmydata, mariadb-test 708s autopkgtest: DBG: can use apt-get on testbed: True 708s 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', 'eatmydata, mariadb-test'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 708s Reading package lists... 708s Building dependency tree... 708s Reading state information... 709s Starting pkgProblemResolver with broken count: 0 709s Starting 2 pkgProblemResolver with broken count: 0 709s Done 709s The following NEW packages will be installed: 709s galera-4 libconfig-inifiles-perl libdbi-perl libmariadb3 libnet-ssleay-perl 709s libpcre2-posix3 liburing2 mariadb-client mariadb-client-core mariadb-common 709s mariadb-server mariadb-server-core mariadb-test mariadb-test-data 709s mysql-common perl-openssl-defaults socat 709s 0 upgraded, 17 newly installed, 0 to remove and 0 not upgraded. 709s Need to get 52.5 MB of archives. 709s After this operation, 516 MB of additional disk space will be used. 709s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x galera-4 s390x 26.4.21-1 [753 kB] 710s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 710s Get:3 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-common all 1:11.4.4-3 [28.6 kB] 710s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdbi-perl s390x 1.647-1 [832 kB] 711s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libconfig-inifiles-perl all 3.000003-3 [38.4 kB] 711s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x libmariadb3 s390x 1:11.4.4-3 [203 kB] 711s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client-core s390x 1:11.4.4-3 [1056 kB] 712s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-client s390x 1:11.4.4-3 [2410 kB] 713s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 713s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server-core s390x 1:11.4.4-3 [8555 kB] 718s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x socat s390x 1.8.0.2-1 [385 kB] 719s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-server s390x 1:11.4.4-3 [3311 kB] 721s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 721s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 721s Get:15 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libpcre2-posix3 s390x 10.45-1 [7080 B] 721s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-test-data all 1:11.4.4-3 [13.8 MB] 727s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x mariadb-test s390x 1:11.4.4-3 [20.7 MB] 730s Preconfiguring packages ... 730s Fetched 52.5 MB in 21s (2472 kB/s) 730s Selecting previously unselected package galera-4. 730s (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.) 730s Preparing to unpack .../00-galera-4_26.4.21-1_s390x.deb ... 730s Unpacking galera-4 (26.4.21-1) ... 731s Selecting previously unselected package mysql-common. 731s Preparing to unpack .../01-mysql-common_5.8+1.1.1_all.deb ... 731s Unpacking mysql-common (5.8+1.1.1) ... 731s Selecting previously unselected package mariadb-common. 731s Preparing to unpack .../02-mariadb-common_1%3a11.4.4-3_all.deb ... 731s Unpacking mariadb-common (1:11.4.4-3) ... 731s Selecting previously unselected package libdbi-perl:s390x. 731s Preparing to unpack .../03-libdbi-perl_1.647-1_s390x.deb ... 731s Unpacking libdbi-perl:s390x (1.647-1) ... 731s Selecting previously unselected package libconfig-inifiles-perl. 731s Preparing to unpack .../04-libconfig-inifiles-perl_3.000003-3_all.deb ... 731s Unpacking libconfig-inifiles-perl (3.000003-3) ... 731s Selecting previously unselected package libmariadb3:s390x. 731s Preparing to unpack .../05-libmariadb3_1%3a11.4.4-3_s390x.deb ... 731s Unpacking libmariadb3:s390x (1:11.4.4-3) ... 731s Selecting previously unselected package mariadb-client-core. 731s Preparing to unpack .../06-mariadb-client-core_1%3a11.4.4-3_s390x.deb ... 731s Unpacking mariadb-client-core (1:11.4.4-3) ... 731s Selecting previously unselected package mariadb-client. 731s Preparing to unpack .../07-mariadb-client_1%3a11.4.4-3_s390x.deb ... 731s Unpacking mariadb-client (1:11.4.4-3) ... 731s Selecting previously unselected package liburing2:s390x. 731s Preparing to unpack .../08-liburing2_2.9-1_s390x.deb ... 731s Unpacking liburing2:s390x (2.9-1) ... 731s Selecting previously unselected package mariadb-server-core. 731s Preparing to unpack .../09-mariadb-server-core_1%3a11.4.4-3_s390x.deb ... 731s Unpacking mariadb-server-core (1:11.4.4-3) ... 731s Selecting previously unselected package socat. 731s Preparing to unpack .../10-socat_1.8.0.2-1_s390x.deb ... 731s Unpacking socat (1.8.0.2-1) ... 731s Setting up mysql-common (5.8+1.1.1) ... 731s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 731s Setting up mariadb-common (1:11.4.4-3) ... 731s update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode 731s Selecting previously unselected package mariadb-server. 731s (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 ... 56374 files and directories currently installed.) 731s Preparing to unpack .../0-mariadb-server_1%3a11.4.4-3_s390x.deb ... 731s Unpacking mariadb-server (1:11.4.4-3) ... 731s Selecting previously unselected package perl-openssl-defaults:s390x. 731s Preparing to unpack .../1-perl-openssl-defaults_7build3_s390x.deb ... 731s Unpacking perl-openssl-defaults:s390x (7build3) ... 731s Selecting previously unselected package libnet-ssleay-perl:s390x. 731s Preparing to unpack .../2-libnet-ssleay-perl_1.94-2_s390x.deb ... 731s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 731s Selecting previously unselected package libpcre2-posix3:s390x. 731s Preparing to unpack .../3-libpcre2-posix3_10.45-1_s390x.deb ... 731s Unpacking libpcre2-posix3:s390x (10.45-1) ... 731s Selecting previously unselected package mariadb-test-data. 731s Preparing to unpack .../4-mariadb-test-data_1%3a11.4.4-3_all.deb ... 731s Unpacking mariadb-test-data (1:11.4.4-3) ... 733s Selecting previously unselected package mariadb-test. 733s Preparing to unpack .../5-mariadb-test_1%3a11.4.4-3_s390x.deb ... 733s Unpacking mariadb-test (1:11.4.4-3) ... 733s Setting up libconfig-inifiles-perl (3.000003-3) ... 733s Setting up mariadb-test-data (1:11.4.4-3) ... 733s Setting up galera-4 (26.4.21-1) ... 733s Setting up perl-openssl-defaults:s390x (7build3) ... 733s Setting up socat (1.8.0.2-1) ... 733s Setting up libmariadb3:s390x (1:11.4.4-3) ... 733s Setting up libpcre2-posix3:s390x (10.45-1) ... 733s Setting up liburing2:s390x (2.9-1) ... 733s Setting up libdbi-perl:s390x (1.647-1) ... 733s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 733s Setting up mariadb-client-core (1:11.4.4-3) ... 733s Setting up mariadb-server-core (1:11.4.4-3) ... 733s Invalid file '/usr/sbin/mysqld' for capability operation 733s Setcap failed on /usr/sbin/mysqld, required with --memlock if insufficent RLIMIT_MEMLOCK 733s Setting up mariadb-client (1:11.4.4-3) ... 733s Setting up mariadb-server (1:11.4.4-3) ... 734s Created symlink '/etc/systemd/system/multi-user.target.wants/mariadb.service' → '/usr/lib/systemd/system/mariadb.service'. 736s Setting up mariadb-test (1:11.4.4-3) ... 736s Processing triggers for man-db (2.13.0-1) ... 737s Processing triggers for libc-bin (2.40-4ubuntu1) ... 737s autopkgtest: DBG: testbed command exited with code 0 737s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mariadb-test'], kind short, sout pipe, serr pipe, env [] 737s autopkgtest: DBG: testbed command exited with code 0 737s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.E79602/upstream-packages.all"], kind short, sout raw, serr pipe, env [] 737s autopkgtest: DBG: testbed command exited with code 0 737s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/upstream-packages.all /tmp/autopkgtest-work.dooc2_ie/out/upstream-packages.all 738s autopkgtest: DBG: got reply from testbed: ok 738s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.E79602/build.Qsw/src'], kind short, sout raw, serr raw, env [] 738s autopkgtest: DBG: testbed command exited with code 1 738s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.E79602/build.Qsw'], kind short, sout raw, serr pipe, env [] 738s autopkgtest: DBG: testbed command exited with code 0 738s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.dooc2_ie/out/tests-tree/ /tmp/autopkgtest.E79602/build.Qsw/src/ 815s autopkgtest: DBG: got reply from testbed: ok 815s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.E79602/build.Qsw/src'], kind short, sout raw, serr pipe, env [] 816s autopkgtest: DBG: testbed command exited with code 0 816s autopkgtest [04:44:39]: test upstream: [----------------------- 816s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.E79602/wrapper.sh --debug --artifacts=/tmp/autopkgtest.E79602/upstream-artifacts --chdir=/tmp/autopkgtest.E79602/build.Qsw/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.E79602/upstream-stderr --stdout=/tmp/autopkgtest.E79602/upstream-stdout --tmp=/tmp/autopkgtest.E79602/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=pcre2/10.45-1 --make-executable=/tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/upstream -- /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/upstream'], kind test, sout raw, serr raw, env [] 816s /tmp/autopkgtest.E79602/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.E79602/upstream-artifacts 816s /tmp/autopkgtest.E79602/wrapper.sh: changing to directory: /tmp/autopkgtest.E79602/build.Qsw/src 816s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 816s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 816s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 816s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 816s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: LANG=C.UTF-8 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LANGUAGE 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_ADDRESS 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_ALL 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_COLLATE 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_CTYPE 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_IDENTIFICATION 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MEASUREMENT 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MESSAGES 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_MONETARY 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_NAME 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_NUMERIC 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_PAPER 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_TELEPHONE 816s /tmp/autopkgtest.E79602/wrapper.sh: unsetting environment: LC_TIME 816s /tmp/autopkgtest.E79602/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 816s /tmp/autopkgtest.E79602/wrapper.sh: pretending to be a login shell 816s /tmp/autopkgtest.E79602/wrapper.sh: will write standard error to /tmp/autopkgtest.E79602/upstream-stderr 816s /tmp/autopkgtest.E79602/wrapper.sh: will write stdout to /tmp/autopkgtest.E79602/upstream-stdout 816s /tmp/autopkgtest.E79602/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.E79602/autopkgtest_tmp 816s /tmp/autopkgtest.E79602/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=pcre2/10.45-1 816s /tmp/autopkgtest.E79602/wrapper.sh: marking as executable: /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/upstream 816s /tmp/autopkgtest.E79602/wrapper.sh: command to run: /tmp/autopkgtest.E79602/build.Qsw/src/debian/tests/upstream 816s Running test 'testsuite' 816s /tmp/autopkgtest.E79602/wrapper.sh: copying /tmp/tmp.ZF9KGxrobD/out to stdout and file: /tmp/autopkgtest.E79602/upstream-stdout 816s /tmp/autopkgtest.E79602/wrapper.sh: copying /tmp/tmp.ZF9KGxrobD/err to standard error and file: /tmp/autopkgtest.E79602/upstream-stdout 816s /tmp/autopkgtest.E79602/wrapper.sh: writing script pid 1701 to /tmp/autopkgtest_script_pid 816s using vardir: /tmp/tmp.Rnqg5LLLOq/var 816s using tmpdir: /tmp/tmp.Rnqg5LLLOq/tmp 816s Setting up skip-tests-list 816s '/tmp/tmp.BXHQYpba9l' -> '/tmp/autopkgtest.E79602/upstream-artifacts/tmp.BXHQYpba9l' 816s starting mysql-test-tun.pl... 816s Logging: ./mysql-test-run.pl --force --testcase-timeout=120 --suite-timeout=540 --retry=3 --verbose-restart --max-save-core=1 --max-save-datadir=1 --parallel=auto --skip-rpl --suite=main --skip-test-list=/tmp/tmp.BXHQYpba9l --vardir=/tmp/tmp.Rnqg5LLLOq/var --tmpdir=/tmp/tmp.Rnqg5LLLOq/tmp --xml-report=/tmp/autopkgtest.E79602/upstream-artifacts/mysql-test-run-junit.xml 816s VS config: 816s vardir: /tmp/tmp.Rnqg5LLLOq/var 816s Removing old var directory... 816s Creating var directory '/tmp/tmp.Rnqg5LLLOq/var'... 816s Checking supported features... 816s MariaDB Version 11.4.4-MariaDB-3 816s - SSL connections supported 816s Using suites: main 816s Collecting tests... 819s Installing system database... 820s Using parallel: 3 820s 820s ============================================================================== 820s 820s TEST WORKER RESULT TIME (ms) or COMMENT 820s -------------------------------------------------------------------------- 820s 820s worker[01] Using MTR_BUILD_THREAD 300, with reserved ports 19000..19029 820s worker[03] Using MTR_BUILD_THREAD 301, with reserved ports 19030..19059 820s worker[02] Using MTR_BUILD_THREAD 302, with reserved ports 19060..19089 820s main.alter_table-big [ skipped ] Test needs --big-test 820s main.analyze_format_json_emb [ skipped ] Test needs --big-test 820s main.analyze_format_json_timings [ skipped ] Test needs --big-test 820s main.auth_rpl [ skipped ] No replication tests 820s main.column_compression_rpl [ skipped ] No replication tests 820s main.count_distinct3 [ skipped ] Test needs --big-test 820s main.create-big [ skipped ] Test needs --big-test 820s main.create_delayed [ skipped ] Test needs --big-test 820s main.create_or_replace2 [ skipped ] No replication tests 820s main.ctype_uca [ disabled ] Requires writable /usr 820s main.delete_use_source [ skipped ] Test needs --big-test 820s main.file_contents [ disabled ] MDEV-6526 these files are not installed anymore 820s main.flush_corruption [ skipped ] Test needs --big-test 820s main.func_json_notembedded [ disabled ] MDEV-30518 / MDEV-27955 820s main.information_schema-big [ skipped ] Test needs --big-test 820s main.invisible_binlog [ skipped ] No replication tests 820s main.log_tables-big [ skipped ] Test needs --big-test 820s main.long_unique_big [ skipped ] Test needs --big-test 820s main.long_unique_bugs_replication [ skipped ] No replication tests 820s main.lowercase_table4 [ skipped ] Test needs --big-test 820s main.lowercase_table5 [ disabled ] MDEV-34781 Sporadic result mismatch in main.lowercase_table5 820s main.max_statement_time [ disabled ] cannot possibly work, depends on timing 820s main.myisam-big [ skipped ] Test needs --big-test 820s main.mysql_client_test_nonblock [ skipped ] Test needs --big-test 820s main.mysql_embedded [ disabled ] Bug#12561297 2011-05-14 Anitha Dependent on PB2 changes - eventum#41836 820s main.mysqlbinlog_row_big [ skipped ] Test needs --big-test 820s main.mysqld--help-aria [ disabled ] MDEV-34733 820s main.order_by_pack_big [ skipped ] Test needs --big-test 820s main.partition_open_files_limit [ disabled ] open_files_limit check broken by MDEV-18360 820s main.ps_show_log [ skipped ] No replication tests 820s main.read_many_rows_innodb [ disabled ] Bug#11748886 2010-11-15 mattiasj report already exists 820s main.rpl_mysql_upgrade_slave_repo_check [ skipped ] No replication tests 820s main.rpl_mysqldump_slave [ skipped ] No replication tests 820s main.selectivity_innodb [ skipped ] Test needs --big-test 820s main.selectivity_innodb_notembedded [ skipped ] Test needs --big-test 820s main.ssl-big [ skipped ] Test needs --big-test 820s main.stat_tables_repl [ skipped ] No replication tests 820s main.sum_distinct-big [ skipped ] Test needs --big-test 820s main.tablespace [ disabled ] disabled in MariaDB (no TABLESPACE table attribute) 820s main.type_newdecimal-big [ skipped ] Test needs --big-test 820s main.connect2 [ skipped ] Requires debug build 820s main.invisible_partition [ skipped ] Requires debug build 820s main.crash_commit_before [ skipped ] Requires debug build 820s main.show_explain [ skipped ] Requires debug build 820s main.insert_debug [ skipped ] Requires debug build 820s main.rowid_filter_innodb [ skipped ] Requires debug build 820s main.innodb_mysql_sync [ skipped ] Requires debug build 820s main.partition_debug_sync [ skipped ] Requires debug build 820s main.rowid_filter_innodb_debug [ skipped ] Requires debug build 820s main.range_innodb [ skipped ] Requires debug build 820s main.flush_read_lock_kill [ skipped ] Requires debug build 820s main.innodb_icp_debug [ skipped ] Requires debug build 820s main.mariadb-dump-debug [ skipped ] Requires debug build 820s main.mysql_install_db_win_admin [ skipped ] Requires admin privileges 820s main.show_analyze [ skipped ] Requires debug build 820s main.show_analyze_json [ skipped ] Requires debug build 820s main.show_explain_json [ skipped ] Requires debug build 820s main.show_explain_non_select [ skipped ] Requires debug build 820s main.warnings_debug [ skipped ] Requires debug build 820s main.drop_bad_db_type [ skipped ] Requires debug build 820s main.partition_sync [ skipped ] Requires debug build 820s main.ps_mem_leaks [ skipped ] Requires debug build 820s main.rowid_filter_myisam_debug [ skipped ] Requires debug build 820s main.join_cache_debug [ skipped ] Requires debug build 820s main.log_slow_debug [ skipped ] Requires debug build 820s main.opt_tvc [ skipped ] Requires debug build 820s main.range_interrupted-13751 [ skipped ] Requires debug build 820s main.slowlog_enospace-10508 [ skipped ] Requires debug build 820s main.myisam_crash_before_flush_keys [ skipped ] Requires debug build 820s main.error_simulation [ skipped ] Requires debug build 820s main.alter_table_debug [ skipped ] Requires debug build 820s main.alter_table_upgrade_myisam_debug [ skipped ] Requires debug build 820s main.analyze_debug [ skipped ] Requires debug build 820s main.aria_icp_debug [ skipped ] Requires debug build 820s main.bad_startup_options_debug [ skipped ] Requires debug build 820s main.cache_temporal_4265 [ skipped ] Requires debug build 820s main.charset_client_win [ skipped ] Not tested with utf8 command line support 820s main.connect_debug [ skipped ] Requires debug build 820s main.ctype_like_range [ skipped ] Requires debug build 820s main.engine_error_in_alter-8453 [ skipped ] Requires debug build 820s main.filesort_debug [ skipped ] Requires debug build 820s main.frm-debug [ skipped ] Requires debug build 820s main.func_debug [ skipped ] Requires debug build 820s main.func_regexp_pcre_debug [ skipped ] Requires debug build 820s main.gis-debug [ skipped ] Requires debug build 820s main.invisible_field_debug [ skipped ] Requires debug build 820s main.invisible_field_grant_completely [ skipped ] Requires debug build 820s main.json_debug_nonembedded_noasan [ skipped ] Requires debug build 820s main.log_tables_debug [ skipped ] Requires debug build 820s main.long_unique_debug [ skipped ] Requires debug build 820s main.mdev6830 [ skipped ] Requires debug build 820s main.mdev_22370 [ skipped ] Requires debug build 820s main.myisam_debug [ skipped ] Requires debug build 820s main.myisam_debug_keys [ skipped ] Requires debug build 820s main.myisam_icp_debug [ skipped ] Requires debug build 820s main.mysqltest_tracking_info_debug [ skipped ] Requires debug build 820s main.openssl_6975 [ skipped ] no or wrong openssl version 820s main.processlist [ skipped ] Requires debug build 820s main.range_debug [ skipped ] Requires debug build 820s main.select_debug [ skipped ] Requires debug build 820s main.sequence_debug [ skipped ] Requires debug build 820s main.set_statement_debug [ skipped ] Requires debug build 820s main.show_explain_ps [ skipped ] Requires debug build 820s main.shutdown_debug [ skipped ] Requires debug build 820s main.signal_code [ skipped ] Requires debug build 820s main.sp-code [ skipped ] Requires debug build 820s main.sp-package-code [ skipped ] Requires debug build 820s main.sp-security-debug [ skipped ] Requires debug build 820s main.sp_validation [ skipped ] Requires debug build 820s main.stat_tables-enospc [ skipped ] Requires debug build 820s main.subselect_debug [ skipped ] Requires debug build 820s main.system_time_debug [ skipped ] Requires debug build 820s main.thread_id_overflow [ skipped ] Requires debug build 820s main.type_temporal_mysql56_debug [ skipped ] Requires debug build 820s main.union_crash-714 [ skipped ] Requires debug build 820s main.view_debug [ skipped ] Requires debug build 820s main.windows_debug [ skipped ] Requires debug build 820s main.winservice_basic [ skipped ] Requires admin privileges 820s main.winservice_i18n [ skipped ] Requires admin privileges 820s main.connect-abstract w2 [ skipped ] Need Linux 820s worker[02] > Restart [mysqld.1 - pid: 1753, winpid: 1753] - using different config file 820s main.optimizer_costs2 w2 [ pass ] 820s worker[02] > Restart [mysqld.1 - pid: 1805, winpid: 1805] - running with different options '--skip-name-resolve --bind-address=*' != '--optimizer_disk_read_ratio=0.9 --MEMORY.optimizer_disk_read_ratio=0.1 --memory.optimizer_disk_read_ratio=0.3 --memory.optimizer_row_lookup_cost=0.8' 821s main.ipv4_and_ipv6 w2 [ pass ] 336 821s worker[02] > Restart [mysqld.1 - pid: 1822, winpid: 1822] - running with different options '--skip-name-resolve --bind-address=0.0.0.0' != '--skip-name-resolve --bind-address=*' 823s main.ipv4_as_ipv6 w2 [ pass ] 937 823s worker[02] > Restart [mysqld.1 - pid: 1861, winpid: 1861] - running with different options '--skip-name-resolve --bind-address=::' != '--skip-name-resolve --bind-address=0.0.0.0' 823s main.ipv6 w2 [ pass ] 469 824s worker[02] > Restart [mysqld.1 - pid: 1939, winpid: 1939] - running with different options '--bind-address=localhost,192.168.0.1' != '--skip-name-resolve --bind-address=::' 824s main.bind_multiple_addresses_resolution w2 [ pass ] 54 824s worker[02] > Restart [mysqld.1 - pid: 1987, winpid: 1987] - running with different options '--bind-address=localhost' != '--bind-address=localhost,192.168.0.1' 824s main.bind_address_resolution w2 [ pass ] 36 824s worker[02] > Restart [mysqld.1 - pid: 2006, winpid: 2006] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --binlog-format=mixed' != '--bind-address=localhost' 825s main.sp_trans_log w2 [ pass ] 47 825s main.tc_heuristic_recover w2 [ skipped ] debug_sync is not available 825s worker[02] > Restart [mysqld.1 - pid: 2025, winpid: 2025] - running with different options '--log-bin=master-bin --log-bin=master-bin --binlog-format=row --binlog-row-image=minimal' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --binlog-format=mixed' 825s main.mysqlbinlog_row_minimal w2 [ pass ] 104 825s worker[02] > Restart [mysqld.1 - pid: 2074, winpid: 2074] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --loose-sequence --log-bin=master-bin --binlog-format=row --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--log-bin=master-bin --log-bin=master-bin --binlog-format=row --binlog-row-image=minimal' 826s main.long_unique_bugs w2 [ pass ] 124 826s worker[02] > Restart [mysqld.1 - pid: 2107, winpid: 2107] - running with different options '--log-bin=master-bin --binlog-format=row --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --loose-sequence --log-bin=master-bin --binlog-format=row --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 827s main.stat_tables_rbr w2 [ pass ] 46 827s worker[02] > Restart [mysqld.1 - pid: 2147, winpid: 2147] - running with different options '--log-bin=master-bin --binlog-format=row --log-bin=master-bin' != '--log-bin=master-bin --binlog-format=row --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition' 828s main.ctype_cp932_binlog_row w2 [ pass ] 95 828s worker[02] > Restart [mysqld.1 - pid: 2191, winpid: 2191] - running with different options '--log-bin=master-bin --log-bin=master-bin --binlog-format=row' != '--log-bin=master-bin --binlog-format=row --log-bin=master-bin' 828s main.mysqlbinlog_row_compressed w2 [ pass ] 96 828s worker[02] > Restart [mysqld.1 - pid: 2216, winpid: 2216] - running with different options '--log-bin=master-bin --binlog-format=statement --log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--log-bin=master-bin --log-bin=master-bin --binlog-format=row' 829s main.mysqlbinlog-innodb w2 [ pass ] 16 829s worker[02] > Restart [mysqld.1 - pid: 2240, winpid: 2240] - running with different options '--loose-enable-partition --log-bin=master-bin --binlog-format=statement --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--log-bin=master-bin --binlog-format=statement --log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 829s main.partition_innodb_stmt w2 [ pass ] 11 829s worker[02] > Restart [mysqld.1 - pid: 2286, winpid: 2286] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --binlog-format=statement' != '--loose-enable-partition --log-bin=master-bin --binlog-format=statement --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 830s main.session_tracker_sysvar w2 [ pass ] 6 830s worker[02] > Restart [mysqld.1 - pid: 2325, winpid: 2325] - running with different options '--log-bin=master-bin --binlog-format=statement --log-bin=master-bin --max-binlog-size=4096' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --binlog-format=statement' 831s main.mysqlbinlog w2 [ pass ] 681 831s worker[02] > Restart [mysqld.1 - pid: 2366, winpid: 2366] - running with different options '--log-bin=master-bin --log-bin=master-bin --binlog-format=statement' != '--log-bin=master-bin --binlog-format=statement --log-bin=master-bin --max-binlog-size=4096' 831s main.pool_of_threads w3 [ pass ] 11212 831s worker[03] > Restart [mysqld.1 - pid: 1757, winpid: 1757] - using different config file 832s main.partition_binlog_stmt w3 [ pass ] 26 832s worker[03] > Restart [mysqld.1 - pid: 2516, winpid: 2516] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --binlog-ignore-db=test' != '--loose-enable-partition --log-bin=master-bin --binlog-format=statement' 832s main.mysqlbinlog_stmt_compressed w2 [ pass ] 96 832s main.set_statement_notembedded_binlog w2 [ pass ] 5 832s worker[02] > Restart [mysqld.1 - pid: 2514, winpid: 2514] - running with different options '--character-set-collations=utf8mb3=uca1400_ai_ci,latin1=latin1_bin' != '--log-bin=master-bin --log-bin=master-bin --binlog-format=statement' 832s main.lock_tables_lost_commit w3 [ pass ] 8 832s worker[03] > Restart [mysqld.1 - pid: 2564, winpid: 2564] - running with different options '--character-sets-dir=/usr/share/mariadb/mariadb-test/ --character-set-filesystem=latin1' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --binlog-ignore-db=test' 832s main.ctype_collate_implicit_def w2 [ pass ] 58 832s worker[02] > Restart [mysqld.1 - pid: 2570, winpid: 2570] - running with different options '--log-bin=master-bin --log-output=table,file --slow-query-log --log-queries-not-using-indexes --general-log --character-set-server=latin1 --collation_server=latin1_swedish_ci --sql_mode=STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' != '--character-set-collations=utf8mb3=uca1400_ai_ci,latin1=latin1_bin' 833s main.ctype_filesystem w3 [ pass ] 2 833s worker[03] > Restart [mysqld.1 - pid: 2631, winpid: 2631] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --character-set-server=latin1 --collation_server=latin1_swedish_ci --use-stat-tables=NEVER' != '--character-sets-dir=/usr/share/mariadb/mariadb-test/ --character-set-filesystem=latin1' 833s main.ps w2 [ pass ] 634 833s worker[02] > Restart [mysqld.1 - pid: 2616, winpid: 2616] - running with different options '--character-set-server=latin1 --collation_server=latin1_swedish_ci' != '--log-bin=master-bin --log-output=table,file --slow-query-log --log-queries-not-using-indexes --general-log --character-set-server=latin1 --collation_server=latin1_swedish_ci --sql_mode=STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' 834s main.type_varchar w2 [ pass ] 86 834s main.upgrade w2 [ pass ] 52 834s worker[02] > Restart [mysqld.1 - pid: 2701, winpid: 2701] - running with different options '--collation-server=ucs2_unicode_ci --character-set-server=ucs2,latin1 --query-cache-size=1048576' != '--character-set-server=latin1 --collation_server=latin1_swedish_ci' 834s main.ctype_ucs2_query_cache w2 [ pass ] 46 834s worker[02] > Restart [mysqld.1 - pid: 2771, winpid: 2771] - running with different options '--collation-server=ucs2_unicode_ci --character-set-server=ucs2,latin1' != '--collation-server=ucs2_unicode_ci --character-set-server=ucs2,latin1 --query-cache-size=1048576' 834s main.connect w1 [ pass ] 14459 834s worker[01] > Restart [mysqld.1 - pid: 1755, winpid: 1755] - using different config file 835s main.mysqlcheck w3 [ pass ] 1406 835s worker[03] > Restart [mysqld.1 - pid: 2651, winpid: 2651] - running with different options '--character-set-server=utf32,latin1 --collation-server=utf32_general_ci' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --character-set-server=latin1 --collation_server=latin1_swedish_ci --use-stat-tables=NEVER' 835s main.ctype_ucs2_def w2 [ pass ] 30 835s worker[02] > Restart [mysqld.1 - pid: 2819, winpid: 2819] - running with different options '--lower-case-table-names=1 --character-set-server=utf8' != '--collation-server=ucs2_unicode_ci --character-set-server=ucs2,latin1' 835s main.ctype_utf16_def w1 [ pass ] 46 835s worker[01] > Restart [mysqld.1 - pid: 2828, winpid: 2828] - running with different options '--character-set-server=utf8 --skip-character-set-client-handshake' != '--character-set-server=utf16,latin1 --collation-server=utf16_general_ci' 835s main.lowercase_utf8 w2 [ pass ] 1 835s worker[02] > Restart [mysqld.1 - pid: 2860, winpid: 2860] - running with different options '--character-set-server=utf8mb3 --collation-server=utf8mb3_unicode_ci' != '--lower-case-table-names=1 --character-set-server=utf8' 835s main.ctype_utf32_def w3 [ pass ] 39 835s main.bug47671 w1 [ pass ] 57 835s worker[03] > Restart [mysqld.1 - pid: 2887, winpid: 2887] - running with different options '--character-set-server=utf8mb4,latin1 --collation-server=utf8mb4_unicode_ci' != '--character-set-server=utf32,latin1 --collation-server=utf32_general_ci' 835s worker[01] > Restart [mysqld.1 - pid: 2862, winpid: 2862] - running with different options '--character-set-server=utf8' != '--character-set-server=utf8 --skip-character-set-client-handshake' 836s main.ctype_utf8mb4_unicode_ci_def w3 [ pass ] 32 836s worker[03] > Restart [mysqld.1 - pid: 2938, winpid: 2938] - running with different options '--character-sets-dir=/usr/share/mariadb/mariadb-test/std_data/ldml/ --log-error=/tmp/tmp.Rnqg5LLLOq/var/3/tmp/ctype_ldml_log.err' != '--character-set-server=utf8mb4,latin1 --collation-server=utf8mb4_unicode_ci' 836s main.ctype_utf8_def_upgrade w1 [ pass ] 39 836s worker[01] > Restart [mysqld.1 - pid: 2941, winpid: 2941] - running with different options '--disable-skip-name-resolve --character_set_server=latin1 --collation_server=latin1_swedish_ci' != '--character-set-server=utf8' 837s main.ctype_ldml w3 [ pass ] 176 837s worker[03] > Restart [mysqld.1 - pid: 2997, winpid: 2997] - running with different options '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --character_set_server=latin1 --collation_server=latin1_swedish_ci --sql_mode=STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' != '--character-sets-dir=/usr/share/mariadb/mariadb-test/std_data/ldml/ --log-error=/tmp/tmp.Rnqg5LLLOq/var/3/tmp/ctype_ldml_log.err' 837s main.mysql_upgrade-34014 w2 [ pass ] 848 837s worker[02] > Restart [mysqld.1 - pid: 2929, winpid: 2929] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --default-storage-engine=MyISAM --innodb-stats-persistent=OFF' != '--character-set-server=utf8mb3 --collation-server=utf8mb3_unicode_ci' 837s main.grant w1 [ pass ] 267 837s main.grant2 w1 [ pass ] 56 837s main.grant4 w1 [ pass ] 137 837s worker[01] > Restart [mysqld.1 - pid: 2995, winpid: 2995] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-archive --plugin-load-add=ha_archive.so --log-bin=master-bin --default-storage-engine=MyISAM' != '--disable-skip-name-resolve --character_set_server=latin1 --collation_server=latin1_swedish_ci' 838s main.ctype_utf8mb4_innodb w2 [ pass ] 431 838s worker[02] > Restart [mysqld.1 - pid: 3065, winpid: 3065] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --default-storage-engine=MyISAM' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --default-storage-engine=MyISAM --innodb-stats-persistent=OFF' 838s main.mysqldump-max w1 [ pass ] 474 838s worker[01] > Restart [mysqld.1 - pid: 3131, winpid: 3131] - running with different options '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-lock-wait-timeout=2 --default-storage-engine=MyISAM' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-archive --plugin-load-add=ha_archive.so --log-bin=master-bin --default-storage-engine=MyISAM' 838s main.lock_sync w2 [ skipped ] debug_sync is not available 838s worker[02] > Restart [mysqld.1 - pid: 3263, winpid: 3263] - running with different options '--loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --default-storage-engine=MyISAM' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --default-storage-engine=MyISAM' 839s main.mdl_sync w2 [ skipped ] debug_sync is not available 839s worker[02] > Restart [mysqld.1 - pid: 3366, winpid: 3366] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --default-storage-engine=MyISAM' != '--loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --default-storage-engine=MyISAM' 840s main.ctype_utf8 w2 [ pass ] 693 841s main.ctype_utf8mb4 w2 [ pass ] 152 841s main.implicit_commit w2 [ pass ] 66 841s main.ps_3innodb w2 [ pass ] 95 841s main.strict w2 [ pass ] 31 841s worker[02] > Restart [mysqld.1 - pid: 3434, winpid: 3434] - running with different options '--default-storage-engine=MyISAM' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --default-storage-engine=MyISAM' 849s main.partition_innodb_semi_consistent w1 [ pass ] 10038 849s worker[01] > Restart [mysqld.1 - pid: 3324, winpid: 3324] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --disable-userstat' != '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-lock-wait-timeout=2 --default-storage-engine=MyISAM' 850s main.userstat w1 [ pass ] 1058 850s worker[01] > Restart [mysqld.1 - pid: 3878, winpid: 3878] - running with different options '--enable-sql-safe-updates' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --disable-userstat' 851s main.sql_safe_updates w1 [ pass ] 43 851s worker[01] > Restart [mysqld.1 - pid: 3941, winpid: 3941] - running with different options '--enforce-storage-engine=myisam' != '--enable-sql-safe-updates' 851s main.bootstrap w2 [ pass ] 9634 851s worker[02] > Restart [mysqld.1 - pid: 3957, winpid: 3957] - running with different options '--pid-file=/tmp/tmp.Rnqg5LLLOq/var/2/run/mysqld.1.pid --general-log --general-log-file=' != '--default-storage-engine=MyISAM' 852s main.enforce_storage_engine_opt w1 [ pass ] 31 852s worker[01] > Restart [mysqld.1 - pid: 3972, winpid: 3972] - running with different options '--general-log --general-log-file=/tmp/tmp.Rnqg5LLLOq/var/1/log/master.log --log-output=FILE,TABLE --max-allowed-packet=32000000 --proxy-protocol-networks=* --sequence=on' != '--enforce-storage-engine=myisam' 852s main.log_state_bug33693 w2 [ pass ] 852s worker[02] > Restart [mysqld.1 - pid: 3987, winpid: 3987] - running with different options '--log-output=TABLE,FILE --general-log --slow-query-log=1' != '--pid-file=/tmp/tmp.Rnqg5LLLOq/var/2/run/mysqld.1.pid --general-log --general-log-file=' 852s main.subselect_mat_cost w2 [ pass ] 205 852s worker[02] > Restart [mysqld.1 - pid: 4020, winpid: 4020] - running with different options '--log-output=table,file --slow-query-log --general-log' != '--log-output=TABLE,FILE --general-log --slow-query-log=1' 868s main.log_tables w2 [ pass ] 14969 868s worker[02] > Restart [mysqld.1 - pid: 4039, winpid: 4039] - running with different options '--log-output=TABLE,FILE --general-log=0 --slow-query-log=0' != '--log-output=table,file --slow-query-log --general-log' 878s main.log_state w2 [ pass ] 10394 878s worker[02] > Restart [mysqld.1 - pid: 4064, winpid: 4064] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --log-output=TABLE,FILE --general-log=1 --slow-query-log=1' != '--log-output=TABLE,FILE --general-log=0 --slow-query-log=0' 879s main.create_or_replace w2 [ pass ] 253 879s worker[02] > Restart [mysqld.1 - pid: 4117, winpid: 4117] - running with different options '--skip-grant-tables --group-concat-max-len=1023' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --log-output=TABLE,FILE --general-log=1 --slow-query-log=1' 880s main.mysqldump w3 [ pass ] 43035 880s worker[03] > Restart [mysqld.1 - pid: 3063, winpid: 3063] - running with different options '--ignore-builtin-innodb --loose-innodb' != '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --character_set_server=latin1 --collation_server=latin1_swedish_ci --sql_mode=STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' 881s main.innodb_load_xa w3 [ skipped ] Need InnoDB plugin 881s worker[03] > Restart [mysqld.1 - pid: 4281, winpid: 4281] - running with different options '--ignore_builtin_innodb' != '--ignore-builtin-innodb --loose-innodb' 881s main.innodb_ignore_builtin w3 [ pass ] 881s worker[03] > Restart [mysqld.1 - pid: 4296, winpid: 4296] - running with different options '--init-file=/usr/share/mariadb/mariadb-test/std_data/init_file.dat --log-bin=mariadb-bin' != '--ignore_builtin_innodb' 882s main.init_file w3 [ pass ] 882s worker[03] > Restart [mysqld.1 - pid: 4313, winpid: 4313] - running with different options '--init-file=/usr/share/mariadb/mariadb-test/std_data/init_file_longline_3816.sql' != '--init-file=/usr/share/mariadb/mariadb-test/std_data/init_file.dat --log-bin=mariadb-bin' 882s main.mysql_upgrade-6984 w2 [ pass ] 2103 882s worker[02] > Restart [mysqld.1 - pid: 4329, winpid: 4329] - running with different options '--init_connect=select * from test.t1 where 0' != '--skip-grant-tables --group-concat-max-len=1023' 882s main.init_file_longline_3816 w3 [ pass ] 41 882s worker[03] > Restart [mysqld.1 - pid: 4342, winpid: 4342] - running with different options '--init_connect=set @a='a\0c'' != '--init-file=/usr/share/mariadb/mariadb-test/std_data/init_file_longline_3816.sql' 882s main.init_connection_query_cache w2 [ pass ] 43 882s worker[02] > Restart [mysqld.1 - pid: 4363, winpid: 4363] - running with different options '--init_connect=set @a='something unique to have MTR start a dedicated mariadbd for this test and shutdown it after the test'' != '--init_connect=select * from test.t1 where 0' 883s main.init_connect w3 [ pass ] 65 883s worker[03] > Restart [mysqld.1 - pid: 4372, winpid: 4372] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-skip-ssl' != '--init_connect=set @a='a\0c'' 883s main.delayed_blob w2 [ pass ] 43 883s worker[02] > Restart [mysqld.1 - pid: 4404, winpid: 4404] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0 --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--init_connect=set @a='something unique to have MTR start a dedicated mariadbd for this test and shutdown it after the test'' 885s main.delete_innodb w2 [ pass ] 1114 885s worker[02] > Restart [mysqld.1 - pid: 4468, winpid: 4468] - running with different options '--use-stat-tables=complementary --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --use-stat-tables=complementary --loose-sequence --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0 --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 886s main.mysql_client_test w1 [ pass ] 33519 886s worker[01] > Restart [mysqld.1 - pid: 4006, winpid: 4006] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-sequence' != '--general-log --general-log-file=/tmp/tmp.Rnqg5LLLOq/var/1/log/master.log --log-output=FILE,TABLE --max-allowed-packet=32000000 --proxy-protocol-networks=* --sequence=on' 886s main.statistics_json w2 [ pass ] 1324 887s worker[02] > Restart [mysqld.1 - pid: 4608, winpid: 4608] - running with different options '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb-buffer-pool-size=32M --innodb_buffer_pool_dump_at_shutdown=off --innodb_buffer_pool_load_at_startup=off --innodb-stats-persistent=1 --innodb-stats-auto-recalc=off' != '--use-stat-tables=complementary --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --use-stat-tables=complementary --loose-sequence --loose-sequence' 888s main.join_cache w1 [ pass ] 1397 888s worker[01] > Restart [mysqld.1 - pid: 4640, winpid: 4640] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb-page-size=16k' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-sequence' 889s main.analyze_engine_stats2 w2 [ pass ] 1848 889s worker[02] > Restart [mysqld.1 - pid: 4727, winpid: 4727] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb-buffer-pool-size=32M --innodb_buffer_pool_dump_at_shutdown=off --innodb_buffer_pool_load_at_startup=off --innodb-stats-persistent=1 --innodb-stats-auto-recalc=off' != '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb-buffer-pool-size=32M --innodb_buffer_pool_dump_at_shutdown=off --innodb_buffer_pool_load_at_startup=off --innodb-stats-persistent=1 --innodb-stats-auto-recalc=off' 890s main.host_cache_size_functionality w1 [ pass ] 1408 890s worker[01] > Restart [mysqld.1 - pid: 4775, winpid: 4775] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb-page-size=8K' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb-page-size=16k' 892s main.analyze_stmt_prefetch_count w2 [ pass ] 1739 892s worker[02] > Restart [mysqld.1 - pid: 4824, winpid: 4824] - running with different options '--innodb_prefix_index_cluster_optimization=off --optimizer_switch=extended_keys=off --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb-buffer-pool-size=32M --innodb_buffer_pool_dump_at_shutdown=off --innodb_buffer_pool_load_at_startup=off --innodb-stats-persistent=1 --innodb-stats-auto-recalc=off' 892s File /usr/share/mariadb/mariadb-test/main/innodb_ext_key.result is read-only; trying to patch anyway 893s main.innodb_ext_key 'off,unoptimized' w2 [ pass ] 598 893s worker[02] > Restart [mysqld.1 - pid: 4860, winpid: 4860] - running with different options '--innodb_prefix_index_cluster_optimization=off --optimizer_switch=extended_keys=on --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' != '--innodb_prefix_index_cluster_optimization=off --optimizer_switch=extended_keys=off --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' 893s File /usr/share/mariadb/mariadb-test/main/innodb_ext_key.result is read-only; trying to patch anyway 894s main.innodb_ext_key 'on,unoptimized' w2 [ pass ] 505 894s worker[02] > Restart [mysqld.1 - pid: 4918, winpid: 4918] - running with different options '--innodb_prefix_index_cluster_optimization=off --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb_prefix_index_cluster_optimization=off --optimizer_switch=extended_keys=on --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' 895s main.mdev-25830 'unoptimized' w2 [ pass ] 14 895s worker[02] > Restart [mysqld.1 - pid: 4962, winpid: 4962] - running with different options '--innodb_prefix_index_cluster_optimization=on --optimizer_switch=extended_keys=off --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' != '--innodb_prefix_index_cluster_optimization=off --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 895s File /usr/share/mariadb/mariadb-test/main/innodb_ext_key.result is read-only; trying to patch anyway 896s main.innodb_ext_key 'covering,off' w2 [ pass ] 519 896s worker[02] > Restart [mysqld.1 - pid: 5002, winpid: 5002] - running with different options '--innodb_prefix_index_cluster_optimization=on --optimizer_switch=extended_keys=on --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' != '--innodb_prefix_index_cluster_optimization=on --optimizer_switch=extended_keys=off --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' 897s File /usr/share/mariadb/mariadb-test/main/innodb_ext_key.result is read-only; trying to patch anyway 897s main.innodb_ext_key 'covering,on' w2 [ pass ] 483 897s worker[02] > Restart [mysqld.1 - pid: 5060, winpid: 5060] - running with different options '--innodb_prefix_index_cluster_optimization=on --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb_prefix_index_cluster_optimization=on --optimizer_switch=extended_keys=on --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --innodb_stats_auto_recalc=0' 898s main.mdev-25830 'covering' w2 [ pass ] 12 898s worker[02] > Restart [mysqld.1 - pid: 5116, winpid: 5116] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --large-pages' != '--innodb_prefix_index_cluster_optimization=on --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 899s main.large_pages w2 [ pass ] 6 899s worker[02] > Restart [mysqld.1 - pid: 5152, winpid: 5152] - running with different options '--log-bin=master-bin --log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --large-pages' 899s main.long_unique_innodb w1 [ pass ] 8018 899s worker[01] > Restart [mysqld.1 - pid: 4819, winpid: 4819] - running with different options '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-archive --plugin-load-add=ha_archive.so' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb-page-size=8K' 900s main.drop_table_force w1 [ pass ] 22 900s worker[01] > Restart [mysqld.1 - pid: 5217, winpid: 5217] - running with different options '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-enable-partition' != '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-archive --plugin-load-add=ha_archive.so' 900s main.flush_block_commit_notembedded w2 [ pass ] 1112 900s worker[02] > Restart [mysqld.1 - pid: 5180, winpid: 5180] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --loose-enable-partition' != '--log-bin=master-bin --log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 901s main.alter_table_online_debug 'binlog' w1 [ skipped ] debug_sync is not available 901s worker[01] > Restart [mysqld.1 - pid: 5278, winpid: 5278] - running with different options '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-enable-partition' 902s main.alter_table_online 'binlog' w1 [ pass ] 72 902s main.innodb_mysql_lock2 w2 [ pass ] 513 902s worker[02] > Restart [mysqld.1 - pid: 5306, winpid: 5306] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --loose-innodb_default_row_format=COMPACT' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin --loose-enable-partition' 902s main.bug39022 w1 [ pass ] 212 902s main.commit_1innodb w1 [ pass ] 188 902s worker[01] > Restart [mysqld.1 - pid: 5333, winpid: 5333] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin' != '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 902s main.partition_exchange w2 [ pass ] 123 902s worker[02] > Restart [mysqld.1 - pid: 5396, winpid: 5396] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --use-stat-tables=complementary --loose-enable-partition --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --loose-innodb_default_row_format=COMPACT' 903s main.create_select w1 [ pass ] 8 903s worker[01] > Restart [mysqld.1 - pid: 5444, winpid: 5444] - running with different options '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin' 904s main.sp_trans w1 [ pass ] 170 904s worker[01] > Restart [mysqld.1 - pid: 5522, winpid: 5522] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin' != '--log-bin=master-bin --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 905s main.xa_binlog w1 [ pass ] 17 905s worker[01] > Restart [mysqld.1 - pid: 5598, winpid: 5598] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-enable-partition' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --log-bin=master-bin' 905s main.stat_tables_innodb w2 [ pass ] 1616 905s worker[02] > Restart [mysqld.1 - pid: 5491, winpid: 5491] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --use-stat-tables=complementary --loose-enable-partition --loose-sequence' 905s main.alter_table_online_debug 'nobinlog' w1 [ skipped ] debug_sync is not available 905s worker[01] > Restart [mysqld.1 - pid: 5650, winpid: 5650] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-enable-partition' 906s main.alter_table_locknone w2 [ pass ] 43 906s main.auto_increment_ranges_innodb w2 [ pass ] 126 906s main.partition_explicit_prune w1 [ pass ] 282 906s worker[01] > Restart [mysqld.1 - pid: 5715, winpid: 5715] - running with different options '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --loose-sequence' 907s main.mysql_upgrade-20228 w2 [ pass ] 664 907s main.partition_innodb2 w1 [ pass ] 10 907s worker[01] > Restart [mysqld.1 - pid: 5837, winpid: 5837] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-skip-safemalloc --loose-mutex-deadlock-detector=0 --loose-innodb-changed-pages --loose-innodb-cmp --loose-innodb-cmp-per-index --loose-innodb-cmp-reset --loose-innodb-cmpmem --loose-innodb-cmpmem-reset --loose-innodb-index-stats --loose-innodb-lock-waits --loose-innodb-sys-columns --loose-innodb-sys-fields --loose-innodb-sys-foreign --loose-innodb-sys-foreign-cols --loose-innodb-sys-tables --loose-innodb-sys-tablestats --loose-innodb-tablespaces-encryption' != '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' 907s main.mysql_upgrade_to_100502 w2 [ pass ] 652 908s main.partition_alter w2 [ pass ] 127 908s main.partition_cache w2 [ pass ] 149 908s main.partition_cache_innodb w2 [ pass ] 36 908s worker[02] > Restart [mysqld.1 - pid: 5680, winpid: 5680] - running with different options '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition' 909s main.partition_datatype w2 [ pass ] 36 909s main.partition_geometries w2 [ pass ] 36 910s main.information_schema_all_engines w1 [ pass ] 2035 910s worker[01] > Restart [mysqld.1 - pid: 5921, winpid: 5921] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-lock-wait-timeout=2' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-skip-safemalloc --loose-mutex-deadlock-detector=0 --loose-innodb-changed-pages --loose-innodb-cmp --loose-innodb-cmp-per-index --loose-innodb-cmp-reset --loose-innodb-cmpmem --loose-innodb-cmpmem-reset --loose-innodb-index-stats --loose-innodb-lock-waits --loose-innodb-sys-columns --loose-innodb-sys-fields --loose-innodb-sys-foreign --loose-innodb-sys-foreign-cols --loose-innodb-sys-tables --loose-innodb-sys-tablestats --loose-innodb-tablespaces-encryption' 910s main.bug46760 w1 [ pass ] 5 910s worker[01] > Restart [mysqld.1 - pid: 6054, winpid: 6054] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-strict-mode=off --loose-innodb-strict-mode=0 --old --loose-innodb-strict-mode=0' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-lock-wait-timeout=2' 911s main.partition_innodb w2 [ pass ] 1840 911s main.partition_innodb_plugin w2 [ pass ] 34 911s worker[02] > Restart [mysqld.1 - pid: 5984, winpid: 5984] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition' != '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 911s main.row-checksum-old w1 [ pass ] 14 911s worker[01] > Restart [mysqld.1 - pid: 6121, winpid: 6121] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-strict-mode=off --loose-innodb-strict-mode=0' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-strict-mode=off --loose-innodb-strict-mode=0 --old --loose-innodb-strict-mode=0' 912s main.partition_mrr_innodb w2 [ pass ] 32 912s main.truncate-stale-6500 w2 [ pass ] 7 912s worker[02] > Restart [mysqld.1 - pid: 6151, winpid: 6151] - running with different options '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition' 912s main.row-checksum w1 [ pass ] 12 912s worker[01] > Restart [mysqld.1 - pid: 6189, winpid: 6189] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-innodb-strict-mode=off --loose-innodb-strict-mode=0' 912s main.type_datetime_hires w2 [ pass ] 29 913s main.view w2 [ pass ] 621 913s worker[02] > Restart [mysqld.1 - pid: 6238, winpid: 6238] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so' != '--loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 914s main.backup_interaction w2 [ pass ] 129 918s main.backup_lock w2 [ pass ] 3431 918s main.backup_priv w2 [ pass ] 203 926s main.mysql_upgrade w3 [ pass ] 43192 926s worker[03] > Restart [mysqld.1 - pid: 6781, winpid: 6781] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-sequence --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-enable-partition --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-skip-ssl' 929s main.index_merge_innodb w3 [ pass ] 1877 929s worker[03] > Restart [mysqld.1 - pid: 7340, winpid: 7340] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-sequence --loose-sequence' 931s main.cte_recursive w3 [ pass ] 1132 931s worker[03] > Restart [mysqld.1 - pid: 7386, winpid: 7386] - running with different options '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --loose-sequence' 932s main.subselect_sj2_mat w3 [ pass ] 281 932s worker[03] > Restart [mysqld.1 - pid: 7425, winpid: 7425] - running with different options '--slow_query_log=OFF --loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' 933s main.analyze_engine_stats 'slow_query_log_off' w3 [ pass ] 123 933s worker[03] > Restart [mysqld.1 - pid: 7478, winpid: 7478] - running with different options '--slow_query_log=ON --loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--slow_query_log=OFF --loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 933s main.backup_stages w2 [ pass ] 15040 933s main.backup_syntax w2 [ pass ] 3 933s worker[02] > Restart [mysqld.1 - pid: 6324, winpid: 6324] - running with different options '--loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so' 933s main.analyze_engine_stats 'slow_query_log_on' w3 [ pass ] 119 933s worker[03] > Restart [mysqld.1 - pid: 7537, winpid: 7537] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --use-stat-tables=complementary' != '--slow_query_log=ON --loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 934s main.stat_tables_innodb_debug w3 [ skipped ] debug_sync is not available 934s worker[03] > Restart [mysqld.1 - pid: 7608, winpid: 7608] - running with different options '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence --use-stat-tables=complementary' 935s main.analyze w3 [ pass ] 45 935s main.costs w3 [ pass ] 9 935s worker[03] > Restart [mysqld.1 - pid: 7636, winpid: 7636] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' != '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 936s main.derived_split_innodb w3 [ pass ] 129 936s worker[03] > Restart [mysqld.1 - pid: 7694, winpid: 7694] - running with different options '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' 936s main.innodb_mysql_lock w2 [ pass ] 2540 936s main.mdl w2 [ pass ] 9 936s worker[02] > Restart [mysqld.1 - pid: 7570, winpid: 7570] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-type_mysql_json --plugin-load-add=type_mysql_json.so' != '--loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 936s main.desc_index_min_max w3 [ pass ] 15 937s main.desc_index_range w3 [ pass ] 26 938s main.group_min_max w3 [ pass ] 1091 938s worker[03] > Restart [mysqld.1 - pid: 7734, winpid: 7734] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' != '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 938s main.mysql_upgrade_mysql_json_datatype w2 [ pass ] 628 938s worker[02] > Restart [mysqld.1 - pid: 7805, winpid: 7805] - sh script to run 938s main.lowercase_mixed_tmpdir_innodb w2 [ skipped ] Test requires: 'lowercase2' 938s worker[02] > Restart [mysqld.1 - pid: 7895, winpid: 7895] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --lower-case-table-names=2' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --lower-case-table-names=2 --tmpdir=/tmp/tmp.Rnqg5LLLOq/var/2/tmp/MixedCase' 938s main.group_min_max_notembedded w3 [ pass ] 8 939s main.lowercase_table2 w2 [ skipped ] Test requires: 'lowercase2' 939s worker[02] > Restart [mysqld.1 - pid: 7958, winpid: 7958] - running with different options '--plugin-load-add=auth_test_plugin.so --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --lower-case-table-names=2' 941s main.information_schema w3 [ pass ] 2826 942s main.innodb_icp w3 [ pass ] 318 942s main.join_optimizer w3 [ pass ] 53 942s main.log_slow_innodb w3 [ pass ] 71 942s main.optimizer_costs w3 [ pass ] 34 942s main.optimizer_crash w3 [ pass ] 30 943s main.order_by_innodb w3 [ pass ] 136 943s main.order_by_optimizer_innodb w3 [ pass ] 53 943s main.range w3 [ pass ] 446 943s main.plugin_auth w2 [ pass ] 3453 943s worker[02] > Restart [mysqld.1 - pid: 8017, winpid: 8017] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --plugin-maturity=unknown' != '--plugin-load-add=auth_test_plugin.so --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 944s main.range_mrr_icp w3 [ pass ] 469 944s main.range_vs_index_merge_innodb w3 [ pass ] 697 944s worker[03] > Restart [mysqld.1 - pid: 7897, winpid: 7897] - running with different options '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' 945s main.secondary_key_costs w3 [ pass ] 32 945s worker[03] > Restart [mysqld.1 - pid: 8341, winpid: 8341] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' != '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 946s main.plugin_innodb w2 [ pass ] 1641 946s worker[02] > Restart [mysqld.1 - pid: 8384, winpid: 8384] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --skip-log-bin' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --plugin-maturity=unknown' 946s main.subselect_elimination w3 [ pass ] 17 946s main.subselect_innodb w3 [ pass ] 386 947s main.subselect_sj2 w3 [ pass ] 265 948s main.subselect_sj2_jcl6 w3 [ pass ] 941 948s worker[03] > Restart [mysqld.1 - pid: 8408, winpid: 8408] - running with different options '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-sequence' 953s main.update_use_source w3 [ pass ] 1787 953s worker[03] > Restart [mysqld.1 - pid: 8555, winpid: 8555] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --tmpdir=/tmp/tmp.Rnqg5LLLOq/var/3//tmp' != '--loose-sequence --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 953s main.xa_prepared_binlog_off w2 [ pass ] 4223 953s worker[02] > Restart [mysqld.1 - pid: 8586, winpid: 8586] - running with different options '--use-stat-tables=complementary --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --skip-log-bin' 953s main.stat_tables_par_innodb w2 [ skipped ] debug_sync is not available 953s main.temp_table w3 [ pass ] 76 953s worker[03] > Restart [mysqld.1 - pid: 8634, winpid: 8634] - running with different options '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --tmpdir=/tmp/tmp.Rnqg5LLLOq/var/3//tmp' 953s main.alter_events w3 [ pass ] 124 953s main.statistics w2 [ pass ] 1646 953s main.statistics_index_crash-7362 w2 [ pass ] 11 953s worker[02] > Restart [mysqld.1 - pid: 8636, winpid: 8636] - running with different options '--innodb --innodb-page-size=6000' != '--use-stat-tables=complementary --innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 953s main.alter_table w3 [ pass ] 1015 954s main.alter_table_autoinc-5574 w3 [ pass ] 7 954s main.alter_table_errors w3 [ pass ] 18 954s main.alter_table_lock w3 [ pass ] 166 954s main.alter_table_online 'nobinlog' w3 [ pass ] 97 954s main.alter_table_trans w3 [ pass ] 73 954s main.analyze_stmt_orderby w3 [ pass ] 41 954s main.backup_lock_debug w3 [ skipped ] debug_sync is not available 955s main.backup_log w3 [ pass ] 59 956s main.plugin_loaderr w2 [ pass ] 1400 956s worker[02] > Restart [mysqld.1 - pid: 8922, winpid: 8922] - running with different options '--old-mode= --innodb-page-size=4k' != '--innodb --innodb-page-size=6000' 957s main.bootstrap_innodb w3 [ pass ] 1944 957s main.cache_innodb w3 [ pass ] 172 957s main.check_constraint_innodb w3 [ pass ] 27 957s main.column_compression w3 [ pass ] 208 958s main.commit w3 [ pass ] 29 958s main.mysql_upgrade-28915 w2 [ pass ] 1474 958s worker[02] > Restart [mysqld.1 - pid: 8980, winpid: 8980] - running with different options '--innodb' != '--old-mode= --innodb-page-size=4k' 959s main.alter_table_combinations 'innodb' w2 [ pass ] 46 959s worker[02] > Restart [mysqld.1 - pid: 9132, winpid: 9132] - running with different options '--max-allowed-packet=24M --loose-skip-innodb --key-buffer-size=1M' != '--innodb' 960s main.myisam-blob w2 [ pass ] 464 960s worker[02] > Restart [mysqld.1 - pid: 9173, winpid: 9173] - running with different options '--key_buffer_size=2M --small.key_buffer_size=256K --small.key_buffer_size=128K' != '--max-allowed-packet=24M --loose-skip-innodb --key-buffer-size=1M' 960s main.key_cache w2 [ pass ] 96 960s worker[02] > Restart [mysqld.1 - pid: 9204, winpid: 9204] - running with different options '--key_cache_segments=7' != '--key_buffer_size=2M --small.key_buffer_size=256K --small.key_buffer_size=128K' 962s main.backup_locks w1 [ pass ] 49052 962s worker[01] > Restart [mysqld.1 - pid: 9233, winpid: 9233] - running with different options '--lc-messages=de_DE' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so' 962s main.select_pkeycache 'nm' w2 [ pass ] 1088 962s worker[02] > Restart [mysqld.1 - pid: 9221, winpid: 9221] - running with different options '--log-bin=master-bin --log-bin=master-bin' != '--key_cache_segments=7' 962s main.locale w1 [ pass ] 58 962s worker[01] > Restart [mysqld.1 - pid: 9262, winpid: 9262] - running with different options '--log-bin=master-bin --loose-enable-partition' != '--lc-messages=de_DE' 963s main.ctype_cp932_binlog_stm w2 [ pass ] 416 963s worker[02] > Restart [mysqld.1 - pid: 9273, winpid: 9273] - running with different options '--log-bin=master-bin' != '--log-bin=master-bin --log-bin=master-bin' 963s main.partition_binlog w1 [ pass ] 110 963s worker[01] > Restart [mysqld.1 - pid: 9304, winpid: 9304] - running with different options '--log-error=/tmp/tmp.Rnqg5LLLOq/var/1/tmp/system_mysql_db_error_log.err' != '--log-bin=master-bin --loose-enable-partition' 963s main.system_mysql_db_error_log w1 [ pass ] 29 963s worker[01] > Restart [mysqld.1 - pid: 9342, winpid: 9342] - running with different options '--log-output=table,file --slow-query-log --log-queries-not-using-indexes --myisam-recover-options=' != '--log-error=/tmp/tmp.Rnqg5LLLOq/var/1/tmp/system_mysql_db_error_log.err' 965s main.show_check w1 [ pass ] 929 965s worker[01] > Restart [mysqld.1 - pid: 9379, winpid: 9379] - running with different options '--log-output=table,file' != '--log-output=table,file --slow-query-log --log-queries-not-using-indexes --myisam-recover-options=' 965s main.backup_lock_binlog w2 [ pass ] 2004 966s main.compound w2 [ pass ] 95 966s main.create_drop_binlog w2 [ skipped ] Need udf example 966s main.create_drop_function w2 [ pass ] 3 966s main.ctype_gbk_binlog w2 [ pass ] 61 967s main.concurrent_innodb_safelog w3 [ pass ] 9103 971s main.flush_and_binlog w2 [ pass ] 5007 971s main.mdev-31636 w2 [ pass ] 1 971s main.multi_update_binlog w2 [ pass ] 91 971s main.mysql_binary_mode w2 [ pass ] 172 972s main.mysql_binary_zero_insert w2 [ pass ] 158 972s main.concurrent_innodb_unsafelog w3 [ pass ] 5080 972s main.consistent_snapshot w3 [ pass ] 8 972s main.status w1 [ pass ] 7086 972s worker[01] > Restart [mysqld.1 - pid: 9398, winpid: 9398] - running with different options '--loose-sequence --slow-query-log --log-queries-not-using-indexes' != '--log-output=table,file' 972s main.ctype_uca_innodb w3 [ pass ] 17 973s main.union w1 [ pass ] 474 973s worker[01] > Restart [mysqld.1 - pid: 9623, winpid: 9623] - running with different options '--slow-query-log --slow-query-log-file=slow.log --log-queries-not-using-indexes' != '--loose-sequence --slow-query-log --log-queries-not-using-indexes' 974s main.multi_statement w1 [ pass ] 52 974s worker[01] > Restart [mysqld.1 - pid: 9726, winpid: 9726] - running with different options '--log-slow-filter= --log_queries_not_using_indexes=0' != '--slow-query-log --slow-query-log-file=slow.log --log-queries-not-using-indexes' 974s main.ctype_upgrade w3 [ pass ] 1980 974s main.ctype_utf32_innodb w3 [ pass ] 5 975s main.log_slow_filter w1 [ pass ] 42 975s worker[01] > Restart [mysqld.1 - pid: 9787, winpid: 9787] - running with different options '--slow-query-log --long-query-time=0.00000 --log-slow-verbosity=query_plan,explain' != '--log-slow-filter= --log_queries_not_using_indexes=0' 975s main.mysql_upgrade_view w2 [ pass ] 2848 975s main.mysqlbinlog_raw_mode w2 [ pass ] 120 975s main.explain_slowquerylog w1 [ pass ] 46 975s worker[01] > Restart [mysqld.1 - pid: 9836, winpid: 9836] - running with different options '--slow-query-log --long-query-time=0.00001 --log-slow-verbosity=query_plan,explain,innodb' != '--slow-query-log --long-query-time=0.00000 --log-slow-verbosity=query_plan,explain' 975s main.mysqldump_restore w2 [ pass ] 526 975s main.analyze_stmt_slow_query_log w1 [ pass ] 37 975s worker[01] > Restart [mysqld.1 - pid: 9882, winpid: 9882] - running with different options '--loose-enable-partition --loose-blackhole --plugin-load-add=ha_blackhole.so' != '--slow-query-log --long-query-time=0.00001 --log-slow-verbosity=query_plan,explain,innodb' 976s main.partition_blackhole w1 [ pass ] 59 976s worker[01] > Restart [mysqld.1 - pid: 9973, winpid: 9973] - running with different options '--loose-blackhole --plugin-load-add=ha_blackhole.so' != '--loose-enable-partition --loose-blackhole --plugin-load-add=ha_blackhole.so' 976s main.blackhole w1 [ pass ] 65 976s worker[01] > Restart [mysqld.1 - pid: 9990, winpid: 9990] - running with different options '--loose-debug-dbug=d,4x_server_emul' != '--loose-blackhole --plugin-load-add=ha_blackhole.so' 977s main.mysqldump-compat w1 [ pass ] 199 977s worker[01] > Restart [mysqld.1 - pid: 10007, winpid: 10007] - running with different options '--loose-des-key-file=/usr/share/mariadb/mariadb-test/std_data/des_key_file' != '--loose-debug-dbug=d,4x_server_emul' 977s main.func_encrypt w1 [ pass ] 52 977s worker[01] > Restart [mysqld.1 - pid: 10031, winpid: 10031] - running with different options '--loose-disable-ssl' != '--loose-des-key-file=/usr/share/mariadb/mariadb-test/std_data/des_key_file' 978s main.ssl_7937 'nossl' w1 [ pass ] 49 978s worker[01] > Restart [mysqld.1 - pid: 10048, winpid: 10048] - running with different options '--ssl-key= --ssl-cert= --ssl-ca= --loose-enable-named-pipe' != '--loose-disable-ssl' 981s main.deadlock_innodb w3 [ pass ] 6055 981s main.ssl_autoverify 'auto,unix' w1 [ pass ] 759 981s worker[01] > Restart [mysqld.1 - pid: 10158, winpid: 10158] - running with different options '--loose-enable-named-pipe' != '--ssl-key= --ssl-cert= --ssl-ca= --loose-enable-named-pipe' 981s main.default w3 [ pass ] 203 981s main.default_innodb w3 [ pass ] 8 981s main.cli_options_force_protocol_win w1 [ skipped ] Need windows 981s main.mysqldump-win w1 [ skipped ] Need windows 982s main.delete_use_source_engines w3 [ pass ] 536 982s main.derived_cond_pushdown_innodb w3 [ pass ] 3 982s main.ssl_autoverify 'pem,unix' w1 [ pass ] 804 982s main.auth_named_pipe w1 [ skipped ] Need windows 982s main.drop w3 [ pass ] 243 982s main.named_pipe w1 [ skipped ] Need windows 982s worker[01] > Restart [mysqld.1 - pid: 10223, winpid: 10223] - running with different options '--loose-enable-partition --loose-sequence --symbolic-links=1' != '--loose-enable-named-pipe' 982s main.endspace w3 [ pass ] 22 982s main.explain_innodb w3 [ pass ] 2 982s main.explain_json_innodb w3 [ pass ] 7 982s main.ext_key_noPK_6794 w3 [ pass ] 5 982s main.fast_prefix_index_fetch_innodb w3 [ pass ] 23 983s main.flush-innodb w3 [ pass ] 752 984s main.flush-innodb-notembedded w3 [ pass ] 508 984s main.partition w1 [ pass ] 1436 984s worker[01] > Restart [mysqld.1 - pid: 10734, winpid: 10734] - running with different options '--use-stat-tables=complementary --loose-sequence --loose-enable-partition' != '--loose-enable-partition --loose-sequence --symbolic-links=1' 985s main.flush_block_commit w3 [ pass ] 1111 985s main.flush_read_lock w3 [ skipped ] debug_sync is not available 985s main.foreign_key w3 [ pass ] 10 985s main.mysqltest w2 [ pass ] 9676 985s main.func_analyse w3 [ pass ] 26 985s main.ps_change_master w2 [ pass ] 4 985s main.func_group_innodb w3 [ pass ] 33 986s main.trigger_wl3253 w2 [ pass ] 249 986s main.func_json w3 [ pass ] 137 986s main.func_rollback w3 [ pass ] 37 986s main.user_var-binlog w2 [ pass ] 76 986s worker[02] > Restart [mysqld.1 - pid: 9341, winpid: 9341] - running with different options '--loose-sequence --loose-enable-partition' != '--log-bin=master-bin' 986s main.function_defaults_innodb w3 [ pass ] 562 987s main.get_diagnostics w3 [ pass ] 84 987s main.gis-alter_table w3 [ pass ] 4 987s main.selectivity w1 [ pass ] 2401 987s worker[01] > Restart [mysqld.1 - pid: 10788, winpid: 10788] - running with different options '--use-stat-tables=complementary --loose-enable-partition --loose-sequence' != '--use-stat-tables=complementary --loose-sequence --loose-enable-partition' 987s main.opt_trace w2 [ pass ] 678 987s worker[02] > Restart [mysqld.1 - pid: 10910, winpid: 10910] - running with different options '--loose-enable-partition --loose-sequence' != '--loose-sequence --loose-enable-partition' 988s main.partition_range w2 [ pass ] 123 988s main.sargable_date_cond w2 [ pass ] 116 988s main.stat_tables w1 [ pass ] 1227 988s worker[01] > Restart [mysqld.1 - pid: 10957, winpid: 10957] - running with different options '--loose-enable-partition --loose-skip-blackhole' != '--use-stat-tables=complementary --loose-enable-partition --loose-sequence' 989s main.greedy_optimizer w3 [ pass ] 2098 989s main.partition_not_blackhole w1 [ pass ] 2 989s worker[01] > Restart [mysqld.1 - pid: 11002, winpid: 11002] - running with different options '--loose-enable-partition --plugin-maturity=unknown' != '--loose-enable-partition --loose-skip-blackhole' 989s main.group_by_innodb w3 [ pass ] 25 990s main.group_min_max_innodb w3 [ pass ] 122 990s main.ignored_index_innodb w3 [ pass ] 6 990s main.partition_example w1 [ pass ] 44 990s worker[01] > Restart [mysqld.1 - pid: 11035, winpid: 11035] - running with different options '--loose-enable-partition --symbolic-links=1' != '--loose-enable-partition --plugin-maturity=unknown' 990s main.index_intersect_innodb w3 [ pass ] 164 990s main.partition_not_windows w1 [ pass ] 58 990s worker[01] > Restart [mysqld.1 - pid: 11073, winpid: 11073] - running with different options '--loose-enable-partition --tmp_table_size=1024' != '--loose-enable-partition --symbolic-links=1' 990s main.information_schema_db w3 [ pass ] 366 990s main.information_schema_inno w3 [ pass ] 33 990s main.information_schema_temp_table w3 [ pass ] 66 991s main.innodb_bug878769 w3 [ pass ] 5 991s main.innodb_group w3 [ pass ] 2 991s main.innodb_mrr_cpk w3 [ pass ] 69 991s main.innodb_utf8 w3 [ pass ] 7 991s main.insert_innodb w3 [ pass ] 11 991s main.join_cache_notasan w3 [ pass ] 9 991s main.multi_update w1 [ pass ] 799 991s worker[01] > Restart [mysqld.1 - pid: 11097, winpid: 11097] - running with different options '--loose-enable-partition' != '--loose-enable-partition --tmp_table_size=1024' 991s main.join_outer_innodb w3 [ pass ] 72 991s main.keyread w3 [ pass ] 9 991s main.kill_debug w3 [ skipped ] debug_sync is not available 991s main.leaks w3 [ pass ] 3 992s main.loaddata_autocom_innodb w3 [ pass ] 5 992s main.assign_key_cache w1 [ pass ] 35 992s main.lock_kill w3 [ pass ] 8 992s main.auto_increment_ranges_myisam w1 [ pass ] 17 992s main.locked_temporary-5955 w3 [ pass ] 2 992s main.locking_clause w3 [ pass ] 7 992s main.column_compression_parts w1 [ pass ] 79 992s main.ctype_partitions w1 [ pass ] 4 992s main.ctype_uca_partitions w1 [ pass ] 9 992s main.enforce_storage_engine w1 [ pass ] 10 992s main.explain_json_format_partitions w1 [ pass ] 2 992s main.explain_non_select w1 [ pass ] 29 993s main.log_tables_upgrade w3 [ pass ] 733 993s main.mdev13607 w3 [ pass ] 39 993s main.mrr_derived_crash_4610 w3 [ pass ] 25 993s main.multi_update_innodb w3 [ pass ] 127 993s main.huge_frm-6224 w1 [ pass ] 620 993s main.mysql57nopart w3 [ pass ] 2 993s main.ignored_index w1 [ pass ] 33 993s main.information_schema_part w1 [ pass ] 9 993s main.sp w2 [ pass ] 5491 993s worker[02] > Restart [mysqld.1 - pid: 10966, winpid: 10966] - running with different options '--plugin-load-add=auth_test_plugin.so --loose-enable-performance-schema --max-allowed-packet=32000000 --proxy-protocol-networks=::1/32,127.0.0.0/8,localhost --sequence=on' != '--loose-enable-partition --loose-sequence' 993s main.mysql_tzinfo_to_sql_symlink w3 [ pass ] 67 994s main.lock w1 [ pass ] 47 994s main.long_unique w1 [ pass ] 146 994s main.partition_bug18198 w1 [ pass ] 16 994s main.partition_cache_myisam w1 [ pass ] 21 994s main.partition_charset w1 [ pass ] 10 994s main.partition_column w1 [ pass ] 34 994s main.partition_column_prune w1 [ pass ] 11 994s main.partition_csv w1 [ pass ] 27 995s main.partition_default w1 [ pass ] 58 995s main.partition_error w1 [ pass ] 65 995s main.partition_grant w1 [ pass ] 9 995s main.partition_hash w1 [ pass ] 25 995s main.partition_key_cache w1 [ pass ] 100 995s main.partition_list w1 [ pass ] 12 995s main.partition_mgm w1 [ pass ] 7 995s main.partition_mgm_err w1 [ pass ] 14 995s main.partition_mgm_err2 w1 [ pass ] 5 996s main.partition_mrr_aria w1 [ pass ] 16 996s main.partition_mrr_myisam w1 [ pass ] 10 996s main.partition_myisam w1 [ pass ] 9 996s main.partition_order w1 [ pass ] 31 996s main.mysql_upgrade_noengine w3 [ pass ] 2588 996s main.partition_pruning w1 [ pass ] 225 996s main.partition_rename_longfilename w1 [ pass ] 4 996s main.partition_sp w1 [ pass ] 7 996s main.partition_symlink w1 [ pass ] 18 997s main.partition_truncate w1 [ pass ] 2 997s main.partition_ucs2 w1 [ pass ] 1 997s main.partition_utf8 w1 [ pass ] 8 997s main.partition_utf8-debug w1 [ skipped ] debug_sync is not available 997s main.partition_windows w1 [ skipped ] Need windows 997s main.sargable_casefold_part w1 [ pass ] 5 997s main.stat_tables_partition w1 [ pass ] 3 997s worker[01] > Restart [mysqld.1 - pid: 11211, winpid: 11211] - running with different options '--loose-enable-ssl --loose-ssl-cert=/usr/share/mariadb/mariadb-test/std_data/serversan-cert.pem --loose-ssl-key=/usr/share/mariadb/mariadb-test/std_data/serversan-key.pem' != '--loose-enable-partition' 997s main.mysql_upgrade_ssl w3 [ pass ] 734 997s main.mysqldump-order-by-size w3 [ pass ] 51 997s main.mysqldump-system 'unix' w3 [ skipped ] Need udf example 998s main.opt_trace_index_merge_innodb w3 [ pass ] 303 998s main.ssl_7937 'x509v3' w1 [ pass ] 159 998s main.ssl_verify_ip w1 [ pass ] 57 998s worker[01] > Restart [mysqld.1 - pid: 11933, winpid: 11933] - running with different options '--loose-enable-ssl' != '--loose-enable-ssl --loose-ssl-cert=/usr/share/mariadb/mariadb-test/std_data/serversan-cert.pem --loose-ssl-key=/usr/share/mariadb/mariadb-test/std_data/serversan-key.pem' 998s main.ssl_7937 'ssl' w1 [ pass ] 160 998s worker[01] > Restart [mysqld.1 - pid: 11981, winpid: 11981] - running with different options '--plugin-load-add= --loose-enable-unix-socket' != '--loose-enable-ssl' 999s main.parser_bug21114_innodb w3 [ pass ] 1183 999s main.percona_nonflushing_analyze_debug w3 [ skipped ] debug_sync is not available 999s main.progress_976225 w3 [ pass ] 19 999s main.ps_innodb w3 [ pass ] 12 999s main.ps_missed_cmds w3 [ pass ] 21 999s main.ps_missed_cmds_bin_prot w3 [ skipped ] Need ps-protocol 999s main.ps_missed_cmds_bin_prot_not_embedded w3 [ skipped ] Need ps-protocol 999s main.ps_missed_cmds_not_embedded w3 [ pass ] 1 999s main.ps_qc_innodb w3 [ pass ] 7 999s main.query_cache_innodb w3 [ pass ] 27 1000s main.read_only_innodb w3 [ pass ] 28 1000s main.reopen_temp_table w3 [ pass ] 15 1000s main.failed_auth_unixsocket w1 [ pass ] 1036 1000s main.rowid_order_innodb w3 [ pass ] 13 1000s main.simultaneous_assignment w3 [ pass ] 13 1000s main.password_expiration_unix_socket w1 [ pass ] 37 1000s worker[01] > Restart [mysqld.1 - pid: 12009, winpid: 12009] - running with different options '--loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --loose-sequence' != '--plugin-load-add= --loose-enable-unix-socket' 1000s main.single_delete_update_innodb w3 [ pass ] 14 1000s main.sp-group w3 [ pass ] 7 1003s main.func_misc w1 [ pass ] 2681 1003s worker[01] > Restart [mysqld.1 - pid: 12161, winpid: 12161] - running with different options '--plugin-maturity=unknown --plugin-load-add=dialog_examples.so --plugin-load=libdaemon_example.so --plugin-load-add=EXAMPLE=ha_example.so --plugin-load-add=mypluglib.so --plugin-load-add=ha_example.so --loose-plugin-example-enum-var=e2' != '--loose-metadata-lock-info --plugin-load-add=metadata_lock_info.so --loose-sequence' 1003s main.plugin_load w1 [ pass ] 1 1003s worker[01] > Restart [mysqld.1 - pid: 12179, winpid: 12179] - running with different options '--plugin-maturity=unknown --plugin-load-add=EXAMPLE=ha_example.so --loose-plugin-example=FORCE_PLUS_PERMANENT' != '--plugin-maturity=unknown --plugin-load-add=dialog_examples.so --plugin-load=libdaemon_example.so --plugin-load-add=EXAMPLE=ha_example.so --plugin-load-add=mypluglib.so --plugin-load-add=ha_example.so --loose-plugin-example-enum-var=e2' 1004s main.plugin_load_option w1 [ pass ] 1 1004s worker[01] > Restart [mysqld.1 - pid: 12197, winpid: 12197] - running with different options '--loose-sequence --loose-sequence --loose-sequence --loose-sequence' != '--plugin-maturity=unknown --plugin-load-add=EXAMPLE=ha_example.so --loose-plugin-example=FORCE_PLUS_PERMANENT' 1004s main.sp-innodb w3 [ pass ] 4016 1004s main.ssl_and_innodb w3 [ pass ] 3 1005s main.stat_tables_disabled w3 [ pass ] 520 1006s main.index_merge_myisam w1 [ pass ] 2297 1006s worker[01] > Restart [mysqld.1 - pid: 12214, winpid: 12214] - running with different options '--loose-sequence --loose-sequence' != '--loose-sequence --loose-sequence --loose-sequence --loose-sequence' 1007s main.statistics_upgrade_not_done w3 [ pass ] 2030 1007s main.strict_autoinc_2innodb w3 [ pass ] 9 1007s main.subselect-crash_15755 w3 [ pass ] 13 1007s main.subselect2 w3 [ pass ] 55 1007s main.subselect_nulls_innodb w3 [ pass ] 2 1007s main.system_mysql_db_fix40123 w3 [ skipped ] Test need MYSQL_FIX_PRIVILEGE_TABLES 1007s main.system_mysql_db_fix50030 w3 [ skipped ] Test needs MYSQL_FIX_PRIVILEGE_TABLES 1007s main.system_mysql_db_fix50117 w3 [ skipped ] Test needs MYSQL_FIX_PRIVILEGE_TABLES 1007s main.system_mysql_db_fix50568 w3 [ skipped ] Test needs MYSQL_FIX_PRIVILEGE_TABLES 1008s main.ctype_utf8mb4_general_ci_casefold w1 [ pass ] 667 1008s main.tmp_table_error w3 [ pass ] 36 1008s main.ctype_utf8mb4_general_ci_ws w1 [ pass ] 474 1009s main.ctype_utf8mb4_turkish_ci_casefold w1 [ pass ] 607 1009s main.ctype_utf8mb4_uca1400_ai_ci_casefold w1 [ pass ] 609 1010s main.ctype_utf8mb4_unicode_520_ci_casefold w1 [ pass ] 604 1011s main.ctype_utf8mb4_unicode_ci_casefold w1 [ pass ] 600 1012s main.order_by w1 [ pass ] 1176 1012s main.subselect_mat w1 [ pass ] 149 1012s worker[01] > Restart [mysqld.1 - pid: 12286, winpid: 12286] - running with different options '--loose-sequence --tmp_table_size=1024' != '--loose-sequence --loose-sequence' 1016s main.transaction_timeout w3 [ pass ] 8028 1018s main.trigger-trans w3 [ pass ] 2136 1018s main.type_bit_innodb w3 [ pass ] 56 1018s main.type_blob w3 [ pass ] 49 1018s main.multi_update_big w1 [ pass ] 5461 1018s worker[01] > Restart [mysqld.1 - pid: 12438, winpid: 12438] - running with different options '--use-stat-tables=complementary --loose-sequence' != '--loose-sequence --tmp_table_size=1024' 1018s main.type_num_innodb w3 [ pass ] 18 1018s main.type_temporal_innodb w3 [ pass ] 23 1019s main.type_time_hires w3 [ pass ] 33 1019s main.type_timestamp_hires w3 [ pass ] 42 1019s main.union_innodb w3 [ pass ] 13 1019s main.selectivity_notembedded w1 [ pass ] 94 1019s worker[01] > Restart [mysqld.1 - pid: 12505, winpid: 12505] - running with different options '--loose-sequence --use-stat-tables=complementary' != '--use-stat-tables=complementary --loose-sequence' 1019s main.unique w3 [ pass ] 4 1019s main.stat_tables_myisam_debug w1 [ skipped ] debug_sync is not available 1019s worker[01] > Restart [mysqld.1 - pid: 12554, winpid: 12554] - running with different options '--loose-sequence' != '--loose-sequence --use-stat-tables=complementary' 1020s main.analyze_format_json w1 [ pass ] 122 1020s main.cset_narrowing w1 [ pass ] 68 1020s main.ctype_ucs2_general_ci_casefold w1 [ pass ] 37 1020s main.ctype_ucs2_general_ci_ws w1 [ pass ] 77 1020s main.ctype_ucs2_general_mysql500_ci_casefold w1 [ pass ] 34 1020s main.ctype_ucs2_general_mysql500_ci_ws w1 [ pass ] 76 1020s main.ctype_ucs2_turkish_ci_casefold w1 [ pass ] 34 1021s main.ctype_ucs2_unicode_520_ci_casefold w1 [ pass ] 34 1021s main.ctype_utf8mb3_general_ci_casefold w1 [ pass ] 37 1021s main.ctype_utf8mb3_general_ci_ws w1 [ pass ] 62 1021s main.ctype_utf8mb3_general_mysql500_ci_casefold w1 [ pass ] 37 1021s main.unsafe_binlog_innodb w3 [ pass ] 2047 1021s main.ctype_utf8mb3_general_mysql500_ci_ws w1 [ pass ] 65 1021s main.update w3 [ pass ] 111 1021s main.ctype_utf8mb3_turkish_ci_casefold w1 [ pass ] 37 1021s main.ctype_utf8mb3_unicode_520_ci_casefold w1 [ pass ] 37 1021s main.delete_returning w1 [ pass ] 21 1022s main.update_innodb w3 [ pass ] 582 1022s main.derived w1 [ pass ] 481 1022s main.derived_cond_pushdown w1 [ pass ] 261 1023s main.derived_view w1 [ pass ] 232 1023s main.distinct w1 [ pass ] 68 1023s main.distinct_notembedded w1 [ pass ] 8 1023s main.errors w1 [ pass ] 7 1023s main.explain_json w1 [ pass ] 33 1024s main.func_gconcat w1 [ pass ] 635 1024s main.func_str w1 [ pass ] 122 1024s main.group_by w1 [ pass ] 132 1024s main.information_schema_tables w1 [ pass ] 47 1024s main.insert_returning w1 [ pass ] 32 1025s main.join w1 [ pass ] 256 1025s main.join_cache_cardinality w1 [ pass ] 4 1025s main.key w1 [ pass ] 28 1026s main.myisam_explain_non_select_all w1 [ pass ] 741 1026s main.myisam_icp w1 [ pass ] 58 1026s main.myisam_mrr '64bit' w1 [ pass ] 57 1026s main.natural_sort_key w1 [ pass ] 197 1026s main.opt_trace_selectivity w1 [ pass ] 90 1027s main.order_by_limit_join w1 [ pass ] 47 1027s main.range_notembedded w1 [ pass ] 30 1028s main.mysql_client_test_comp w2 [ pass ] 33610 1028s worker[02] > Restart [mysqld.1 - pid: 11512, winpid: 11512] - running with different options '--loose-skip-innodb --thread-handling=one-thread-per-connection' != '--plugin-load-add=auth_test_plugin.so --loose-enable-performance-schema --max-allowed-packet=32000000 --proxy-protocol-networks=::1/32,127.0.0.0/8,localhost --sequence=on' 1028s main.range_vs_index_merge w1 [ pass ] 941 1028s main.repair w1 [ pass ] 40 1028s main.warnings w2 [ pass ] 64 1028s worker[02] > Restart [mysqld.1 - pid: 12930, winpid: 12930] - running with different options '--loose-skip-log-bin' != '--loose-skip-innodb --thread-handling=one-thread-per-connection' 1028s main.skip_log_bin w2 [ pass ] 35 1028s worker[02] > Restart [mysqld.1 - pid: 12956, winpid: 12956] - running with different options '--loose-skip-partition' != '--loose-skip-log-bin' 1029s main.rowid_filter_myisam w1 [ pass ] 554 1029s main.rownum w1 [ pass ] 34 1029s main.sargable_casefold w1 [ pass ] 10 1029s main.sargable_casefold_notembedded w1 [ pass ] 5 1029s main.partition_disabled w2 [ pass ] 11 1029s worker[02] > Restart [mysqld.1 - pid: 12990, winpid: 12990] - running with different options '--loose-slave-skip-errors=3,100,137,0,643,1752 --old-mode=no_dup_key_warnings_with_ignore,compat_5_1_checksum' != '--loose-skip-partition' 1029s main.sp-big w1 [ pass ] 378 1029s main.variables-notembedded w2 [ pass ] 79 1029s worker[02] > Restart [mysqld.1 - pid: 13023, winpid: 13023] - running with different options '--loose-ssl-key=/usr/share/mariadb/mariadb-test/std_data/server8k-key.pem --loose-ssl-cert=/usr/share/mariadb/mariadb-test/std_data/server8k-cert.pem' != '--loose-slave-skip-errors=3,100,137,0,643,1752 --old-mode=no_dup_key_warnings_with_ignore,compat_5_1_checksum' 1029s main.xa w3 [ pass ] 7392 1029s main.stat_tables_flush w1 [ pass ] 20 1030s main.xtradb_mrr w3 [ pass ] 248 1030s worker[03] > Restart [mysqld.1 - pid: 12250, winpid: 12250] - running with different options '--loose-ssl-key=/usr/share/mariadb/mariadb-test/std_data/server8k-key.pem --loose-ssl-cert=/usr/share/mariadb/mariadb-test/std_data/server8k-cert.pem' != '--innodb --innodb-cmpmem --innodb-cmp-per-index --innodb-trx --innodb-locks --innodb-lock-waits --innodb-metrics --innodb-buffer-pool-stats --innodb-buffer-page --innodb-buffer-page-lru --innodb-sys-columns --innodb-sys-fields --innodb-sys-foreign --innodb-sys-foreign-cols --innodb-sys-indexes --innodb-sys-tables --innodb-sys-virtual' 1030s main.ssl_system_ca 'bad' w2 [ pass ] 190 1030s worker[02] > Restart [mysqld.1 - pid: 13079, winpid: 13079] - running with different options '--loose-thread-handling=pool-of-threads' != '--loose-ssl-key=/usr/share/mariadb/mariadb-test/std_data/server8k-key.pem --loose-ssl-cert=/usr/share/mariadb/mariadb-test/std_data/server8k-cert.pem' 1030s main.statistics_upgrade w1 [ pass ] 595 1030s main.status_debug w1 [ skipped ] debug_sync is not available 1031s main.ssl_8k_key w3 [ pass ] 185 1031s worker[03] > Restart [mysqld.1 - pid: 13133, winpid: 13133] - running with different options '--thread-handling=pool-of-threads --loose-thread-pool-mode=generic --loose-thread-pool-groups=ON --loose-thread-pool-queues=ON --thread-pool-stats=ON --thread-pool-waits=ON --thread-pool-size=1 --thread-pool-max-threads=2 --thread-pool-dedicated-listener' != '--loose-ssl-key=/usr/share/mariadb/mariadb-test/std_data/server8k-key.pem --loose-ssl-cert=/usr/share/mariadb/mariadb-test/std_data/server8k-cert.pem' 1031s main.subselect w1 [ pass ] 992 1031s main.subselect4 w1 [ pass ] 130 1032s main.subselect_exists2in w1 [ pass ] 124 1032s main.subselect_firstmatch w1 [ pass ] 1 1033s main.thread_pool_info w3 [ pass ] 1421 1033s worker[03] > Restart [mysqld.1 - pid: 13217, winpid: 13217] - running with different options '--loose-tls-version=TLSv1.0,TLSv1.1,TLSv1.2' != '--thread-handling=pool-of-threads --loose-thread-pool-mode=generic --loose-thread-pool-groups=ON --loose-thread-pool-queues=ON --thread-pool-stats=ON --thread-pool-waits=ON --thread-pool-size=1 --thread-pool-max-threads=2 --thread-pool-dedicated-listener' 1033s main.subselect_no_exists_to_in w1 [ pass ] 798 1033s main.ssl_timeout-9836 w2 [ pass ] 2070 1033s worker[02] > Restart [mysqld.1 - pid: 13138, winpid: 13138] - running with different options '--loose-type_mysql_json --plugin-load-add=type_mysql_json.so --plugin-load=type_mysql_json.so' != '--loose-thread-handling=pool-of-threads' 1033s main.mysql_json_table_recreate w2 [ pass ] 88 1033s worker[02] > Restart [mysqld.1 - pid: 13256, winpid: 13256] - running with different options '--loose-type_mysql_json --plugin-load-add=type_mysql_json.so' != '--loose-type_mysql_json --plugin-load-add=type_mysql_json.so --plugin-load=type_mysql_json.so' 1034s main.subselect_no_mat w1 [ pass ] 953 1034s main.mysql_upgrade_mysql_json_with_plugin_loaded w2 [ pass ] 672 1034s worker[02] > Restart [mysqld.1 - pid: 13292, winpid: 13292] - sh script to run 1035s main.subselect_no_opts w1 [ pass ] 864 1035s main.lowercase_mixed_tmpdir w2 [ pass ] 45 1035s worker[02] > Restart [mysqld.1 - pid: 13361, winpid: 13361] - running with different options '--lower-case-table-names=1' != '--lower-case-table-names=1 --tmpdir=/tmp/tmp.Rnqg5LLLOq/var/2/tmp/MixedCase' 1035s main.ssl_cipher w3 [ pass ] 2057 1035s worker[03] > Restart [mysqld.1 - pid: 13383, winpid: 13383] - running with different options '--lower_case_table_names=1' != '--loose-tls-version=TLSv1.0,TLSv1.1,TLSv1.2' 1035s main.grant_lowercase w2 [ pass ] 42 1035s worker[02] > Restart [mysqld.1 - pid: 13397, winpid: 13397] - running with different options '--lower_case_table_names' != '--lower-case-table-names=1' 1036s main.lowercase_view w3 [ pass ] 30 1036s worker[03] > Restart [mysqld.1 - pid: 13421, winpid: 13421] - running with different options '--max-user-connections=1 --myisam_recover_options=BACKUP,QUICK' != '--lower_case_table_names=1' 1036s main.subselect_no_scache w1 [ pass ] 924 1036s main.lowercase_table w2 [ pass ] 60 1036s main.lowercase_table_grant w2 [ pass ] 2 1036s main.lowercase_table_qcache w2 [ pass ] 4 1036s worker[02] > Restart [mysqld.1 - pid: 13432, winpid: 13432] - running with different options '--max-user-connections=1000' != '--lower_case_table_names' 1036s main.variables w3 [ pass ] 103 1036s worker[03] > Restart [mysqld.1 - pid: 13463, winpid: 13463] - running with different options '--max_heap_table_size=16384' != '--max-user-connections=1 --myisam_recover_options=BACKUP,QUICK' 1036s main.user_limits w2 [ pass ] 79 1036s worker[02] > Restart [mysqld.1 - pid: 13499, winpid: 13499] - running with different options '--myisam-recover-options=force' != '--max-user-connections=1000' 1037s main.subselect_no_semijoin w1 [ pass ] 1012 1037s main.subselect_partial_match w1 [ pass ] 55 1037s main.count_distinct2 w3 [ pass ] 481 1037s main.multi_update_tiny_hash w3 [ pass ] 12 1037s worker[03] > Restart [mysqld.1 - pid: 13514, winpid: 13514] - running with different options '--myisam-recover-options=off' != '--max_heap_table_size=16384' 1037s main.myisam_recover w2 [ pass ] 297 1037s worker[02] > Restart [mysqld.1 - pid: 13531, winpid: 13531] - running with different options '--old=1' != '--myisam-recover-options=force' 1038s main.old-mode w2 [ pass ] 31 1038s worker[02] > Restart [mysqld.1 - pid: 13586, winpid: 13586] - running with different options '--plugin-load-add=auth_test_plugin.so' != '--old=1' 1038s main.myisam w3 [ pass ] 580 1038s worker[03] > Restart [mysqld.1 - pid: 13579, winpid: 13579] - running with different options '--plugin-load-add=qa_auth_interface.so' != '--myisam-recover-options=off' 1038s main.plugin_auth_qa w2 [ pass ] 40 1039s main.subselect_sj_jcl6 w1 [ pass ] 1638 1039s main.subselect_sj_mat w1 [ pass ] 200 1039s main.plugin_auth_qa_2 w3 [ pass ] 374 1039s main.table_elim w1 [ pass ] 36 1039s worker[03] > Restart [mysqld.1 - pid: 13664, winpid: 13664] - running with different options '--plugin-load-add=qa_auth_server.so' != '--plugin-load-add=qa_auth_interface.so' 1039s main.plugin_auth_qa_1 w2 [ pass ] 716 1039s worker[02] > Restart [mysqld.1 - pid: 13618, winpid: 13618] - running with different options '--plugin-maturity=stable' != '--plugin-load-add=auth_test_plugin.so' 1039s main.user_var w1 [ pass ] 18 1040s main.plugin_auth_qa_3 w3 [ pass ] 107 1040s worker[03] > Restart [mysqld.1 - pid: 13762, winpid: 13762] - running with different options '--plugin-maturity=unknown' != '--plugin-load-add=qa_auth_server.so' 1040s main.plugin_maturity w2 [ pass ] 1040s worker[02] > Restart [mysqld.1 - pid: 13764, winpid: 13764] - running with different options '--query-cache-size=1355776' != '--plugin-maturity=stable' 1040s main.handlersocket w3 [ pass ] 1 1040s main.plugin w3 [ pass ] 15 1041s main.win w1 [ pass ] 1221 1041s worker[01] > Restart [mysqld.1 - pid: 12569, winpid: 12569] - running with different options '--read-only' != '--loose-sequence' 1041s main.bug58669 w1 [ pass ] 2 1041s worker[01] > Restart [mysqld.1 - pid: 13848, winpid: 13848] - running with different options '--require-secure-transport=0' != '--read-only' 1041s main.require_secure_transport w1 [ pass ] 47 1041s worker[01] > Restart [mysqld.1 - pid: 13866, winpid: 13866] - running with different options '--require-secure-transport=TRUE' != '--require-secure-transport=0' 1042s main.plugin_not_embedded w3 [ pass ] 1416 1042s main.require_secure_transport_on w1 [ pass ] 40 1042s worker[01] > Restart [mysqld.1 - pid: 13892, winpid: 13892] - running with different options '--safe-user-create' != '--require-secure-transport=TRUE' 1042s main.table_options-5867 w3 [ pass ] 1 1042s main.truncate_badse w3 [ pass ] 2 1042s worker[03] > Restart [mysqld.1 - pid: 13883, winpid: 13883] - running with different options '--secure_file_priv=/tmp/tmp.Rnqg5LLLOq/tmp/3' != '--plugin-maturity=unknown' 1042s main.grant3 w1 [ pass ] 68 1042s worker[01] > Restart [mysqld.1 - pid: 13932, winpid: 13932] - running with different options '--skip-grant-tables' != '--safe-user-create' 1042s main.secure_file_priv_win w3 [ skipped ] Need windows 1042s worker[03] > Restart [mysqld.1 - pid: 13934, winpid: 13934] - running with different options '--skip-grant-tables' != '--secure_file_priv=/tmp/tmp.Rnqg5LLLOq/tmp/3' 1043s main.udf_skip_grants w3 [ skipped ] Need udf example 1043s worker[03] > Restart [mysqld.1 - pid: 13968, winpid: 13968] - running with different options '--skip-log-bin' != '--skip-grant-tables' 1043s main.flush2 w3 [ pass ] 2 1043s main.mysqldump-no-binlog w3 [ pass ] 36 1043s worker[03] > Restart [mysqld.1 - pid: 13992, winpid: 13992] - running with different options '--skip-name-resolve' != '--skip-log-bin' 1044s main.kill-2 w3 [ pass ] 3 1044s main.skip_name_resolve w3 [ pass ] 5 1044s worker[03] > Restart [mysqld.1 - pid: 14020, winpid: 14020] - running with different options '--sql_mode=NO_ENGINE_SUBSTITUTION' != '--skip-name-resolve' 1046s main.query_cache_notembedded w2 [ pass ] 6086 1046s worker[02] > Restart [mysqld.1 - pid: 13804, winpid: 13804] - running with different options '--ssl-crl=/usr/share/mariadb/mariadb-test/std_data/client-cert.crl' != '--query-cache-size=1355776' 1046s main.mysqlslap w3 [ pass ] 2020 1046s worker[03] > Restart [mysqld.1 - pid: 14055, winpid: 14055] - running with different options '--ssl-crlpath=/usr/share/mariadb/mariadb-test/std_data/crldir' != '--sql_mode=NO_ENGINE_SUBSTITUTION' 1047s main.ssl_crl 'path' w3 [ pass ] 84 1047s worker[03] > Restart [mysqld.1 - pid: 14932, winpid: 14932] - running with different options '--ssl_cipher=ECDHE-RSA-AES256-GCM-SHA384' != '--ssl-crlpath=/usr/share/mariadb/mariadb-test/std_data/crldir' 1047s main.ssl_crl 'file' w2 [ pass ] 129 1047s worker[02] > Restart [mysqld.1 - pid: 14930, winpid: 14930] - running with different options '--sysdate-is-now' != '--ssl-crl=/usr/share/mariadb/mariadb-test/std_data/client-cert.crl' 1047s main.skip_grants w1 [ pass ] 4237 1047s worker[01] > Restart [mysqld.1 - pid: 14959, winpid: 14959] - running with different options '--thread-handling=no-threads' != '--skip-grant-tables' 1047s main.wolfssl w3 [ pass ] 1047s worker[03] > Restart [mysqld.1 - pid: 14986, winpid: 14986] - running with different options '--thread-handling=pool-of-threads' != '--ssl_cipher=ECDHE-RSA-AES256-GCM-SHA384' 1047s main.no-threads w1 [ pass ] 1 1047s worker[01] > Restart [mysqld.1 - pid: 15010, winpid: 15010] - running with different options '--tls_version=TLSv1.1,TLSv1.2' != '--thread-handling=no-threads' 1048s main.tls_version w1 [ pass ] 326 1048s worker[01] > Restart [mysqld.1 - pid: 15033, winpid: 15033] - sh script to run 1049s main.sysdate_is_now w2 [ pass ] 1000 1049s worker[02] > Restart [mysqld.1 - pid: 14987, winpid: 14987] - running with different options '--transaction-read-only=true' != '--sysdate-is-now' 1049s main.long_tmpdir w1 [ pass ] 1049s worker[01] > Restart [mysqld.1 - pid: 15090, winpid: 15090] - running with different options '--use-stat-tables=complementary' != '--tmpdir=/tmp/tmp.Rnqg5LLLOq/var/1/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789' 1049s main.trans_read_only w2 [ pass ] 124 1049s worker[02] > Restart [mysqld.1 - pid: 15106, winpid: 15106] - running with different options '-V10.2.1-MariaDB' != '--transaction-read-only=true' 1049s main.selectivity_no_engine w1 [ pass ] 113 1049s main.stat_tables_par w1 [ skipped ] debug_sync is not available 1049s worker[01] > Restart [mysqld.1 - pid: 15119, winpid: 15119] - running with different options '' != '--use-stat-tables=complementary' 1049s main.mysqldump-compat-102 w2 [ pass ] 38 1049s worker[02] > Restart [mysqld.1 - pid: 15142, winpid: 15142] - running with different options '' != '-V10.2.1-MariaDB' 1050s main.func_regexp_pcre w2 [ fail ] 1050s Test ended at 2025-02-19 04:48:33 1050s 1050s CURRENT_TEST: main.func_regexp_pcre 1050s --- /usr/share/mariadb/mariadb-test/main/func_regexp_pcre.result 2024-10-30 14:38:13.000000000 +0000 1050s +++ /tmp/tmp.Rnqg5LLLOq/var/2/log/func_regexp_pcre.reject 2025-02-19 04:48:33.206207802 +0000 1050s @@ -169,13 +169,13 @@ 1050s \p{Latin} 㐗 0 1050s \p{Latin} 갷 0 1050s \p{Ll} 1 0 1050s -\p{Ll} A 0 1050s +\p{Ll} A 1 1050s \p{Ll} a 1 1050s -\p{Ll} À 0 1050s +\p{Ll} À 1 1050s \p{Ll} à 1 1050s -\p{Ll} Σ 0 1050s +\p{Ll} Σ 1 1050s \p{Ll} σ 1 1050s -\p{Ll} Я 0 1050s +\p{Ll} Я 1 1050s \p{Ll} я 1 1050s \p{Ll} ௨ 0 1050s \p{Ll} ප 0 1050s @@ -183,13 +183,13 @@ 1050s \p{Ll} 갷 0 1050s \p{Lu} 1 0 1050s \p{Lu} A 1 1050s -\p{Lu} a 0 1050s +\p{Lu} a 1 1050s \p{Lu} À 1 1050s -\p{Lu} à 0 1050s +\p{Lu} à 1 1050s \p{Lu} Σ 1 1050s -\p{Lu} σ 0 1050s +\p{Lu} σ 1 1050s \p{Lu} Я 1 1050s -\p{Lu} я 0 1050s +\p{Lu} я 1 1050s \p{Lu} ௨ 0 1050s \p{Lu} ප 0 1050s \p{Lu} 㐗 0 1050s 1050s Result content mismatch 1050s 1050s - saving '/tmp/tmp.Rnqg5LLLOq/var/2/log/main.func_regexp_pcre/' to '/tmp/tmp.Rnqg5LLLOq/var/log/main.func_regexp_pcre/' 1050s 1050s Retrying test main.func_regexp_pcre, attempt(2/3)... 1050s 1050s worker[02] > Restart - not started 1050s main.func_regexp_pcre w2 [ retry-fail ] 1050s Test ended at 2025-02-19 04:48:33 1050s 1050s CURRENT_TEST: main.func_regexp_pcre 1050s --- /usr/share/mariadb/mariadb-test/main/func_regexp_pcre.result 2024-10-30 14:38:13.000000000 +0000 1050s +++ /tmp/tmp.Rnqg5LLLOq/var/2/log/func_regexp_pcre.reject 2025-02-19 04:48:33.556212726 +0000 1050s @@ -169,13 +169,13 @@ 1050s \p{Latin} 㐗 0 1050s \p{Latin} 갷 0 1050s \p{Ll} 1 0 1050s -\p{Ll} A 0 1050s +\p{Ll} A 1 1050s \p{Ll} a 1 1050s -\p{Ll} À 0 1050s +\p{Ll} À 1 1050s \p{Ll} à 1 1050s -\p{Ll} Σ 0 1050s +\p{Ll} Σ 1 1050s \p{Ll} σ 1 1050s -\p{Ll} Я 0 1050s +\p{Ll} Я 1 1050s \p{Ll} я 1 1050s \p{Ll} ௨ 0 1050s \p{Ll} ප 0 1050s @@ -183,13 +183,13 @@ 1050s \p{Ll} 갷 0 1050s \p{Lu} 1 0 1050s \p{Lu} A 1 1050s -\p{Lu} a 0 1050s +\p{Lu} a 1 1050s \p{Lu} À 1 1050s -\p{Lu} à 0 1050s +\p{Lu} à 1 1050s \p{Lu} Σ 1 1050s -\p{Lu} σ 0 1050s +\p{Lu} σ 1 1050s \p{Lu} Я 1 1050s -\p{Lu} я 0 1050s +\p{Lu} я 1 1050s \p{Lu} ௨ 0 1050s \p{Lu} ප 0 1050s \p{Lu} 㐗 0 1050s 1050s Result content mismatch 1050s 1050s - skipping '/tmp/tmp.Rnqg5LLLOq/var/2/log/main.func_regexp_pcre/' 1050s 1050s Test main.func_regexp_pcre has failed 2 times, no more retries! 1050s 1050s worker[02] > Restart - not started 1051s main.func_replace w2 [ pass ] 47 1051s main.func_sapdb w2 [ pass ] 3 1051s main.func_set w2 [ pass ] 4 1051s main.func_sformat w2 [ pass ] 8 1051s main.func_system w2 [ pass ] 2 1051s main.func_test w2 [ pass ] 6 1051s main.mdev-21101 w3 [ pass ] 3303 1051s worker[03] > Restart [mysqld.1 - pid: 15030, winpid: 15030] - running with different options '' != '--thread-handling=pool-of-threads' 1052s main.mysqldump-utf8mb4 w3 [ pass ] 222 1052s main.mysqlhotcopy_myisam w3 [ skipped ] Test needs Perl modules DBI and DBD::MariaDB 1052s main.mysqlshow w3 [ pass ] 181 1052s main.mysqltest-break w3 [ pass ] 3 1052s main.mysqltest_256 w3 [ pass ] 1052s main.mysqltest_cont_on_error w3 [ pass ] 7 1052s main.mysqltest_ps w3 [ skipped ] Need ps-protocol 1052s main.mysqltest_tracking_info w3 [ pass ] 8 1053s main.name_const_replacement w3 [ pass ] 3 1053s main.name_resolution_cache_debug w3 [ skipped ] debug_sync is not available 1053s main.negation_elimination w3 [ pass ] 4 1053s main.nested_profiling w3 [ pass ] 1 1053s main.no_binlog w3 [ pass ] 1053s main.non_blocking_api w3 [ pass ] 1 1053s main.join_outer w1 [ pass ] 3352 1053s main.not_embedded_server w3 [ pass ] 109 1053s main.not_partition w3 [ skipped ] Test requires no partitioning 1053s main.null w3 [ pass ] 37 1053s main.null_key w3 [ pass ] 162 1053s main.odbc w3 [ pass ] 1 1054s main.olap w3 [ pass ] 18 1054s main.openssl_1 w3 [ pass ] 539 1054s main.opt_trace_default w3 [ pass ] 1 1055s main.opt_trace_index_merge w3 [ pass ] 587 1055s main.opt_trace_security w3 [ pass ] 9 1055s main.opt_trace_ucs2 w3 [ pass ] 1 1055s main.order_by-mdev-10122 w3 [ pass ] 3 1055s main.order_by_optimizer w3 [ pass ] 7 1055s main.order_by_sortkey w3 [ pass ] 278 1056s main.order_by_zerolength-4285 w3 [ pass ] 1 1056s main.order_fill_sortbuf w3 [ pass ] 95 1056s main.outfile w3 [ pass ] 4 1056s main.outfile_loaddata w3 [ pass ] 10 1056s main.overflow w3 [ pass ] 1 1056s main.packet w3 [ pass ] 1 1056s main.parser w3 [ pass ] 56 1056s main.parser_not_embedded w3 [ pass ] 34 1056s main.join_outer_jcl6 w1 [ pass ] 3317 1057s main.parser_stack w3 [ pass ] 616 1057s main.password_expiration w3 [ pass ] 47 1057s main.perror w3 [ pass ] 8 1057s main.perror-win w3 [ skipped ] Need windows 1057s main.plugin_vars w3 [ pass ] 161 1058s main.precedence w3 [ pass ] 470 1058s main.precedence_bugs w3 [ pass ] 3 1059s main.preload w3 [ pass ] 456 1059s main.prepare w3 [ pass ] 5 1059s main.processlist_notembedded w3 [ skipped ] debug_sync is not available 1059s main.profiling w3 [ pass ] 32 1059s main.ps_10nestset w3 [ pass ] 2 1059s main.ps_11bugs w3 [ pass ] 6 1059s main.ps_1general w3 [ pass ] 59 1059s main.func_time w2 [ pass ] 8084 1059s main.func_time_hires w2 [ pass ] 5 1059s main.ps_2myisam w3 [ pass ] 92 1059s main.func_time_round w2 [ pass ] 18 1059s main.func_timestamp w2 [ pass ] 1 1059s main.ps_4heap w3 [ pass ] 50 1059s main.func_weight_string w2 [ pass ] 9 1060s main.ps_5merge w3 [ pass ] 122 1060s main.function_defaults w2 [ pass ] 83 1060s main.function_defaults_notembedded w2 [ skipped ] debug_sync is not available 1060s main.gcc296 w2 [ pass ] 1 1060s main.ps_ddl w3 [ pass ] 175 1060s main.gis w2 [ pass ] 136 1060s main.ps_ddl1 w3 [ pass ] 48 1060s main.gis-json w2 [ pass ] 1 1060s main.gis-loaddata w2 [ pass ] 1 1061s main.ps_error w3 [ pass ] 1418 1062s main.ps_grant w3 [ pass ] 5 1062s main.ps_max_subselect-5113 w3 [ pass ] 1062s main.ps_not_windows w3 [ pass ] 1 1062s main.public_basic w3 [ pass ] 4 1062s main.public_privileges w3 [ pass ] 15 1062s main.query_cache_28249 w3 [ pass ] 7 1062s main.gis-precise w2 [ pass ] 1848 1062s main.gis-rt-precise w2 [ pass ] 14 1062s main.gis-rtree w2 [ pass ] 53 1062s main.gis_notembedded w2 [ pass ] 2 1062s main.query_cache_merge w3 [ pass ] 327 1062s main.grant5 w2 [ pass ] 33 1062s main.query_cache_ps_no_prot w3 [ pass ] 20 1062s main.query_cache_ps_ps_prot w3 [ skipped ] Test requires: ps-protocol enabled, other protocols disabled 1062s main.grant_4332 w2 [ pass ] 18 1062s main.grant_binlog_replay w2 [ pass ] 2 1063s main.query_cache_with_views w3 [ pass ] 19 1063s main.quick_select_4161 w3 [ skipped ] debug_sync is not available 1063s main.grant_cache_no_prot w2 [ pass ] 723 1063s main.grant_cache_ps_prot w2 [ skipped ] Need ps-protocol 1063s main.range_aria_dbt3 w3 [ pass ] 749 1063s main.grant_explain_non_select w2 [ pass ] 9 1064s main.grant_kill w2 [ pass ] 4 1064s main.grant_lowercase_fs w2 [ skipped ] Test requires: 'case_insensitive_fs' 1064s main.grant_master_admin w2 [ pass ] 2 1064s main.grant_plugin w2 [ pass ] 1 1064s main.read_only w3 [ pass ] 215 1064s main.grant_read_only w2 [ pass ] 4 1064s main.rename w3 [ pass ] 17 1064s main.grant_repair w2 [ pass ] 6 1064s main.renamedb w3 [ pass ] 1 1064s main.grant_server w2 [ pass ] 2 1064s main.repair_symlink-5543 w3 [ pass ] 5 1064s main.grant_slave_admin w2 [ pass ] 6 1064s main.replace w3 [ pass ] 2 1064s main.grant_slave_monitor w2 [ pass ] 3 1064s main.replace_returning w3 [ pass ] 6 1064s main.replace_returning_datatypes w3 [ pass ] 1 1064s main.grant_utf8_cli w2 [ pass ] 36 1064s main.replace_returning_err w3 [ pass ] 1 1064s main.group_by_null w2 [ pass ] 1064s main.reset_connection w3 [ pass ] 1 1064s main.handler_read_last w2 [ pass ] 1 1064s main.rollback w3 [ pass ] 1 1064s main.having w2 [ pass ] 31 1064s main.round w3 [ pass ] 6 1065s main.having_cond_pushdown w2 [ pass ] 43 1065s main.row w3 [ pass ] 10 1065s main.help w2 [ pass ] 32 1065s main.implicit_char_to_num_conversion w2 [ pass ] 6 1065s main.in_datetime_241 w2 [ pass ] 1 1065s main.in_subq_cond_pushdown w2 [ pass ] 29 1065s main.rowid_filter w3 [ pass ] 514 1065s main.index_intersect w2 [ pass ] 168 1065s main.information_schema2 w2 [ pass ] 2 1065s main.information_schema_chmod w2 [ pass ] 1 1065s main.information_schema_columns w2 [ pass ] 2 1065s main.information_schema_linux w2 [ skipped ] Need Linux 1065s main.information_schema_parameters w2 [ pass ] 11 1066s main.information_schema_prepare w2 [ pass ] 1 1066s main.information_schema_routines w2 [ pass ] 13 1066s main.information_schema_stats w2 [ pass ] 3 1066s main.rowid_filter_aria w3 [ pass ] 928 1066s main.schema w3 [ pass ] 6 1066s main.second_frac-9175 w3 [ pass ] 1 1067s main.init_file_set_password-7656 w2 [ pass ] 1311 1067s worker[02] > Restart [mysqld.1 - pid: 16438, winpid: 16438] - running with different options '' != '' 1067s main.select 'nm' w3 [ pass ] 1019 1068s main.select_found w3 [ pass ] 52 1068s main.insert w2 [ pass ] 301 1068s main.insert_notembedded w2 [ pass ] 7 1068s main.insert_returning_datatypes w2 [ pass ] 1 1068s main.insert_select w2 [ pass ] 118 1069s main.select_jcl6 'nm' w3 [ pass ] 1029 1069s main.select_safe w3 [ pass ] 4 1069s main.servers w3 [ pass ] 1 1069s main.set_operation w3 [ pass ] 23 1069s main.set_operation_oracle w3 [ pass ] 6 1069s main.set_password w3 [ pass ] 17 1070s main.set_statement w3 [ pass ] 834 1070s main.insert_update w2 [ pass ] 2014 1070s main.insert_update_autoinc-7150 w2 [ pass ] 1 1071s main.intersect w2 [ pass ] 709 1072s main.set_statement_notembedded w3 [ pass ] 2002 1072s main.set_statement_profiling w3 [ pass ] 1 1072s main.show w3 [ pass ] 2 1072s main.show_bad_definer-5553 w3 [ pass ] 1072s main.show_create_user w3 [ pass ] 1 1072s main.show_function_with_pad_char_to_full_length w3 [ pass ] 2 1072s main.show_profile w3 [ pass ] 1 1073s main.show_row_order-9226 w3 [ pass ] 1 1073s main.intersect_all w2 [ pass ] 1504 1073s main.invisible_field w2 [ pass ] 21 1073s main.shutdown w3 [ pass ] 309 1073s main.invisible_field_grant_system w2 [ pass ] 203 1073s main.sighup-6580 w3 [ pass ] 1 1073s main.item_types w2 [ pass ] 4 1073s main.join_crash w2 [ pass ] 4 1073s main.signal w3 [ pass ] 67 1073s main.join_nested w2 [ pass ] 45 1073s main.signal_demo1 w3 [ pass ] 7 1073s main.signal_demo2 w3 [ pass ] 4 1073s main.join_nested_jcl6 w2 [ pass ] 51 1073s main.signal_demo3 w3 [ pass ] 3 1073s main.json_equals w2 [ pass ] 1 1073s main.signal_sqlmode w3 [ pass ] 2 1074s main.json_normalize w2 [ pass ] 3 1074s main.key_diff w2 [ pass ] 2 1074s main.key_primary w2 [ pass ] 1 1074s main.single_delete_update w3 [ pass ] 138 1074s main.keywords w2 [ pass ] 29 1074s main.sp-anchor-row-type-cursor w3 [ pass ] 30 1074s main.sp-anchor-row-type-table w3 [ pass ] 31 1074s main.sp-anchor-type w3 [ pass ] 35 1074s main.sp-bugs w3 [ pass ] 20 1074s main.sp-bugs2 w3 [ pass ] 2 1074s main.kill w2 [ pass ] 518 1074s main.kill_processlist-6619 w2 [ skipped ] debug_sync is not available 1074s main.sp-condition-handler w3 [ pass ] 216 1074s main.kill_query-6728 w2 [ pass ] 1 1075s main.last_value w2 [ pass ] 2 1075s main.limit w2 [ pass ] 6 1075s main.limit_rows_examined w2 [ pass ] 19 1075s main.load_timezones_with_alter_algorithm_inplace w2 [ pass ] 40 1075s main.loaddata w2 [ pass ] 42 1076s main.sp-cursor w3 [ pass ] 1032 1076s main.sp-destruct w3 [ pass ] 22 1076s main.sp-dynamic w3 [ pass ] 12 1076s main.sp-error w3 [ pass ] 71 1076s main.sp-expr w3 [ pass ] 3 1076s main.sp-fib w3 [ pass ] 2 1076s main.sp-for-loop w3 [ pass ] 5 1077s main.sp-i_s_columns w3 [ pass ] 412 1077s main.sp-inout w3 [ pass ] 51 1078s main.sp-lock w3 [ pass ] 836 1078s main.sp-memory-leak w3 [ pass ] 1078s main.sp-no-code w3 [ pass ] 1078s main.sp-no-valgrind w3 [ pass ] 3 1078s main.sp-package w3 [ pass ] 2 1078s main.sp-package-security w3 [ pass ] 8 1078s main.sp-prelocking w3 [ pass ] 21 1078s main.query_cache w1 [ pass ] 21576 1078s main.loadxml w2 [ pass ] 3113 1078s main.query_cache_debug w1 [ skipped ] debug_sync is not available 1078s main.1st w1 [ pass ] 1 1078s main.sp-row w3 [ pass ] 110 1078s main.aborted_clients w1 [ pass ] 2 1078s main.adddate_454 w1 [ pass ] 1 1078s main.sp-security w3 [ pass ] 106 1079s main.alias w1 [ pass ] 20 1079s main.sp-security-anchor-type w3 [ pass ] 8 1079s main.almost_full w1 [ pass ] 18 1079s File /usr/share/mariadb/mariadb-test/main/alter_table_combinations.result is read-only; trying to patch anyway 1079s main.alter_table_combinations 'aria' w1 [ pass ] 17 1079s File /usr/share/mariadb/mariadb-test/main/alter_table_combinations.result is read-only; trying to patch anyway 1079s main.sp-threads w3 [ pass ] 110 1079s main.alter_table_combinations 'heap' w1 [ pass ] 11 1079s main.sp-ucs2 w3 [ pass ] 5 1079s main.alter_table_locknone_notembedded w1 [ pass ] 5 1079s main.sp-vars w3 [ pass ] 36 1079s main.sp2 w3 [ pass ] 24 1079s main.sp_gis w3 [ pass ] 4 1079s main.sp_missing_4665 w3 [ pass ] 1 1079s main.sp_notembedded w3 [ pass ] 118 1080s main.alter_table_mdev539_maria w1 [ pass ] 934 1080s main.alter_table_mdev539_myisam w1 [ pass ] 430 1080s main.alter_table_upgrade_aria w1 [ pass ] 3 1081s main.alter_table_upgrade_myisam w1 [ pass ] 2 1081s main.alter_user w1 [ pass ] 12 1081s main.analyze_stmt w1 [ pass ] 11 1081s main.analyze_stmt_privileges w1 [ pass ] 2 1081s main.sp_stress_case w3 [ pass ] 1458 1081s main.analyze_stmt_privileges2 w1 [ pass ] 118 1081s main.sp_sync w3 [ skipped ] debug_sync is not available 1081s main.ansi w1 [ pass ] 2 1081s main.assign_key_cache_debug w1 [ skipped ] debug_sync is not available 1081s main.sql_mode w3 [ pass ] 19 1081s main.sql_mode_pad_char_to_full_length w3 [ pass ] 3 1081s main.auto_increment w1 [ pass ] 26 1081s main.backup_aria w1 [ pass ] 23 1081s main.bad_frm_crash_5029 w1 [ pass ] 1 1083s main.bad_startup_options w1 [ pass ] 1418 1083s main.bench_count_distinct w1 [ pass ] 5 1083s main.bigint w1 [ pass ] 11 1083s main.binary w1 [ pass ] 5 1084s main.binary_to_hex w1 [ pass ] 341 1084s main.blackhole_plugin w1 [ pass ] 2 1084s main.ssl w3 [ pass ] 2330 1084s main.bool w1 [ pass ] 9 1084s main.ssl_ca w3 [ pass ] 53 1084s main.brackets w1 [ pass ] 66 1084s main.bug12427262 w1 [ pass ] 4 1084s main.bug13633383 w1 [ pass ] 3 1084s main.bulk_replace w1 [ pass ] 1084s main.case w1 [ pass ] 10 1084s main.cast w1 [ pass ] 33 1084s main.change_user w1 [ pass ] 5 1086s main.ssl_compress w3 [ pass ] 2168 1087s main.lock_multi w2 [ pass ] 8605 1088s main.lock_multi_bug38499 w2 [ pass ] 731 1088s main.lock_multi_bug38691 w2 [ pass ] 280 1089s main.lock_user w2 [ pass ] 1012 1089s main.lock_view w2 [ pass ] 92 1089s main.change_user_notembedded w1 [ pass ] 5008 1089s main.charset_client_win_utf8mb4 w1 [ skipped ] Need windows 1089s main.ssl_connect w3 [ pass ] 3425 1090s main.ssl_crl_clients w3 [ pass ] 202 1090s main.ssl_fp w3 [ pass ] 116 1090s main.ssl_system_ca 'good' w3 [ pass ] 32 1091s main.log_crash w2 [ pass ] 1413 1091s main.check w1 [ pass ] 1607 1091s main.check_constraint w1 [ pass ] 14 1091s main.check_constraint_show w1 [ pass ] 1 1091s main.check_view_protocol w1 [ skipped ] Test requires view-protocol 1092s main.cli_options_force_protocol_not_win w1 [ pass ] 269 1092s main.client w1 [ pass ] 253 1092s main.log_errchk w2 [ pass ] 1317 1092s worker[02] > Restart [mysqld.1 - pid: 17780, winpid: 17780] - running with different options '' != '' 1092s main.client_xml w1 [ pass ] 311 1092s main.column_compression_utf16 w1 [ pass ] 1 1093s main.comment_column w1 [ pass ] 15 1093s main.comment_column2 w1 [ pass ] 13 1093s main.comment_database w1 [ pass ] 2 1093s main.comment_index w1 [ pass ] 14 1093s main.comment_table w1 [ pass ] 5 1093s main.comments w1 [ pass ] 1 1093s main.compare w1 [ pass ] 4 1094s main.log_slow w2 [ pass ] 1323 1094s main.long_host w2 [ skipped ] debug_sync is not available 1094s main.long_unique_bugs_no_sp_protocol w2 [ pass ] 4 1094s main.long_unique_delayed w2 [ pass ] 1 1094s main.long_unique_update w2 [ pass ] 7 1094s main.long_unique_using_hash w2 [ pass ] 2 1094s main.lotofstack w2 [ pass ] 45 1095s main.compress w1 [ pass ] 2127 1095s main.connect-no-db w1 [ pass ] 1095s main.lowercase_fs_off w2 [ pass ] 820 1095s main.lowercase_fs_on w2 [ skipped ] Test requires: 'case_insensitive_file_system' 1095s main.constraints w1 [ pass ] 11 1095s main.contributors w1 [ pass ] 1096s main.count_distinct w1 [ pass ] 8 1099s main.max_password_errors w2 [ pass ] 3010 1099s main.mdev19198 w2 [ pass ] 1 1099s main.mdev316 w2 [ pass ] 1099s main.mdev375 w2 [ pass ] 4 1099s main.mdev_14586 w2 [ pass ] 3 1099s main.mdev_19276 w2 [ pass ] 6 1099s main.metadata w2 [ pass ] 8 1100s main.mix2_myisam w2 [ pass ] 600 1100s main.mix2_myisam_ucs2 w2 [ pass ] 15 1100s main.ssl_timeout w3 [ pass ] 10094 1100s main.stack-crash w3 [ pass ] 3 1100s main.stat_tables_missing w3 [ pass ] 2 1101s main.statement-expr w3 [ pass ] 2 1101s main.statistics_close w3 [ pass ] 1 1101s main.mrr_icp_extra w2 [ pass ] 842 1101s main.status2 w3 [ pass ] 4 1101s main.multi_update_debug w2 [ skipped ] debug_sync is not available 1101s main.status_bug17954 w3 [ pass ] 2 1101s main.create w1 [ pass ] 5090 1101s main.my_print_defaults w2 [ pass ] 12 1101s main.str_to_datetime_457 w3 [ pass ] 1101s main.myisam-system w2 [ pass ] 3 1101s main.create-uca w1 [ pass ] 2 1101s main.strict_autoinc_1myisam w3 [ pass ] 1 1101s main.create_drop_db w1 [ pass ] 1 1101s main.myisam_enable_keys-10506 w2 [ pass ] 2 1101s main.strict_autoinc_3heap w3 [ pass ] 3 1101s main.strings w3 [ pass ] 5 1101s main.myisam_icp_notembedded w2 [ pass ] 179 1101s main.subselect3 w3 [ pass ] 134 1101s main.myisam_optimize w2 [ skipped ] debug_sync is not available 1101s main.myisampack w2 [ pass ] 122 1101s main.subselect3_jcl6 w3 [ pass ] 127 1102s main.subselect_cache w3 [ pass ] 246 1102s main.subselect_exists2in_costmat w3 [ pass ] 109 1102s main.subselect_extra w3 [ pass ] 81 1102s main.subselect_extra_no_semijoin w3 [ pass ] 108 1102s main.subselect_gis w3 [ pass ] 3 1103s main.subselect_mat_analyze_json w3 [ pass ] 12 1103s main.subselect_mat_cost_bugs w3 [ pass ] 23 1103s main.create_drop_event w1 [ pass ] 1613 1103s main.subselect_notembedded w3 [ pass ] 46 1103s main.create_drop_index w1 [ pass ] 6 1103s main.subselect_nulls w3 [ pass ] 4 1103s main.create_drop_procedure w1 [ pass ] 5 1103s main.create_drop_role w1 [ pass ] 4 1103s main.create_drop_server w1 [ pass ] 1 1103s main.create_drop_trigger w1 [ pass ] 15 1103s main.create_drop_udf w1 [ skipped ] Need udf example 1103s main.create_drop_user w1 [ pass ] 3 1103s main.create_drop_view w1 [ pass ] 2 1104s main.create_not_windows w1 [ pass ] 2 1104s main.create_or_replace_permission w1 [ skipped ] Need udf example 1104s main.create_replace_tmp w1 [ pass ] 1104s main.create_user w1 [ pass ] 7 1104s main.create_utf8 w1 [ pass ] 4 1104s main.create_w_max_indexes_128 w1 [ skipped ] Test needs mysqld built with --with-max-indexes=128 1104s main.create_w_max_indexes_64 w1 [ pass ] 7 1104s main.create_windows w1 [ skipped ] Need windows 1104s main.cte_cycle w1 [ pass ] 3 1104s main.cte_grant w1 [ pass ] 7 1104s main.cte_nonrecursive w1 [ pass ] 62 1104s main.subselect_sj w3 [ pass ] 1349 1104s main.cte_nonrecursive_not_embedded w1 [ pass ] 3 1104s main.subselect_sj_aria w3 [ pass ] 4 1104s main.cte_recursive_not_embedded w1 [ pass ] 1 1104s main.ctype_ascii w1 [ pass ] 1 1104s main.subselect_sj_nonmerged w3 [ pass ] 11 1105s main.sum_distinct w3 [ pass ] 86 1105s main.symlink w3 [ pass ] 220 1105s main.symlink-aria-11902 w3 [ skipped ] debug_sync is not available 1105s main.symlink-myisam-11902 w3 [ skipped ] debug_sync is not available 1105s main.ctype_big5 w1 [ pass ] 583 1105s main.synchronization w3 [ pass ] 111 1105s main.ctype_binary w1 [ pass ] 105 1105s main.system_mysql_db w3 [ pass ] 1 1105s main.ctype_collate w1 [ pass ] 12 1105s main.system_mysql_db_507 w3 [ pass ] 7 1105s main.system_mysql_db_refs w3 [ pass ] 4 1105s main.table_elim_debug w3 [ pass ] 4 1106s main.table_keyinfo-6838 w3 [ pass ] 2 1106s main.table_options w3 [ pass ] 8 1106s main.table_value_constr w3 [ pass ] 34 1106s main.tablelock w3 [ pass ] 3 1106s main.temp_table_frm w3 [ pass ] 4 1106s main.temp_table_symlink w3 [ pass ] 6 1106s main.temporal_literal w3 [ pass ] 9 1106s main.temporal_scale_4283 w3 [ pass ] 1 1106s main.timeout w3 [ pass ] 3 1106s worker[03] > Restart [mysqld.1 - pid: 16674, winpid: 16674] - different timezone 1106s main.ctype_collate_column w1 [ pass ] 847 1107s main.timezone w3 [ skipped ] Test requires: 'have_met_timezone' 1107s worker[03] > Restart [mysqld.1 - pid: 18935, winpid: 18935] - different timezone 1107s main.timezone2 w3 [ pass ] 65 1107s worker[03] > Restart [mysqld.1 - pid: 18950, winpid: 18950] - different timezone 1107s main.ctype_collate_context w1 [ pass ] 840 1107s main.ctype_collate_database w1 [ pass ] 6 1107s main.ctype_collate_implicit w1 [ pass ] 7 1107s main.ctype_collate_implicit_utf32 w1 [ pass ] 1 1107s main.ctype_collate_table w1 [ pass ] 2 1108s main.timezone3 w3 [ pass ] 35 1108s worker[03] > Restart [mysqld.1 - pid: 18985, winpid: 18985] - different timezone 1108s main.ctype_cp1250_ch w1 [ pass ] 27 1108s main.ctype_cp1251 w1 [ pass ] 111 1108s main.ctype_cp850 w1 [ pass ] 11 1108s main.timezone4 w3 [ pass ] 1108s worker[03] > Restart [mysqld.1 - pid: 19032, winpid: 19032] - different timezone 1108s main.ctype_cp866 w1 [ pass ] 1108s main.ctype_cp932 w1 [ pass ] 15 1108s main.ctype_create w1 [ pass ] 7 1108s main.ctype_dec8 w1 [ pass ] 1 1108s main.ctype_errors w1 [ pass ] 3 1108s main.timezone_grant w3 [ pass ] 43 1108s main.tlsv13 w3 [ skipped ] "Test requires Connector/C with OpenSSL library" 1108s main.tmp_table_count-7586 w3 [ pass ] 4 1109s main.ctype_eucjpms w1 [ pass ] 475 1109s main.ctype_euckr w1 [ pass ] 323 1109s main.ctype_filename w1 [ pass ] 6 1109s main.trigger w3 [ pass ] 907 1110s main.trigger-compat w3 [ pass ] 18 1110s main.trigger_no_defaults-11698 w3 [ pass ] 2 1110s main.ctype_gb2312 w1 [ pass ] 555 1111s main.ctype_gbk w1 [ pass ] 577 1111s main.ctype_gbk_export_import w1 [ skipped ] Need POSIX locale zh_CN.gbk 1111s main.ctype_hebrew w1 [ pass ] 1 1111s main.ctype_latin1 w1 [ pass ] 456 1111s main.ctype_latin1_de w1 [ pass ] 15 1111s main.ctype_latin2 w1 [ pass ] 12 1112s main.ctype_latin2_ch w1 [ pass ] 21 1112s main.ctype_many w1 [ pass ] 20 1112s main.ctype_mb w1 [ pass ] 2 1112s main.trigger_notembedded w3 [ pass ] 2150 1112s main.trigger_null-8605 w3 [ pass ] 35 1112s main.ctype_nopad_8bit w1 [ pass ] 279 1112s main.truncate w3 [ pass ] 10 1112s main.ctype_recoding w1 [ pass ] 10 1112s main.truncate_coverage w3 [ skipped ] debug_sync is not available 1112s main.truncate_notembedded w3 [ pass ] 1 1112s main.type_binary w3 [ pass ] 24 1112s main.type_bit w3 [ pass ] 61 1113s main.type_bool w3 [ pass ] 1113s main.type_char w3 [ pass ] 1 1113s main.type_date w3 [ pass ] 42 1113s main.type_date_round w3 [ pass ] 5 1113s main.ctype_sjis w1 [ pass ] 651 1113s main.type_datetime w3 [ pass ] 62 1113s main.type_datetime_round w3 [ pass ] 7 1113s main.type_decimal w3 [ pass ] 41 1113s main.ctype_swe7 w1 [ pass ] 293 1113s main.type_enum w3 [ pass ] 87 1113s main.ctype_tis620 w1 [ pass ] 38 1113s main.type_float w3 [ pass ] 59 1113s main.type_geometry_mix_int w3 [ pass ] 13 1114s main.type_hex_hybrid w3 [ pass ] 4 1114s main.ctype_ucs w1 [ pass ] 190 1114s main.type_int w3 [ pass ] 101 1114s main.type_interval w3 [ pass ] 1 1114s main.ctype_ucs2_uca w1 [ pass ] 122 1114s main.type_json w3 [ pass ] 6 1114s main.type_nchar w3 [ pass ] 2 1114s main.type_newdecimal w3 [ pass ] 88 1114s main.type_num w3 [ pass ] 32 1114s main.type_ranges w3 [ pass ] 11 1114s main.type_row w3 [ pass ] 2 1114s main.ctype_ujis w1 [ pass ] 463 1114s main.type_set w3 [ pass ] 18 1115s main.type_temporal_mariadb53 w3 [ pass ] 3 1115s main.type_temporal_mysql56 w3 [ pass ] 1 1115s main.type_time w3 [ pass ] 69 1115s main.type_time_6065 w3 [ pass ] 16 1115s main.ctype_ujis_ucs2 w1 [ pass ] 384 1115s main.type_time_round w3 [ pass ] 9 1115s main.ctype_utf16 w1 [ pass ] 54 1115s main.type_timestamp w3 [ pass ] 58 1115s main.type_timestamp_round w3 [ pass ] 7 1115s main.ctype_utf16_uca w1 [ pass ] 102 1115s main.type_uint w3 [ pass ] 14 1115s main.type_varchar_mysql41 w3 [ pass ] 11 1115s main.ctype_utf16le w1 [ pass ] 80 1115s main.type_year w3 [ pass ] 25 1115s main.udf w3 [ skipped ] Need udf example 1115s main.udf_debug_sync w3 [ skipped ] debug_sync is not available 1115s main.ctype_utf32 w1 [ pass ] 58 1115s main.udf_notembedded w3 [ skipped ] Need udf example 1116s main.udf_query_cache w3 [ skipped ] Need udf example 1116s main.update_ignore_216 w3 [ pass ] 1 1116s main.ctype_utf32_uca w1 [ pass ] 127 1116s main.ctype_utf8_uca w1 [ pass ] 134 1116s main.ctype_utf8mb4_heap w1 [ pass ] 55 1116s main.ctype_utf8mb4_myisam w1 [ pass ] 69 1116s main.ctype_utf8mb4_uca w1 [ pass ] 128 1117s main.update_single_to_multi w3 [ pass ] 922 1117s main.upgrade_MDEV-19650 w3 [ pass ] 604 1119s main.upgrade_MDEV-23102-1 w3 [ pass ] 1172 1120s main.upgrade_MDEV-23102-2 w3 [ pass ] 1205 1121s main.upgrade_geometrycolumn_procedure_definer w3 [ pass ] 602 1121s main.upgrade_mdev_24363 w3 [ pass ] 594 1121s main.userstat-badlogin-4824 w3 [ pass ] 1 1121s main.varbinary w3 [ pass ] 5 1121s main.variables_community w3 [ pass ] 1 1122s main.ctype_utf8mb4_uca_allkeys1400 w1 [ pass ] 5045 1122s main.view_alias w3 [ pass ] 12 1122s main.view_grant w3 [ pass ] 104 1123s main.ctype_utf8mb4_uca_allkeys400 w1 [ pass ] 1120 1125s main.ctype_utf8mb4_uca_allkeys520 w1 [ pass ] 2064 1125s main.custom_aggregate_functions w1 [ pass ] 40 1125s main.custom_aggregates_i_s w1 [ pass ] 5 1125s main.date_formats w1 [ pass ] 6 1125s main.datetime_456 w1 [ pass ] 1 1126s main.ddl_i18n_koi8r w1 [ pass ] 971 1127s main.ddl_i18n_utf8 w1 [ pass ] 999 1127s main.deadlock_ftwrl w1 [ skipped ] debug_sync is not available 1128s main.debug_sync w1 [ skipped ] debug_sync is not available 1128s main.default_debug w1 [ skipped ] debug_sync is not available 1128s main.default_session w1 [ pass ] 7 1128s main.wait_timeout w3 [ pass ] 6043 1128s main.warnings_engine_disabled w3 [ pass ] 1 1128s main.win_as_arg_to_aggregate_func w3 [ pass ] 3 1128s main.win_avg w3 [ pass ] 1 1128s main.win_big w3 [ pass ] 148 1128s main.win_big-mdev-10092 w3 [ pass ] 6 1129s main.win_big-mdev-11697 w3 [ pass ] 660 1129s main.default_storage_engine w1 [ pass ] 1392 1129s main.delayed w1 [ skipped ] debug_sync is not available 1129s main.win_bit w3 [ pass ] 2 1129s main.win_empty_over w3 [ pass ] 3 1129s main.delete w1 [ pass ] 25 1129s main.win_first_last_value w3 [ pass ] 3 1129s main.delete_returning_grant w1 [ pass ] 9 1129s main.win_i_s w3 [ pass ] 3 1130s main.win_insert_select w3 [ pass ] 2 1130s main.win_lead_lag w3 [ pass ] 4 1130s main.win_min_max w3 [ pass ] 13 1130s main.win_nth_value w3 [ pass ] 2 1130s main.win_ntile w3 [ pass ] 3 1130s main.win_orderby w3 [ pass ] 8 1130s main.win_percent_cume w3 [ pass ] 1 1130s main.win_percentile w3 [ pass ] 8 1130s main.win_rank w3 [ pass ] 1 1130s main.win_std w3 [ pass ] 3 1130s main.win_sum w3 [ pass ] 1 1130s main.windows w3 [ skipped ] Need windows 1130s main.xa_sync w3 [ skipped ] debug_sync is not available 1130s main.xml w3 [ pass ] 14 1131s main.delimiter_command_case_sensitivity w3 [ pass ] 32 1131s main.deprecated_features w3 [ pass ] 1131s main.delete_single_to_multi w1 [ pass ] 1652 1132s main.derived_opt w3 [ pass ] 977 1132s main.drop_combinations w3 [ pass ] 123 1132s main.dyncol w3 [ pass ] 43 1132s main.dirty_close w1 [ pass ] 1010 1132s main.empty_string_literal w1 [ pass ] 7 1132s main.empty_table w1 [ pass ] 6 1132s main.empty_user_table w1 [ pass ] 8 1133s main.except w1 [ pass ] 11 1133s main.except_all w1 [ pass ] 11 1133s main.execution_constants w1 [ pass ] 92 1133s main.explain w1 [ pass ] 202 1133s main.empty_server_name-8224 w3 [ pass ] 1307 1134s main.features 'nm' w3 [ pass ] 12 1134s main.fetch_first w3 [ pass ] 20 1134s main.filesort_bad_i_s-7585 w3 [ pass ] 25 1134s main.filesort_pack w3 [ pass ] 2 1134s main.fix_priv_tables w3 [ skipped ] Test need MYSQL_FIX_PRIVILEGE_TABLES 1136s main.failed_auth_3909 w1 [ pass ] 3007 1136s main.flush_logs_not_windows w1 [ pass ] 3 1136s main.flush_notembedded w1 [ pass ] 6 1139s main.flush w3 [ pass ] 4757 1139s main.flush_ssl w1 [ pass ] 2719 1139s main.frm_bad_row_type-7333 w1 [ pass ] 1 1139s main.fulltext w1 [ pass ] 46 1140s main.fulltext2 w1 [ pass ] 139 1140s main.fulltext3 w1 [ pass ] 3 1140s main.fulltext_cache w1 [ pass ] 2 1140s main.fulltext_charsets w1 [ pass ] 1 1140s main.fulltext_derived_4257 w1 [ pass ] 1140s main.fulltext_derived_4316 w1 [ pass ] 1 1140s main.fulltext_distinct w1 [ pass ] 2 1140s main.fulltext_left_join w1 [ pass ] 6 1140s main.fulltext_multi w1 [ pass ] 1 1140s main.fulltext_order_by w1 [ pass ] 5 1140s main.fulltext_update w1 [ pass ] 1 1140s main.fulltext_var w1 [ pass ] 1 1140s main.func_bit w1 [ pass ] 5 1141s main.func_compress w1 [ pass ] 589 1141s main.func_concat w1 [ pass ] 10 1141s main.func_crypt w1 [ pass ] 8 1141s main.func_date_add w1 [ pass ] 5 1141s main.func_default w1 [ pass ] 8 1142s main.func_des_encrypt w1 [ pass ] 3 1142s main.func_digest w1 [ pass ] 21 1142s main.func_encrypt_nossl w1 [ skipped ] Test requires: embedded server 1142s main.func_encrypt_ucs2 w1 [ pass ] 3 1142s main.func_equal w1 [ pass ] 2 1142s main.func_extract w1 [ pass ] 47 1142s main.func_format w1 [ pass ] 2 1142s main.func_group w1 [ pass ] 173 1142s main.func_hybrid_type w1 [ pass ] 81 1143s main.func_if w1 [ pass ] 6 1143s main.flush_table w3 [ pass ] 4019 1143s main.func_int w3 [ pass ] 2 1143s main.func_isnull w3 [ pass ] 5 1143s main.func_in w1 [ pass ] 421 1143s main.func_kdf 'new' w3 [ pass ] 25 1143s main.func_like w1 [ pass ] 10 1143s main.func_op w1 [ pass ] 2 1143s main.func_regexp w1 [ pass ] 7 1143s main.func_math w3 [ pass ] 151 1144s main.mysql-bug45236 w3 [ pass ] 207 1144s main.mysql-bug41486 w1 [ pass ] 253 1144s main.mysql-interactive w3 [ skipped ] does not work with libedit 1144s main.mysql5613mysql w3 [ pass ] 5 1144s main.mysql-metadata w1 [ pass ] 75 1144s main.mysql57_virtual w3 [ pass ] 1 1144s main.mysql_connector_net w3 [ skipped ] Need windows 1144s main.mysql_comments w1 [ pass ] 83 1144s main.mysql_install_db_win w1 [ skipped ] Need windows 1144s main.mysql_install_db_win_utf8 w1 [ skipped ] Need windows 1144s main.mysql_locale_posix w1 [ skipped ] Need POSIX locale de_DE.iso88591 1144s main.mysql_cp932 w3 [ pass ] 233 1144s main.mysql_not_windows w1 [ pass ] 229 1144s main.mysql_protocols w3 [ pass ] 117 1144s main.mysql_upgrade_file_leak w1 [ pass ] 41 1145s main.mysql_upgrade_mysql_json_system_tables w1 [ pass ] 433 1145s main.mysql_upgrade_mysql_json w3 [ pass ] 739 1146s main.mysql_upgrade_no_innodb w1 [ pass ] 458 1146s main.mysqld--defaults-file w1 [ pass ] 187 1146s main.mysqld--help 'unix' w1 [ pass ] 107 1146s main.mysqld_help_crash-9183 w1 [ pass ] 110 1148s main.mysqld_option_err w1 [ pass ] 1549 1149s main.mysqldump-header w1 [ pass ] 571 1149s main.mysqldump-nl w1 [ pass ] 170 1149s main.mysqladmin w3 [ pass ] 4102 1150s main.mysqldump-timing w1 [ pass ] 1076 1207s main.mysql w2 [ pass ] 105106 1207s 1207s Only 1294 of 1293 completed. 1207s -------------------------------------------------------------------------- 1207s The servers were restarted 229 times 1207s Spent 847.250 of 391 seconds executing testcases 1207s 1207s Completed: Failed 2/1092 tests, 99.82% were successful. 1207s 1207s Failing test(s): main.func_regexp_pcre 1207s 1207s The log files in var/log may give you some hint of what went wrong. 1207s 1207s If you want to report this error, please read first the documentation 1207s at http://dev.mysql.com/doc/mysql/en/mysql-test-suite.html 1207s 1207s 192 tests were skipped, 83 by the test itself. 1207s 1207s mysql-test-run: *** ERROR: there were failing test cases 1207s /tmp/autopkgtest.E79602/wrapper.sh: checking for leaked background processes... 1207s /tmp/autopkgtest.E79602/wrapper.sh: waiting for tee/cat subprocesses... 1207s /tmp/autopkgtest.E79602/wrapper.sh: cleaning up... 1207s /tmp/autopkgtest.E79602/wrapper.sh: Exit status: 1 1207s autopkgtest: DBG: testbed command exited with code 1 1208s autopkgtest [04:51:11]: test upstream: -----------------------] 1208s autopkgtest: DBG: testbed executing test finished with exit status 1 1208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/upstream-stdout /tmp/autopkgtest-work.dooc2_ie/out/upstream-stdout 1208s autopkgtest: DBG: got reply from testbed: ok 1208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/upstream-stderr /tmp/autopkgtest-work.dooc2_ie/out/upstream-stderr 1208s autopkgtest: DBG: got reply from testbed: ok 1208s autopkgtest [04:51:11]: test upstream: - - - - - - - - - - results - - - - - - - - - - 1208s upstream FAIL non-zero exit status 1 1208s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.E79602/upstream-artifacts/ /tmp/autopkgtest-work.dooc2_ie/out/artifacts/ 1208s autopkgtest: DBG: got reply from testbed: ok 1208s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.E79602/upstream-artifacts', '/tmp/autopkgtest.E79602/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 1209s autopkgtest: DBG: testbed command exited with code 0 1209s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 223 1209s autopkgtest: DBG: needs_reset, previously=True, requested by run_tests() line 230 1209s autopkgtest [04:51:12]: @@@@@@@@@@@@@@@@@@@@ summary 1209s configuration-tracing PASS 1209s smoke PASS 1209s upstream FAIL non-zero exit status 1 1209s autopkgtest: DBG: testbed stop 1209s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.E79602 1209s autopkgtest: DBG: sending command to testbed: close 1226s autopkgtest: DBG: got reply from testbed: ok 1226s autopkgtest: DBG: sending command to testbed: quit 1226s nova [W] Using flock in prodstack6-s390x 1226s flock: timeout while waiting to get lock 1226s Creating nova instance adt-plucky-s390x-mariadb-20250219-043103-juju-7f2275-prod-proposed-migration-environment-15-f9ba7f09-1569-4e16-a7b5-803505ddcda5 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 1226s nova [W] Timed out waiting for d8d5944a-dcb7-4600-9f17-01385a4a5a5a to get deleted. 1226s nova [W] Using flock in prodstack6-s390x 1226s Creating nova instance adt-plucky-s390x-mariadb-20250219-043103-juju-7f2275-prod-proposed-migration-environment-15-f9ba7f09-1569-4e16-a7b5-803505ddcda5 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 1226s nova [W] Timed out waiting for 3527e58d-c8cf-4bb1-9e23-f5801296d76b to get deleted. 1226s nova [W] Using flock in prodstack6-s390x 1226s Creating nova instance adt-plucky-s390x-mariadb-20250219-043103-juju-7f2275-prod-proposed-migration-environment-15-f9ba7f09-1569-4e16-a7b5-803505ddcda5 from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 1226s nova [W] Timed out waiting for 6272906f-2c25-4492-80fa-75eaf7d6ca2b to get deleted.