0s autopkgtest: DBG: testbed init 0s autopkgtest [21:24:14]: starting date and time: 2025-02-15 21:24:14+0000 0s autopkgtest [21:24:14]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:24:14]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.ooen5f3a/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade abcmidi --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-14.secgroup --name adt-plucky-s390x-abcmidi-20250215-212414-juju-7f2275-prod-proposed-migration-environment-15-a09df822-79bd-4031-b63d-13af6cafdd01 --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 229s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.aby2ko 232s autopkgtest: DBG: sending command to testbed: print-execute-command 232s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.t646rqst/runcmd 232s autopkgtest: DBG: sending command to testbed: capabilities 232s autopkgtest: DBG: got reply from testbed: ok revert isolation-machine suggested-normal-user=ubuntu reboot revert-full-system root-on-testbed 232s autopkgtest: DBG: testbed capabilities: ['revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 232s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.aby2ko'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.aby2ko/wrapper.sh 232s autopkgtest: DBG: got reply from testbed: ok 232s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.aby2ko/wrapper.sh'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest [21:28:05]: testbed dpkg architecture: s390x 232s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest [21:28:05]: testbed apt version: 2.9.28 232s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: testbed has eatmydata 232s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest [21:28:06]: @@@@@@@@@@@@@@@@@@@@ test bed setup 232s 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 [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest [21:28:08]: testbed release detected to be: None 234s 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 [] 234s autopkgtest: DBG: testbed command exited with code 0 234s 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 [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest: DBG: adding APT source: Types: deb deb-src 234s URIs: http://ftpmaster.internal/ubuntu/ 234s Suites: plucky-proposed 234s Components: main restricted universe multiverse 234s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 234s 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 [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 234s Package: * 234s Pin: release plucky-proposed 234s Pin-Priority: 500 234s 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 [] 235s autopkgtest: DBG: testbed command exited with code 0 235s autopkgtest [21:28:09]: updating testbed package index (apt update) 235s 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'] 235s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 235s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 235s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 236s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 236s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 236s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 236s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 236s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 236s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 236s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 236s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 236s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 236s Fetched 1889 kB in 1s (1954 kB/s) 237s Reading package lists... 237s autopkgtest: DBG: testbed command exited with code 0 237s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 237s Package: * 237s Pin: release plucky-proposed 237s Pin-Priority: 100 237s 237s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 237s Pin: release plucky-proposed 237s Pin-Priority: 995 237s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 237s autopkgtest: DBG: testbed command exited with code 0 237s 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.aby2ko/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 237s autopkgtest: DBG: testbed command exited with code 0 237s 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'] 237s + lsb_release --codename --short 237s + RELEASE=plucky 237s + cat 237s + [ plucky != trusty ] 237s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 237s Reading package lists... 237s Building dependency tree... 237s Reading state information... 237s Calculating upgrade... 237s The following packages were automatically installed and are no longer required: 237s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 237s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 237s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 237s linux-tools-6.11.0-8-generic 237s Use 'sudo apt autoremove' to remove them. 237s The following packages will be upgraded: 237s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 238s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 238s Need to get 1155 kB of archives. 238s After this operation, 16.4 kB of additional disk space will be used. 238s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 238s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 238s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 238s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 238s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 238s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 238s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 238s Preconfiguring packages ... 238s Fetched 1155 kB in 1s (1809 kB/s) 238s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 238s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 238s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 239s Setting up dash (0.5.12-12ubuntu1) ... 239s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 239s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 239s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 239s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 239s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 239s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 239s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 239s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 239s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 239s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 239s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 239s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 239s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 239s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 239s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 239s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 239s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 239s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 239s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 239s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 239s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 239s Setting up libtasn1-6:s390x (4.20.0-2) ... 239s Processing triggers for libc-bin (2.40-4ubuntu1) ... 239s Processing triggers for man-db (2.13.0-1) ... 239s Processing triggers for debianutils (5.21) ... 239s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 239s + /usr/lib/apt/apt-helper analyze-pattern ?true 239s + uname -r+ 239s sed s/\./\\./g 239s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 239s + apt list ?obsolete 239s + tail -n+2 239s + cut -d/ -f1 239s + grep -v ^linux-.*6\.12\.0-15-generic.* 240s + true 240s + obsolete_pkgs= 240s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 240s Reading package lists... 240s Building dependency tree... 240s Reading state information... 240s The following packages will be REMOVED: 240s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 240s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 240s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 240s linux-tools-6.11.0-8-generic* 240s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 240s After this operation, 167 MB disk space will be freed. 240s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 240s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 240s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 240s Removing libpython3.12t64:s390x (3.12.9-1) ... 240s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 240s Removing libnsl2:s390x (1.3.0-3build3) ... 240s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 240s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 240s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 241s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 241s Processing triggers for libc-bin (2.40-4ubuntu1) ... 241s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 241s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 241s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 241s + grep -q trusty /etc/lsb-release 241s + [ ! -d /usr/share/doc/unattended-upgrades ] 241s + [ ! -d /usr/share/doc/lxd ] 241s + [ ! -d /usr/share/doc/lxd-client ] 241s + [ ! -d /usr/share/doc/snapd ] 241s + type iptables 241s + cat 241s + chmod 755 /etc/rc.local 241s + . /etc/rc.local 241s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 241s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 241s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 241s + uname -m 241s + [ s390x = ppc64le ] 241s + [ -d /run/systemd/system ] 241s + systemd-detect-virt --quiet --vm 241s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 241s + cat 241s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 241s + echo COMPRESS=lz4 241s autopkgtest: DBG: testbed command exited with code 0 241s autopkgtest [21:28:15]: upgrading testbed (apt dist-upgrade and autopurge) 241s 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'] 241s Reading package lists... 242s Building dependency tree... 242s Reading state information... 242s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 242s Starting 2 pkgProblemResolver with broken count: 0 242s Done 242s Entering ResolveByKeep 242s 242s The following packages will be upgraded: 242s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 242s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 242s Need to get 10.7 MB of archives. 242s After this operation, 305 kB of additional disk space will be used. 242s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 242s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 243s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 243s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 243s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 243s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 243s Preconfiguring packages ... 243s Fetched 10.7 MB in 1s (10.5 MB/s) 243s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 243s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 243s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 243s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 243s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 243s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 243s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 244s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 244s Checking for services that may need to be restarted... 244s Checking init scripts... 244s Checking for services that may need to be restarted... 244s Checking init scripts... 244s Stopping some services possibly affected by the upgrade (will be restarted later): 244s cron: stopping...done. 244s 244s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 244s Setting up libc6:s390x (2.41-1ubuntu1) ... 244s Checking for services that may need to be restarted... 244s Checking init scripts... 244s Restarting services possibly affected by the upgrade: 244s cron: restarting...done. 244s 244s Services restarted successfully. 244s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 244s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 244s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 244s Setting up libc-bin (2.41-1ubuntu1) ... 244s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55868 files and directories currently installed.) 244s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 244s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 244s Setting up iproute2 (6.13.0-1ubuntu1) ... 244s Setting up locales (2.41-1ubuntu1) ... 244s Installing new version of config file /etc/locale.alias ... 245s Generating locales (this might take a while)... 246s en_US.UTF-8... done 246s Generation complete. 246s Setting up libc-dev-bin (2.41-1ubuntu1) ... 246s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 246s Processing triggers for man-db (2.13.0-1) ... 246s Processing triggers for systemd (257.2-3ubuntu1) ... 247s autopkgtest: DBG: testbed command exited with code 0 247s 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'] 247s Reading package lists... 247s Building dependency tree... 247s Reading state information... 247s Starting pkgProblemResolver with broken count: 0 247s Starting 2 pkgProblemResolver with broken count: 0 247s Done 248s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 248s autopkgtest: DBG: testbed command exited with code 0 248s 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.aby2ko/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 248s autopkgtest: DBG: testbed command exited with code 1 248s autopkgtest [21:28:22]: rebooting testbed after setup commands that affected boot 248s autopkgtest: DBG: sending command to testbed: reboot 272s autopkgtest: DBG: got reply from testbed: ok 275s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 275s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.aby2ko'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.aby2ko/autopkgtest-reboot 275s autopkgtest: DBG: got reply from testbed: ok 275s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.aby2ko'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.aby2ko/autopkgtest-reboot-prepare 275s autopkgtest: DBG: got reply from testbed: ok 275s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest [21:28:48]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 275s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.aby2ko/testbed-packages"], kind short, sout raw, serr pipe, env [] 275s autopkgtest: DBG: testbed command exited with code 0 275s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/testbed-packages /tmp/autopkgtest-work.ooen5f3a/out/testbed-packages 276s autopkgtest: DBG: got reply from testbed: ok 276s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 276s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.aby2ko'], kind short, sout raw, serr pipe, env [] 276s autopkgtest: DBG: testbed command exited with code 0 276s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.aby2ko/autopkgtest-reboot 276s autopkgtest: DBG: got reply from testbed: ok 276s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 276s autopkgtest: DBG: testbed command exited with code 0 276s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 276s autopkgtest: DBG: testbed command exited with code 0 276s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 276s autopkgtest: DBG: testbed command exited with code 0 276s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.aby2ko'], kind short, sout raw, serr pipe, env [] 277s autopkgtest: DBG: testbed command exited with code 0 277s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.aby2ko/autopkgtest-reboot-prepare 277s autopkgtest: DBG: got reply from testbed: ok 277s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 277s autopkgtest: DBG: testbed command exited with code 0 277s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.aby2ko/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 277s autopkgtest: DBG: testbed command exited with code 0 277s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 277s autopkgtest: DBG: testbed command exited with code 0 277s autopkgtest: DBG: Binaries: initialising 277s autopkgtest [21:28:51]: @@@@@@@@@@@@@@@@@@@@ apt-source abcmidi 277s autopkgtest: DBG: blame += abcmidi 277s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 277s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'abcmidi'], kind short, sout pipe, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^abcmidi$'], kind short, sout pipe, serr raw, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'abcmidi=20250207+ds-1'], kind short, sout pipe, serr raw, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s autopkgtest: DBG: install_deps: deps_new=[] 278s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 278s autopkgtest: DBG: testbed command exited with code 0 278s 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.aby2ko/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source abcmidi=20250207+ds-1 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 abcmidi_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 278s + cd / 278s + mktemp -d /tmp/autopkgtest.aby2ko/build.XXX 278s + builddir=/tmp/autopkgtest.aby2ko/build.Wob 278s + cd /tmp/autopkgtest.aby2ko/build.Wob 278s + apt-get source -d -q --only-source abcmidi=20250207+ds-1 279s + OUT=Reading package lists... 279s NOTICE: 'abcmidi' packaging is maintained in the 'Git' version control system at: 279s https://salsa.debian.org/multimedia-team/abcmidi.git 279s Please use: 279s git clone https://salsa.debian.org/multimedia-team/abcmidi.git 279s to retrieve the latest (possibly unreleased) updates to the package. 279s Need to get 416 kB of source archives. 279s Get:1 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (dsc) [2021 B] 279s Get:2 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (tar) [406 kB] 279s Get:3 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (diff) [8528 B] 279s Fetched 416 kB in 1s (795 kB/s) 279s Download complete and in download only mode 279s + [ -n ] 279s + echo Reading package lists... 279s NOTICE: 'abcmidi' packaging is maintained in the 'Git' version control system at: 279s https://salsa.debian.org/multimedia-team/abcmidi.git 279s Please use: 279s git clone https://salsa.debian.org/multimedia-team/abcmidi.git 279s to retrieve the latest (possibly unreleased) updates to the package. 279s Need to get 416 kB of source archives. 279s Get:1 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (dsc) [2021 B] 279s Get:2 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (tar) [406 kB] 279s Get:3 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (diff) [8528 B] 279s Fetched 416 kB in 1s (795 kB/s) 279s Download complete and in download only mode 279s + grep ^Get: 279s Get:1 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (dsc) [2021 B] 279s Get:2 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (tar) [406 kB] 279s Get:3 http://ftpmaster.internal/ubuntu plucky/universe abcmidi 20250207+ds-1 (diff) [8528 B] 279s + dpkg-source -x abcmidi_20250207+ds-1.dsc src 279s gpgv: Signature made Sun Feb 9 10:45:08 2025 UTC 279s gpgv: using RSA key 3CB7C302AFB57E61A8C617DD634EA55D902B9836 279s gpgv: issuer "snd@debian.org" 279s gpgv: Can't check signature: No public key 279s dpkg-source: warning: cannot verify inline signature for ./abcmidi_20250207+ds-1.dsc: no acceptable signature found 279s + chmod -R a+rX . 279s + cd src/. 279s + pwd 279s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 279s autopkgtest: DBG: testbed command exited with code 0 279s autopkgtest [21:28:53]: testing package abcmidi version 20250207+ds-1 279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/build.Wob/src/debian/ /tmp/autopkgtest-work.ooen5f3a/out/pkg/debian/ 279s autopkgtest: DBG: got reply from testbed: ok 279s autopkgtest: DBG: processing dependency abcmidi 279s autopkgtest: DBG: marked alternatives ['abcmidi'] as a synthesised dependency 279s autopkgtest: DBG: processing dependency gzip 279s autopkgtest: DBG: Test defined: name conversions path debian/tests/conversions command "None" restrictions [] features [] depends ['abcmidi', 'gzip'] 279s autopkgtest [21:28:53]: build not needed 279s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/build.Wob/src/ /tmp/autopkgtest-work.ooen5f3a/out/tests-tree/ 280s autopkgtest: DBG: got reply from testbed: ok 280s autopkgtest: DBG: processing dependency abcmidi 280s autopkgtest: DBG: marked alternatives ['abcmidi'] as a synthesised dependency 280s autopkgtest: DBG: processing dependency gzip 280s autopkgtest: DBG: Test defined: name conversions path debian/tests/conversions command "None" restrictions [] features [] depends ['abcmidi', 'gzip'] 280s autopkgtest [21:28:54]: test conversions: preparing testbed 280s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['abcmidi', 'gzip'] 280s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 280s autopkgtest: DBG: install_deps: deps_new=['abcmidi', 'gzip'] 280s autopkgtest: DBG: install-deps: satisfying abcmidi, gzip 280s autopkgtest: DBG: can use apt-get on testbed: True 280s 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', 'abcmidi, gzip'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 280s Reading package lists... 280s Building dependency tree... 280s Reading state information... 280s Starting pkgProblemResolver with broken count: 0 280s Starting 2 pkgProblemResolver with broken count: 0 280s Done 281s The following NEW packages will be installed: 281s abcmidi 281s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 281s Need to get 350 kB of archives. 281s After this operation, 954 kB of additional disk space will be used. 281s Get:1 http://ftpmaster.internal/ubuntu plucky/universe s390x abcmidi s390x 20250207+ds-1 [350 kB] 281s Fetched 350 kB in 0s (808 kB/s) 281s Selecting previously unselected package abcmidi. 281s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 281s Preparing to unpack .../abcmidi_20250207+ds-1_s390x.deb ... 281s Unpacking abcmidi (20250207+ds-1) ... 281s Setting up abcmidi (20250207+ds-1) ... 281s Processing triggers for man-db (2.13.0-1) ... 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'abcmidi'], kind short, sout pipe, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.aby2ko/conversions-packages.all"], kind short, sout raw, serr pipe, env [] 282s autopkgtest: DBG: testbed command exited with code 0 282s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/conversions-packages.all /tmp/autopkgtest-work.ooen5f3a/out/conversions-packages.all 283s autopkgtest: DBG: got reply from testbed: ok 283s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.aby2ko/build.Wob/src'], kind short, sout raw, serr raw, env [] 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.aby2ko/build.Wob/src already exists 283s autopkgtest [21:28:57]: test conversions: [----------------------- 283s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.aby2ko/wrapper.sh --debug --artifacts=/tmp/autopkgtest.aby2ko/conversions-artifacts --chdir=/tmp/autopkgtest.aby2ko/build.Wob/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.aby2ko/conversions-stderr --stdout=/tmp/autopkgtest.aby2ko/conversions-stdout --tmp=/tmp/autopkgtest.aby2ko/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' --make-executable=/tmp/autopkgtest.aby2ko/build.Wob/src/debian/tests/conversions -- /tmp/autopkgtest.aby2ko/build.Wob/src/debian/tests/conversions"], kind test, sout raw, serr raw, env [] 283s /tmp/autopkgtest.aby2ko/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.aby2ko/conversions-artifacts 283s /tmp/autopkgtest.aby2ko/wrapper.sh: changing to directory: /tmp/autopkgtest.aby2ko/build.Wob/src 283s /tmp/autopkgtest.aby2ko/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 283s /tmp/autopkgtest.aby2ko/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 283s /tmp/autopkgtest.aby2ko/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 283s /tmp/autopkgtest.aby2ko/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 283s /tmp/autopkgtest.aby2ko/wrapper.sh: setting environment: LANG=C.UTF-8 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LANGUAGE 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_ADDRESS 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_ALL 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_COLLATE 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_CTYPE 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_IDENTIFICATION 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_MEASUREMENT 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_MESSAGES 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_MONETARY 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_NAME 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_NUMERIC 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_PAPER 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_TELEPHONE 283s /tmp/autopkgtest.aby2ko/wrapper.sh: unsetting environment: LC_TIME 283s /tmp/autopkgtest.aby2ko/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 283s /tmp/autopkgtest.aby2ko/wrapper.sh: pretending to be a login shell 283s /tmp/autopkgtest.aby2ko/wrapper.sh: will write standard error to /tmp/autopkgtest.aby2ko/conversions-stderr 283s /tmp/autopkgtest.aby2ko/wrapper.sh: will write stdout to /tmp/autopkgtest.aby2ko/conversions-stdout 283s /tmp/autopkgtest.aby2ko/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.aby2ko/autopkgtest_tmp 283s /tmp/autopkgtest.aby2ko/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 283s /tmp/autopkgtest.aby2ko/wrapper.sh: marking as executable: /tmp/autopkgtest.aby2ko/build.Wob/src/debian/tests/conversions 283s /tmp/autopkgtest.aby2ko/wrapper.sh: command to run: /tmp/autopkgtest.aby2ko/build.Wob/src/debian/tests/conversions 283s /tmp/autopkgtest.aby2ko/wrapper.sh: copying /tmp/tmp.rkWPq0trul/out to stdout and file: /tmp/autopkgtest.aby2ko/conversions-stdout 283s /tmp/autopkgtest.aby2ko/wrapper.sh: copying /tmp/tmp.rkWPq0trul/err to standard error and file: /tmp/autopkgtest.aby2ko/conversions-stdout 283s /tmp/autopkgtest.aby2ko/wrapper.sh: writing script pid 1325 to /tmp/autopkgtest_script_pid 283s -------------------------------- 283s ABC to ABC transposition test 283s -------------------------------- 283s Retrieving sample abcfile 283s Transpose the abc file up a semitone using abc2abc 283s X:47 283s %%MIDI channel 1 283s %%MIDI chordprog 32 283s %%MIDI bassprog 0 283s %%MIDI program 25 283s %%MIDI beat 110 100 90 4 283s %%MIDI ratio 2 1 283s %%MIDI chordvol 95 283s %%MIDI bassvol 97 283s %%MIDI transpose 0 283s %%MIDI gracedivider 4 283s Q:1/4=144 283s T:Araber tants [D] 283s R:Terkish 283s S:handwritten MS of unknown origin labelled "III-2" 283s Z:2009 John Chambers 283s M:C 283s L:1/8 283s K:D#phr ^^f 283s %%MIDI drum d2zdd2d2 65 50 50 50 90 90 90 90 283s %%MIDI drumon 283s D2 \ 283s | "D#"FGA2 A2A2 | "G#m"B6 AG | "D#"^^FGA2 "E"BAGA | "D#"GF3 z2D2 | 283s | "D#"FGA2 A2A2 | "C#m"c4- cBAG | "D#"FGA2 "E"BAGA | "D#"GF3 z4 | 283s | "D#7"Dd2^^c d2A2 | "G#m"B3c d2c/2B/2A/2G/2 | "C#m"FG3- GFEF | "D#"ED3 zD (3BAG |] 283s |: "D#7"F8 | "G#m"G8 | "D#"FGAF- FD"C#m"EC | "D#"DEFG AdAG | 283s | "D#7"F8 | "G#m"G4 zD (3BAG | "D#"FGAF- FD"C#m"EC |1 "D#"D4 zD (3BAG :|2 "D#"D4 zd "C#m"c/2B/2A/2G/2 || 283s |: "D#"FGAF- FD "C#m"E/2D/2E/2C/2 | "D#"DEFG Ad "C#m"c/2B/2A/2G/2 \ 283s | "D#"FGAF- FD"C#m"EC |1 "D#"DD2A, DA,D2 :|2 "D#"D6 283s %Error : Bar 31 is 3/4 not 4/4 283s |] 283s 283s ----------------------------------- 283s ABC to ABC transposition SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s ABC to MIDI conversion test 283s -------------------------------- 283s Convert the file from abc to midi format using abcmidi 283s 5.00 February 02 2025 abc2midi 283s voice mapping: 283s 1 283s writing MIDI file araber47.mid 283s ----------------------------------- 283s ABC to MIDI conversion SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s Abcmatch test 283s -------------------------------- 283s Retrieving demo.abc file 283s Creating match.abc file 283s Search for match.abc in demo.abc 283s 1 2 5 283s ----------------------------------- 283s Abcmatch test SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s MIDI file to text test 283s -------------------------------- 283s Print the araber47.mid file 283s Header format=1 ntrks=4 division=480 283s Track start 283s Time=0 Meta Text, type=0x01 (Text Event) leng=10 283s Text = 283s Time=0 Tempo, microseconds-per-MIDI-quarter-note=416666 283s Time=0 Key signature, sharp/flats=254 minor=0 283s Time=0 Time signature=4/4 MIDI-clocks/click=48 32nd-notes/24-MIDI-clocks=8 283s Time=0 Meta Text, type=0x03 (Sequence/Track Name) leng=17 283s Text = 283s Time=69145 Meta event, end of track 283s Track end 283s Track start 283s Time=0 Meta Text, type=0x01 (Text Event) leng=10 283s Text = 283s Time=1 Program, chan=1 program=25 283s Time=1 Meta Text, type=0x03 (Sequence/Track Name) leng=17 283s Text = 283s Time=1 Meta Text, type=0x01 (Text Event) leng=51 283s Text = 283s Time=1 Meta Text, type=0x01 (Text Event) leng=42 283s Text = > 283s Time=1 Note on, chan=1 pitch=62 vol=110 283s Time=480 Note off, chan=1 pitch=62 vol=0 283s Time=481 Note on, chan=1 pitch=66 vol=110 283s Time=720 Note off, chan=1 pitch=66 vol=0 283s Time=721 Note on, chan=1 pitch=67 vol=90 283s Time=960 Note off, chan=1 pitch=67 vol=0 283s Time=961 Note on, chan=1 pitch=69 vol=90 283s Time=1440 Note off, chan=1 pitch=69 vol=0 283s Time=1441 Note on, chan=1 pitch=69 vol=90 283s Time=1920 Note off, chan=1 pitch=69 vol=0 283s Time=1921 Note on, chan=1 pitch=69 vol=90 283s Time=2400 Note off, chan=1 pitch=69 vol=0 283s Time=2401 Note on, chan=1 pitch=70 vol=110 283s Time=3840 Note off, chan=1 pitch=70 vol=0 283s Time=3841 Note on, chan=1 pitch=69 vol=90 283s Time=4080 Note off, chan=1 pitch=69 vol=0 283s Time=4081 Note on, chan=1 pitch=67 vol=90 283s Time=4320 Note off, chan=1 pitch=67 vol=0 283s Time=4321 Note on, chan=1 pitch=66 vol=110 283s Time=4560 Note off, chan=1 pitch=66 vol=0 283s Time=4561 Note on, chan=1 pitch=67 vol=90 283s Time=4800 Note off, chan=1 pitch=67 vol=0 283s Time=4801 Note on, chan=1 pitch=69 vol=90 283s Time=5280 Note off, chan=1 pitch=69 vol=0 283s Time=5281 Note on, chan=1 pitch=70 vol=90 283s Time=5520 Note off, chan=1 pitch=70 vol=0 283s Time=5521 Note on, chan=1 pitch=69 vol=90 283s Time=5760 Note off, chan=1 pitch=69 vol=0 283s Time=5761 Note on, chan=1 pitch=67 vol=90 283s Time=6000 Note off, chan=1 pitch=67 vol=0 283s Time=6001 Note on, chan=1 pitch=69 vol=90 283s Time=6240 Note off, chan=1 pitch=69 vol=0 283s Time=6241 Note on, chan=1 pitch=67 vol=110 283s Time=6480 Note off, chan=1 pitch=67 vol=0 283s Time=6481 Note on, chan=1 pitch=66 vol=90 283s Time=7200 Note off, chan=1 pitch=66 vol=0 283s Time=7681 Note on, chan=1 pitch=62 vol=90 283s Time=8160 Note off, chan=1 pitch=62 vol=0 283s Time=8161 Note on, chan=1 pitch=66 vol=110 283s Time=8400 Note off, chan=1 pitch=66 vol=0 283s Time=8401 Note on, chan=1 pitch=67 vol=90 283s Time=8640 Note off, chan=1 pitch=67 vol=0 283s Time=8641 Note on, chan=1 pitch=69 vol=90 283s Time=9120 Note off, chan=1 pitch=69 vol=0 283s Time=9121 Note on, chan=1 pitch=69 vol=90 283s Time=9600 Note off, chan=1 pitch=69 vol=0 283s Time=9601 Note on, chan=1 pitch=69 vol=90 283s Time=10080 Note off, chan=1 pitch=69 vol=0 283s Time=10081 Note on, chan=1 pitch=72 vol=110 283s Time=11280 Note off, chan=1 pitch=72 vol=0 283s Time=11281 Note on, chan=1 pitch=70 vol=90 283s Time=11520 Note off, chan=1 pitch=70 vol=0 283s Time=11521 Note on, chan=1 pitch=69 vol=90 283s Time=11760 Note off, chan=1 pitch=69 vol=0 283s Time=11761 Note on, chan=1 pitch=67 vol=90 283s Time=12000 Note off, chan=1 pitch=67 vol=0 283s Time=12001 Note on, chan=1 pitch=66 vol=110 283s Time=12240 Note off, chan=1 pitch=66 vol=0 283s Time=12241 Note on, chan=1 pitch=67 vol=90 283s Time=12480 Note off, chan=1 pitch=67 vol=0 283s Time=12481 Note on, chan=1 pitch=69 vol=90 283s Time=12960 Note off, chan=1 pitch=69 vol=0 283s Time=12961 Note on, chan=1 pitch=70 vol=90 283s Time=13200 Note off, chan=1 pitch=70 vol=0 283s Time=13201 Note on, chan=1 pitch=69 vol=90 283s Time=13440 Note off, chan=1 pitch=69 vol=0 283s Time=13441 Note on, chan=1 pitch=67 vol=90 283s Time=13680 Note off, chan=1 pitch=67 vol=0 283s Time=13681 Note on, chan=1 pitch=69 vol=90 283s Time=13920 Note off, chan=1 pitch=69 vol=0 283s Time=13921 Note on, chan=1 pitch=67 vol=110 283s Time=14160 Note off, chan=1 pitch=67 vol=0 283s Time=14161 Note on, chan=1 pitch=66 vol=90 283s Time=14880 Note off, chan=1 pitch=66 vol=0 283s Time=15841 Note on, chan=1 pitch=62 vol=110 283s Time=16080 Note off, chan=1 pitch=62 vol=0 283s Time=16081 Note on, chan=1 pitch=74 vol=90 283s Time=16560 Note off, chan=1 pitch=74 vol=0 283s Time=16561 Note on, chan=1 pitch=73 vol=90 283s Time=16800 Note off, chan=1 pitch=73 vol=0 283s Time=16801 Note on, chan=1 pitch=74 vol=90 283s Time=17280 Note off, chan=1 pitch=74 vol=0 283s Time=17281 Note on, chan=1 pitch=69 vol=90 283s Time=17760 Note off, chan=1 pitch=69 vol=0 283s Time=17761 Note on, chan=1 pitch=70 vol=110 283s Time=18480 Note off, chan=1 pitch=70 vol=0 283s Time=18481 Note on, chan=1 pitch=72 vol=90 283s Time=18720 Note off, chan=1 pitch=72 vol=0 283s Time=18721 Note on, chan=1 pitch=74 vol=90 283s Time=19200 Note off, chan=1 pitch=74 vol=0 283s Time=19201 Note on, chan=1 pitch=72 vol=90 283s Time=19320 Note off, chan=1 pitch=72 vol=0 283s Time=19321 Note on, chan=1 pitch=70 vol=90 283s Time=19440 Note off, chan=1 pitch=70 vol=0 283s Time=19441 Note on, chan=1 pitch=69 vol=90 283s Time=19560 Note off, chan=1 pitch=69 vol=0 283s Time=19561 Note on, chan=1 pitch=67 vol=90 283s Time=19680 Note off, chan=1 pitch=67 vol=0 283s Time=19681 Note on, chan=1 pitch=66 vol=110 283s Time=19920 Note off, chan=1 pitch=66 vol=0 283s Time=19921 Note on, chan=1 pitch=67 vol=90 283s Time=20880 Note off, chan=1 pitch=67 vol=0 283s Time=20881 Note on, chan=1 pitch=66 vol=90 283s Time=21120 Note off, chan=1 pitch=66 vol=0 283s Time=21121 Note on, chan=1 pitch=63 vol=90 283s Time=21360 Note off, chan=1 pitch=63 vol=0 283s Time=21361 Note on, chan=1 pitch=66 vol=90 283s Time=21600 Note off, chan=1 pitch=66 vol=0 283s Time=21601 Note on, chan=1 pitch=63 vol=110 283s Time=21840 Note off, chan=1 pitch=63 vol=0 283s Time=21841 Note on, chan=1 pitch=62 vol=90 283s Time=22560 Note off, chan=1 pitch=62 vol=0 283s Time=22801 Note on, chan=1 pitch=62 vol=90 283s Time=23040 Note off, chan=1 pitch=62 vol=0 283s Time=23041 Note on, chan=1 pitch=70 vol=90 283s Time=23200 Note off, chan=1 pitch=70 vol=0 283s Time=23201 Note on, chan=1 pitch=69 vol=90 283s Time=23360 Note off, chan=1 pitch=69 vol=0 283s Time=23361 Note on, chan=1 pitch=67 vol=90 283s Time=23520 Note off, chan=1 pitch=67 vol=0 283s Time=23521 Note on, chan=1 pitch=66 vol=110 283s Time=25440 Note off, chan=1 pitch=66 vol=0 283s Time=25441 Note on, chan=1 pitch=67 vol=110 283s Time=27360 Note off, chan=1 pitch=67 vol=0 283s Time=27361 Note on, chan=1 pitch=66 vol=110 283s Time=27600 Note off, chan=1 pitch=66 vol=0 283s Time=27601 Note on, chan=1 pitch=67 vol=90 283s Time=27840 Note off, chan=1 pitch=67 vol=0 283s Time=27841 Note on, chan=1 pitch=69 vol=90 283s Time=28080 Note off, chan=1 pitch=69 vol=0 283s Time=28081 Note on, chan=1 pitch=66 vol=90 283s Time=28560 Note off, chan=1 pitch=66 vol=0 283s Time=28561 Note on, chan=1 pitch=62 vol=90 283s Time=28800 Note off, chan=1 pitch=62 vol=0 283s Time=28801 Note on, chan=1 pitch=63 vol=90 283s Time=29040 Note off, chan=1 pitch=63 vol=0 283s Time=29041 Note on, chan=1 pitch=60 vol=90 283s Time=29280 Note off, chan=1 pitch=60 vol=0 283s Time=29281 Note on, chan=1 pitch=62 vol=110 283s Time=29520 Note off, chan=1 pitch=62 vol=0 283s Time=29521 Note on, chan=1 pitch=63 vol=90 283s Time=29760 Note off, chan=1 pitch=63 vol=0 283s Time=29761 Note on, chan=1 pitch=66 vol=90 283s Time=30000 Note off, chan=1 pitch=66 vol=0 283s Time=30001 Note on, chan=1 pitch=67 vol=90 283s Time=30240 Note off, chan=1 pitch=67 vol=0 283s Time=30241 Note on, chan=1 pitch=69 vol=90 283s Time=30480 Note off, chan=1 pitch=69 vol=0 283s Time=30481 Note on, chan=1 pitch=74 vol=90 283s Time=30720 Note off, chan=1 pitch=74 vol=0 283s Time=30721 Note on, chan=1 pitch=69 vol=90 283s Time=30960 Note off, chan=1 pitch=69 vol=0 283s Time=30961 Note on, chan=1 pitch=67 vol=90 283s Time=31200 Note off, chan=1 pitch=67 vol=0 283s Time=31201 Note on, chan=1 pitch=66 vol=110 283s Time=33120 Note off, chan=1 pitch=66 vol=0 283s Time=33121 Note on, chan=1 pitch=67 vol=110 283s Time=34080 Note off, chan=1 pitch=67 vol=0 283s Time=34321 Note on, chan=1 pitch=62 vol=90 283s Time=34560 Note off, chan=1 pitch=62 vol=0 283s Time=34561 Note on, chan=1 pitch=70 vol=90 283s Time=34720 Note off, chan=1 pitch=70 vol=0 283s Time=34721 Note on, chan=1 pitch=69 vol=90 283s Time=34880 Note off, chan=1 pitch=69 vol=0 283s Time=34881 Note on, chan=1 pitch=67 vol=90 283s Time=35040 Note off, chan=1 pitch=67 vol=0 283s Time=35041 Note on, chan=1 pitch=66 vol=110 283s Time=35280 Note off, chan=1 pitch=66 vol=0 283s Time=35281 Note on, chan=1 pitch=67 vol=90 283s Time=35520 Note off, chan=1 pitch=67 vol=0 283s Time=35521 Note on, chan=1 pitch=69 vol=90 283s Time=35760 Note off, chan=1 pitch=69 vol=0 283s Time=35761 Note on, chan=1 pitch=66 vol=90 283s Time=36240 Note off, chan=1 pitch=66 vol=0 283s Time=36241 Note on, chan=1 pitch=62 vol=90 283s Time=36480 Note off, chan=1 pitch=62 vol=0 283s Time=36481 Note on, chan=1 pitch=63 vol=90 283s Time=36720 Note off, chan=1 pitch=63 vol=0 283s Time=36721 Note on, chan=1 pitch=60 vol=90 283s Time=36960 Note off, chan=1 pitch=60 vol=0 283s Time=36961 Note on, chan=1 pitch=62 vol=110 283s Time=37920 Note off, chan=1 pitch=62 vol=0 283s Time=38161 Note on, chan=1 pitch=62 vol=90 283s Time=38400 Note off, chan=1 pitch=62 vol=0 283s Time=38401 Note on, chan=1 pitch=70 vol=90 283s Time=38560 Note off, chan=1 pitch=70 vol=0 283s Time=38561 Note on, chan=1 pitch=69 vol=90 283s Time=38720 Note off, chan=1 pitch=69 vol=0 283s Time=38721 Note on, chan=1 pitch=67 vol=90 283s Time=38880 Note off, chan=1 pitch=67 vol=0 283s Time=38881 Note on, chan=1 pitch=66 vol=110 283s Time=40800 Note off, chan=1 pitch=66 vol=0 283s Time=40801 Note on, chan=1 pitch=67 vol=110 283s Time=42720 Note off, chan=1 pitch=67 vol=0 283s Time=42721 Note on, chan=1 pitch=66 vol=110 283s Time=42960 Note off, chan=1 pitch=66 vol=0 283s Time=42961 Note on, chan=1 pitch=67 vol=90 283s Time=43200 Note off, chan=1 pitch=67 vol=0 283s Time=43201 Note on, chan=1 pitch=69 vol=90 283s Time=43440 Note off, chan=1 pitch=69 vol=0 283s Time=43441 Note on, chan=1 pitch=66 vol=90 283s Time=43920 Note off, chan=1 pitch=66 vol=0 283s Time=43921 Note on, chan=1 pitch=62 vol=90 283s Time=44160 Note off, chan=1 pitch=62 vol=0 283s Time=44161 Note on, chan=1 pitch=63 vol=90 283s Time=44400 Note off, chan=1 pitch=63 vol=0 283s Time=44401 Note on, chan=1 pitch=60 vol=90 283s Time=44640 Note off, chan=1 pitch=60 vol=0 283s Time=44641 Note on, chan=1 pitch=62 vol=110 283s Time=44880 Note off, chan=1 pitch=62 vol=0 283s Time=44881 Note on, chan=1 pitch=63 vol=90 283s Time=45120 Note off, chan=1 pitch=63 vol=0 283s Time=45121 Note on, chan=1 pitch=66 vol=90 283s Time=45360 Note off, chan=1 pitch=66 vol=0 283s Time=45361 Note on, chan=1 pitch=67 vol=90 283s Time=45600 Note off, chan=1 pitch=67 vol=0 283s Time=45601 Note on, chan=1 pitch=69 vol=90 283s Time=45840 Note off, chan=1 pitch=69 vol=0 283s Time=45841 Note on, chan=1 pitch=74 vol=90 283s Time=46080 Note off, chan=1 pitch=74 vol=0 283s Time=46081 Note on, chan=1 pitch=69 vol=90 283s Time=46320 Note off, chan=1 pitch=69 vol=0 283s Time=46321 Note on, chan=1 pitch=67 vol=90 283s Time=46560 Note off, chan=1 pitch=67 vol=0 283s Time=46561 Note on, chan=1 pitch=66 vol=110 283s Time=48480 Note off, chan=1 pitch=66 vol=0 283s Time=48481 Note on, chan=1 pitch=67 vol=110 283s Time=49440 Note off, chan=1 pitch=67 vol=0 283s Time=49681 Note on, chan=1 pitch=62 vol=90 283s Time=49920 Note off, chan=1 pitch=62 vol=0 283s Time=49921 Note on, chan=1 pitch=70 vol=90 283s Time=50080 Note off, chan=1 pitch=70 vol=0 283s Time=50081 Note on, chan=1 pitch=69 vol=90 283s Time=50240 Note off, chan=1 pitch=69 vol=0 283s Time=50241 Note on, chan=1 pitch=67 vol=90 283s Time=50400 Note off, chan=1 pitch=67 vol=0 283s Time=50401 Note on, chan=1 pitch=66 vol=110 283s Time=50640 Note off, chan=1 pitch=66 vol=0 283s Time=50641 Note on, chan=1 pitch=67 vol=90 283s Time=50880 Note off, chan=1 pitch=67 vol=0 283s Time=50881 Note on, chan=1 pitch=69 vol=90 283s Time=51120 Note off, chan=1 pitch=69 vol=0 283s Time=51121 Note on, chan=1 pitch=66 vol=90 283s Time=51600 Note off, chan=1 pitch=66 vol=0 283s Time=51601 Note on, chan=1 pitch=62 vol=90 283s Time=51840 Note off, chan=1 pitch=62 vol=0 283s Time=51841 Note on, chan=1 pitch=63 vol=90 283s Time=52080 Note off, chan=1 pitch=63 vol=0 283s Time=52081 Note on, chan=1 pitch=60 vol=90 283s Time=52320 Note off, chan=1 pitch=60 vol=0 283s Time=52321 Note on, chan=1 pitch=62 vol=110 283s Time=53280 Note off, chan=1 pitch=62 vol=0 283s Time=53521 Note on, chan=1 pitch=74 vol=90 283s Time=53760 Note off, chan=1 pitch=74 vol=0 283s Time=53761 Note on, chan=1 pitch=72 vol=90 283s Time=53880 Note off, chan=1 pitch=72 vol=0 283s Time=53881 Note on, chan=1 pitch=70 vol=90 283s Time=54000 Note off, chan=1 pitch=70 vol=0 283s Time=54001 Note on, chan=1 pitch=69 vol=90 283s Time=54120 Note off, chan=1 pitch=69 vol=0 283s Time=54121 Note on, chan=1 pitch=67 vol=90 283s Time=54240 Note off, chan=1 pitch=67 vol=0 283s Time=54241 Note on, chan=1 pitch=66 vol=110 283s Time=54480 Note off, chan=1 pitch=66 vol=0 283s Time=54481 Note on, chan=1 pitch=67 vol=90 283s Time=54720 Note off, chan=1 pitch=67 vol=0 283s Time=54721 Note on, chan=1 pitch=69 vol=90 283s Time=54960 Note off, chan=1 pitch=69 vol=0 283s Time=54961 Note on, chan=1 pitch=66 vol=90 283s Time=55440 Note off, chan=1 pitch=66 vol=0 283s Time=55441 Note on, chan=1 pitch=62 vol=90 283s Time=55680 Note off, chan=1 pitch=62 vol=0 283s Time=55681 Note on, chan=1 pitch=63 vol=90 283s Time=55800 Note off, chan=1 pitch=63 vol=0 283s Time=55801 Note on, chan=1 pitch=62 vol=90 283s Time=55920 Note off, chan=1 pitch=62 vol=0 283s Time=55921 Note on, chan=1 pitch=63 vol=90 283s Time=56040 Note off, chan=1 pitch=63 vol=0 283s Time=56041 Note on, chan=1 pitch=60 vol=90 283s Time=56160 Note off, chan=1 pitch=60 vol=0 283s Time=56161 Note on, chan=1 pitch=62 vol=110 283s Time=56400 Note off, chan=1 pitch=62 vol=0 283s Time=56401 Note on, chan=1 pitch=63 vol=90 283s Time=56640 Note off, chan=1 pitch=63 vol=0 283s Time=56641 Note on, chan=1 pitch=66 vol=90 283s Time=56880 Note off, chan=1 pitch=66 vol=0 283s Time=56881 Note on, chan=1 pitch=67 vol=90 283s Time=57120 Note off, chan=1 pitch=67 vol=0 283s Time=57121 Note on, chan=1 pitch=69 vol=90 283s Time=57360 Note off, chan=1 pitch=69 vol=0 283s Time=57361 Note on, chan=1 pitch=74 vol=90 283s Time=57600 Note off, chan=1 pitch=74 vol=0 283s Time=57601 Note on, chan=1 pitch=72 vol=90 283s Time=57720 Note off, chan=1 pitch=72 vol=0 283s Time=57721 Note on, chan=1 pitch=70 vol=90 283s Time=57840 Note off, chan=1 pitch=70 vol=0 283s Time=57841 Note on, chan=1 pitch=69 vol=90 283s Time=57960 Note off, chan=1 pitch=69 vol=0 283s Time=57961 Note on, chan=1 pitch=67 vol=90 283s Time=58080 Note off, chan=1 pitch=67 vol=0 283s Time=58081 Note on, chan=1 pitch=66 vol=110 283s Time=58320 Note off, chan=1 pitch=66 vol=0 283s Time=58321 Note on, chan=1 pitch=67 vol=90 283s Time=58560 Note off, chan=1 pitch=67 vol=0 283s Time=58561 Note on, chan=1 pitch=69 vol=90 283s Time=58800 Note off, chan=1 pitch=69 vol=0 283s Time=58801 Note on, chan=1 pitch=66 vol=90 283s Time=59280 Note off, chan=1 pitch=66 vol=0 283s Time=59281 Note on, chan=1 pitch=62 vol=90 283s Time=59520 Note off, chan=1 pitch=62 vol=0 283s Time=59521 Note on, chan=1 pitch=63 vol=90 283s Time=59760 Note off, chan=1 pitch=63 vol=0 283s Time=59761 Note on, chan=1 pitch=60 vol=90 283s Time=60000 Note off, chan=1 pitch=60 vol=0 283s Time=60001 Note on, chan=1 pitch=62 vol=110 283s Time=60240 Note off, chan=1 pitch=62 vol=0 283s Time=60241 Note on, chan=1 pitch=62 vol=90 283s Time=60720 Note off, chan=1 pitch=62 vol=0 283s Time=60721 Note on, chan=1 pitch=57 vol=90 283s Time=60960 Note off, chan=1 pitch=57 vol=0 283s Time=60961 Note on, chan=1 pitch=62 vol=90 283s Time=61200 Note off, chan=1 pitch=62 vol=0 283s Time=61201 Note on, chan=1 pitch=57 vol=90 283s Time=61440 Note off, chan=1 pitch=57 vol=0 283s Time=61441 Note on, chan=1 pitch=62 vol=90 283s Time=61920 Note off, chan=1 pitch=62 vol=0 283s Time=61921 Note on, chan=1 pitch=66 vol=110 283s Time=62160 Note off, chan=1 pitch=66 vol=0 283s Time=62161 Note on, chan=1 pitch=67 vol=90 283s Time=62400 Note off, chan=1 pitch=67 vol=0 283s Time=62401 Note on, chan=1 pitch=69 vol=90 283s Time=62640 Note off, chan=1 pitch=69 vol=0 283s Time=62641 Note on, chan=1 pitch=66 vol=90 283s Time=63120 Note off, chan=1 pitch=66 vol=0 283s Time=63121 Note on, chan=1 pitch=62 vol=90 283s Time=63360 Note off, chan=1 pitch=62 vol=0 283s Time=63361 Note on, chan=1 pitch=63 vol=90 283s Time=63480 Note off, chan=1 pitch=63 vol=0 283s Time=63481 Note on, chan=1 pitch=62 vol=90 283s Time=63600 Note off, chan=1 pitch=62 vol=0 283s Time=63601 Note on, chan=1 pitch=63 vol=90 283s Time=63720 Note off, chan=1 pitch=63 vol=0 283s Time=63721 Note on, chan=1 pitch=60 vol=90 283s Time=63840 Note off, chan=1 pitch=60 vol=0 283s Time=63841 Note on, chan=1 pitch=62 vol=110 283s Time=64080 Note off, chan=1 pitch=62 vol=0 283s Time=64081 Note on, chan=1 pitch=63 vol=90 283s Time=64320 Note off, chan=1 pitch=63 vol=0 283s Time=64321 Note on, chan=1 pitch=66 vol=90 283s Time=64560 Note off, chan=1 pitch=66 vol=0 283s Time=64561 Note on, chan=1 pitch=67 vol=90 283s Time=64800 Note off, chan=1 pitch=67 vol=0 283s Time=64801 Note on, chan=1 pitch=69 vol=90 283s Time=65040 Note off, chan=1 pitch=69 vol=0 283s Time=65041 Note on, chan=1 pitch=74 vol=90 283s Time=65280 Note off, chan=1 pitch=74 vol=0 283s Time=65281 Note on, chan=1 pitch=72 vol=90 283s Time=65400 Note off, chan=1 pitch=72 vol=0 283s Time=65401 Note on, chan=1 pitch=70 vol=90 283s Time=65520 Note off, chan=1 pitch=70 vol=0 283s Time=65521 Note on, chan=1 pitch=69 vol=90 283s Time=65640 Note off, chan=1 pitch=69 vol=0 283s Time=65641 Note on, chan=1 pitch=67 vol=90 283s Time=65760 Note off, chan=1 pitch=67 vol=0 283s Time=65761 Note on, chan=1 pitch=66 vol=110 283s Time=66000 Note off, chan=1 pitch=66 vol=0 283s Time=66001 Note on, chan=1 pitch=67 vol=90 283s Time=66240 Note off, chan=1 pitch=67 vol=0 283s Time=66241 Note on, chan=1 pitch=69 vol=90 283s Time=66480 Note off, chan=1 pitch=69 vol=0 283s Time=66481 Note on, chan=1 pitch=66 vol=90 283s Time=66960 Note off, chan=1 pitch=66 vol=0 283s Time=66961 Note on, chan=1 pitch=62 vol=90 283s Time=67200 Note off, chan=1 pitch=62 vol=0 283s Time=67201 Note on, chan=1 pitch=63 vol=90 283s Time=67440 Note off, chan=1 pitch=63 vol=0 283s Time=67441 Note on, chan=1 pitch=60 vol=90 283s Time=67680 Note off, chan=1 pitch=60 vol=0 283s Time=67681 Note on, chan=1 pitch=62 vol=110 283s Time=69120 Note off, chan=1 pitch=62 vol=0 283s Time=69146 Meta event, end of track 283s Track end 283s Track start 283s Time=0 Meta Text, type=0x01 (Text Event) leng=12 283s Text = 283s Time=1 Program, chan=3 program=32 283s Time=1 Program, chan=2 program=0 283s Time=1 Meta Text, type=0x01 (Text Event) leng=51 283s Text = 283s Time=1 Meta Text, type=0x01 (Text Event) leng=42 283s Text = > 283s Time=481 Note on, chan=2 pitch=38 vol=97 283s Time=720 Note off, chan=2 pitch=38 vol=0 283s Time=961 Note on, chan=3 pitch=50 vol=95 283s Time=961 Note on, chan=3 pitch=54 vol=95 283s Time=961 Note on, chan=3 pitch=57 vol=95 283s Time=1200 Note off, chan=3 pitch=50 vol=0 283s Time=1200 Note off, chan=3 pitch=54 vol=0 283s Time=1200 Note off, chan=3 pitch=57 vol=0 283s Time=1441 Note on, chan=2 pitch=38 vol=97 283s Time=1680 Note off, chan=2 pitch=38 vol=0 283s Time=1921 Note on, chan=3 pitch=50 vol=95 283s Time=1921 Note on, chan=3 pitch=54 vol=95 283s Time=1921 Note on, chan=3 pitch=57 vol=95 283s Time=2160 Note off, chan=3 pitch=50 vol=0 283s Time=2160 Note off, chan=3 pitch=54 vol=0 283s Time=2160 Note off, chan=3 pitch=57 vol=0 283s Time=2401 Note on, chan=2 pitch=43 vol=97 283s Time=2640 Note off, chan=2 pitch=43 vol=0 283s Time=2881 Note on, chan=3 pitch=55 vol=95 283s Time=2881 Note on, chan=3 pitch=58 vol=95 283s Time=2881 Note on, chan=3 pitch=62 vol=95 283s Time=3120 Note off, chan=3 pitch=55 vol=0 283s Time=3120 Note off, chan=3 pitch=58 vol=0 283s Time=3120 Note off, chan=3 pitch=62 vol=0 283s Time=3361 Note on, chan=2 pitch=43 vol=97 283s Time=3600 Note off, chan=2 pitch=43 vol=0 283s Time=3841 Note on, chan=3 pitch=55 vol=95 283s Time=3841 Note on, chan=3 pitch=58 vol=95 283s Time=3841 Note on, chan=3 pitch=62 vol=95 283s Time=4080 Note off, chan=3 pitch=55 vol=0 283s Time=4080 Note off, chan=3 pitch=58 vol=0 283s Time=4080 Note off, chan=3 pitch=62 vol=0 283s Time=4321 Note on, chan=2 pitch=38 vol=97 283s Time=4560 Note off, chan=2 pitch=38 vol=0 283s Time=4801 Note on, chan=3 pitch=50 vol=95 283s Time=4801 Note on, chan=3 pitch=54 vol=95 283s Time=4801 Note on, chan=3 pitch=57 vol=95 283s Time=5040 Note off, chan=3 pitch=50 vol=0 283s Time=5040 Note off, chan=3 pitch=54 vol=0 283s Time=5040 Note off, chan=3 pitch=57 vol=0 283s Time=5281 Note on, chan=2 pitch=39 vol=97 283s Time=5520 Note off, chan=2 pitch=39 vol=0 283s Time=5761 Note on, chan=3 pitch=51 vol=95 283s Time=5761 Note on, chan=3 pitch=55 vol=95 283s Time=5761 Note on, chan=3 pitch=58 vol=95 283s Time=6000 Note off, chan=3 pitch=51 vol=0 283s Time=6000 Note off, chan=3 pitch=55 vol=0 283s Time=6000 Note off, chan=3 pitch=58 vol=0 283s Time=6241 Note on, chan=2 pitch=38 vol=97 283s Time=6480 Note off, chan=2 pitch=38 vol=0 283s Time=6721 Note on, chan=3 pitch=50 vol=95 283s Time=6721 Note on, chan=3 pitch=54 vol=95 283s Time=6721 Note on, chan=3 pitch=57 vol=95 283s Time=6960 Note off, chan=3 pitch=50 vol=0 283s Time=6960 Note off, chan=3 pitch=54 vol=0 283s Time=6960 Note off, chan=3 pitch=57 vol=0 283s Time=7201 Note on, chan=2 pitch=38 vol=97 283s Time=7440 Note off, chan=2 pitch=38 vol=0 283s Time=7681 Note on, chan=3 pitch=50 vol=95 283s Time=7681 Note on, chan=3 pitch=54 vol=95 283s Time=7681 Note on, chan=3 pitch=57 vol=95 283s Time=7920 Note off, chan=3 pitch=50 vol=0 283s Time=7920 Note off, chan=3 pitch=54 vol=0 283s Time=7920 Note off, chan=3 pitch=57 vol=0 283s Time=8161 Note on, chan=2 pitch=38 vol=97 283s Time=8400 Note off, chan=2 pitch=38 vol=0 283s Time=8641 Note on, chan=3 pitch=50 vol=95 283s Time=8641 Note on, chan=3 pitch=54 vol=95 283s Time=8641 Note on, chan=3 pitch=57 vol=95 283s Time=8880 Note off, chan=3 pitch=50 vol=0 283s Time=8880 Note off, chan=3 pitch=54 vol=0 283s Time=8880 Note off, chan=3 pitch=57 vol=0 283s Time=9121 Note on, chan=2 pitch=38 vol=97 283s Time=9360 Note off, chan=2 pitch=38 vol=0 283s Time=9601 Note on, chan=3 pitch=50 vol=95 283s Time=9601 Note on, chan=3 pitch=54 vol=95 283s Time=9601 Note on, chan=3 pitch=57 vol=95 283s Time=9840 Note off, chan=3 pitch=50 vol=0 283s Time=9840 Note off, chan=3 pitch=54 vol=0 283s Time=9840 Note off, chan=3 pitch=57 vol=0 283s Time=10081 Note on, chan=2 pitch=36 vol=97 283s Time=10320 Note off, chan=2 pitch=36 vol=0 283s Time=10561 Note on, chan=3 pitch=48 vol=95 283s Time=10561 Note on, chan=3 pitch=51 vol=95 283s Time=10561 Note on, chan=3 pitch=55 vol=95 283s Time=10800 Note off, chan=3 pitch=48 vol=0 283s Time=10800 Note off, chan=3 pitch=51 vol=0 283s Time=10800 Note off, chan=3 pitch=55 vol=0 283s Time=11041 Note on, chan=2 pitch=36 vol=97 283s Time=11280 Note off, chan=2 pitch=36 vol=0 283s Time=11521 Note on, chan=3 pitch=48 vol=95 283s Time=11521 Note on, chan=3 pitch=51 vol=95 283s Time=11521 Note on, chan=3 pitch=55 vol=95 283s Time=11760 Note off, chan=3 pitch=48 vol=0 283s Time=11760 Note off, chan=3 pitch=51 vol=0 283s Time=11760 Note off, chan=3 pitch=55 vol=0 283s Time=12001 Note on, chan=2 pitch=38 vol=97 283s Time=12240 Note off, chan=2 pitch=38 vol=0 283s Time=12481 Note on, chan=3 pitch=50 vol=95 283s Time=12481 Note on, chan=3 pitch=54 vol=95 283s Time=12481 Note on, chan=3 pitch=57 vol=95 283s Time=12720 Note off, chan=3 pitch=50 vol=0 283s Time=12720 Note off, chan=3 pitch=54 vol=0 283s Time=12720 Note off, chan=3 pitch=57 vol=0 283s Time=12961 Note on, chan=2 pitch=39 vol=97 283s Time=13200 Note off, chan=2 pitch=39 vol=0 283s Time=13441 Note on, chan=3 pitch=51 vol=95 283s Time=13441 Note on, chan=3 pitch=55 vol=95 283s Time=13441 Note on, chan=3 pitch=58 vol=95 283s Time=13680 Note off, chan=3 pitch=51 vol=0 283s Time=13680 Note off, chan=3 pitch=55 vol=0 283s Time=13680 Note off, chan=3 pitch=58 vol=0 283s Time=13921 Note on, chan=2 pitch=38 vol=97 283s Time=14160 Note off, chan=2 pitch=38 vol=0 283s Time=14401 Note on, chan=3 pitch=50 vol=95 283s Time=14401 Note on, chan=3 pitch=54 vol=95 283s Time=14401 Note on, chan=3 pitch=57 vol=95 283s Time=14640 Note off, chan=3 pitch=50 vol=0 283s Time=14640 Note off, chan=3 pitch=54 vol=0 283s Time=14640 Note off, chan=3 pitch=57 vol=0 283s Time=14881 Note on, chan=2 pitch=38 vol=97 283s Time=15120 Note off, chan=2 pitch=38 vol=0 283s Time=15361 Note on, chan=3 pitch=50 vol=95 283s Time=15361 Note on, chan=3 pitch=54 vol=95 283s Time=15361 Note on, chan=3 pitch=57 vol=95 283s Time=15600 Note off, chan=3 pitch=50 vol=0 283s Time=15600 Note off, chan=3 pitch=54 vol=0 283s Time=15600 Note off, chan=3 pitch=57 vol=0 283s Time=15841 Note on, chan=2 pitch=38 vol=97 283s Time=16080 Note off, chan=2 pitch=38 vol=0 283s Time=16321 Note on, chan=3 pitch=50 vol=95 283s Time=16321 Note on, chan=3 pitch=54 vol=95 283s Time=16321 Note on, chan=3 pitch=57 vol=95 283s Time=16321 Note on, chan=3 pitch=60 vol=95 283s Time=16560 Note off, chan=3 pitch=50 vol=0 283s Time=16560 Note off, chan=3 pitch=54 vol=0 283s Time=16560 Note off, chan=3 pitch=57 vol=0 283s Time=16560 Note off, chan=3 pitch=60 vol=0 283s Time=16801 Note on, chan=2 pitch=38 vol=97 283s Time=17040 Note off, chan=2 pitch=38 vol=0 283s Time=17281 Note on, chan=3 pitch=50 vol=95 283s Time=17281 Note on, chan=3 pitch=54 vol=95 283s Time=17281 Note on, chan=3 pitch=57 vol=95 283s Time=17281 Note on, chan=3 pitch=60 vol=95 283s Time=17520 Note off, chan=3 pitch=50 vol=0 283s Time=17520 Note off, chan=3 pitch=54 vol=0 283s Time=17520 Note off, chan=3 pitch=57 vol=0 283s Time=17520 Note off, chan=3 pitch=60 vol=0 283s Time=17761 Note on, chan=2 pitch=43 vol=97 283s Time=18000 Note off, chan=2 pitch=43 vol=0 283s Time=18241 Note on, chan=3 pitch=55 vol=95 283s Time=18241 Note on, chan=3 pitch=58 vol=95 283s Time=18241 Note on, chan=3 pitch=62 vol=95 283s Time=18480 Note off, chan=3 pitch=55 vol=0 283s Time=18480 Note off, chan=3 pitch=58 vol=0 283s Time=18480 Note off, chan=3 pitch=62 vol=0 283s Time=18721 Note on, chan=2 pitch=43 vol=97 283s Time=18960 Note off, chan=2 pitch=43 vol=0 283s Time=19201 Note on, chan=3 pitch=55 vol=95 283s Time=19201 Note on, chan=3 pitch=58 vol=95 283s Time=19201 Note on, chan=3 pitch=62 vol=95 283s Time=19440 Note off, chan=3 pitch=55 vol=0 283s Time=19440 Note off, chan=3 pitch=58 vol=0 283s Time=19440 Note off, chan=3 pitch=62 vol=0 283s Time=19681 Note on, chan=2 pitch=36 vol=97 283s Time=19920 Note off, chan=2 pitch=36 vol=0 283s Time=20161 Note on, chan=3 pitch=48 vol=95 283s Time=20161 Note on, chan=3 pitch=51 vol=95 283s Time=20161 Note on, chan=3 pitch=55 vol=95 283s Time=20400 Note off, chan=3 pitch=48 vol=0 283s Time=20400 Note off, chan=3 pitch=51 vol=0 283s Time=20400 Note off, chan=3 pitch=55 vol=0 283s Time=20641 Note on, chan=2 pitch=36 vol=97 283s Time=20880 Note off, chan=2 pitch=36 vol=0 283s Time=21121 Note on, chan=3 pitch=48 vol=95 283s Time=21121 Note on, chan=3 pitch=51 vol=95 283s Time=21121 Note on, chan=3 pitch=55 vol=95 283s Time=21360 Note off, chan=3 pitch=48 vol=0 283s Time=21360 Note off, chan=3 pitch=51 vol=0 283s Time=21360 Note off, chan=3 pitch=55 vol=0 283s Time=21601 Note on, chan=2 pitch=38 vol=97 283s Time=21840 Note off, chan=2 pitch=38 vol=0 283s Time=22081 Note on, chan=3 pitch=50 vol=95 283s Time=22081 Note on, chan=3 pitch=54 vol=95 283s Time=22081 Note on, chan=3 pitch=57 vol=95 283s Time=22320 Note off, chan=3 pitch=50 vol=0 283s Time=22320 Note off, chan=3 pitch=54 vol=0 283s Time=22320 Note off, chan=3 pitch=57 vol=0 283s Time=22561 Note on, chan=2 pitch=38 vol=97 283s Time=22800 Note off, chan=2 pitch=38 vol=0 283s Time=23041 Note on, chan=3 pitch=50 vol=95 283s Time=23041 Note on, chan=3 pitch=54 vol=95 283s Time=23041 Note on, chan=3 pitch=57 vol=95 283s Time=23280 Note off, chan=3 pitch=50 vol=0 283s Time=23280 Note off, chan=3 pitch=54 vol=0 283s Time=23280 Note off, chan=3 pitch=57 vol=0 283s Time=23521 Note on, chan=2 pitch=38 vol=97 283s Time=23760 Note off, chan=2 pitch=38 vol=0 283s Time=24001 Note on, chan=3 pitch=50 vol=95 283s Time=24001 Note on, chan=3 pitch=54 vol=95 283s Time=24001 Note on, chan=3 pitch=57 vol=95 283s Time=24001 Note on, chan=3 pitch=60 vol=95 283s Time=24240 Note off, chan=3 pitch=50 vol=0 283s Time=24240 Note off, chan=3 pitch=54 vol=0 283s Time=24240 Note off, chan=3 pitch=57 vol=0 283s Time=24240 Note off, chan=3 pitch=60 vol=0 283s Time=24481 Note on, chan=2 pitch=38 vol=97 283s Time=24720 Note off, chan=2 pitch=38 vol=0 283s Time=24961 Note on, chan=3 pitch=50 vol=95 283s Time=24961 Note on, chan=3 pitch=54 vol=95 283s Time=24961 Note on, chan=3 pitch=57 vol=95 283s Time=24961 Note on, chan=3 pitch=60 vol=95 283s Time=25200 Note off, chan=3 pitch=50 vol=0 283s Time=25200 Note off, chan=3 pitch=54 vol=0 283s Time=25200 Note off, chan=3 pitch=57 vol=0 283s Time=25200 Note off, chan=3 pitch=60 vol=0 283s Time=25441 Note on, chan=2 pitch=43 vol=97 283s Time=25680 Note off, chan=2 pitch=43 vol=0 283s Time=25921 Note on, chan=3 pitch=55 vol=95 283s Time=25921 Note on, chan=3 pitch=58 vol=95 283s Time=25921 Note on, chan=3 pitch=62 vol=95 283s Time=26160 Note off, chan=3 pitch=55 vol=0 283s Time=26160 Note off, chan=3 pitch=58 vol=0 283s Time=26160 Note off, chan=3 pitch=62 vol=0 283s Time=26401 Note on, chan=2 pitch=43 vol=97 283s Time=26640 Note off, chan=2 pitch=43 vol=0 283s Time=26881 Note on, chan=3 pitch=55 vol=95 283s Time=26881 Note on, chan=3 pitch=58 vol=95 283s Time=26881 Note on, chan=3 pitch=62 vol=95 283s Time=27120 Note off, chan=3 pitch=55 vol=0 283s Time=27120 Note off, chan=3 pitch=58 vol=0 283s Time=27120 Note off, chan=3 pitch=62 vol=0 283s Time=27361 Note on, chan=2 pitch=38 vol=97 283s Time=27600 Note off, chan=2 pitch=38 vol=0 283s Time=27841 Note on, chan=3 pitch=50 vol=95 283s Time=27841 Note on, chan=3 pitch=54 vol=95 283s Time=27841 Note on, chan=3 pitch=57 vol=95 283s Time=28080 Note off, chan=3 pitch=50 vol=0 283s Time=28080 Note off, chan=3 pitch=54 vol=0 283s Time=28080 Note off, chan=3 pitch=57 vol=0 283s Time=28321 Note on, chan=2 pitch=38 vol=97 283s Time=28560 Note off, chan=2 pitch=38 vol=0 283s Time=28801 Note on, chan=3 pitch=48 vol=95 283s Time=28801 Note on, chan=3 pitch=51 vol=95 283s Ti/tmp/autopkgtest.aby2ko/wrapper.sh: checking for leaked background processes... 283s me=28801 Note on, chan=3 pitch=55 vol=95 283s Time=29040 Note off, chan=3 pitch=48 vol=0 283s Time=29040 Note off, chan=3 pitch=51 vol=0 283s Time=29040 Note off, chan=3 pitch=55 vol=0 283s Time=29281 Note on, chan=2 pitch=38 vol=97 283s Time=29520 Note off, chan=2 pitch=38 vol=0 283s Time=29761 Note on, chan=3 pitch=50 vol=95 283s Time=29761 Note on, chan=3 pitch=54 vol=95 283s Time=29761 Note on, chan=3 pitch=57 vol=95 283s Time=30000 Note off, chan=3 pitch=50 vol=0 283s Time=30000 Note off, chan=3 pitch=54 vol=0 283s Time=30000 Note off, chan=3 pitch=57 vol=0 283s Time=30241 Note on, chan=2 pitch=38 vol=97 283s Time=30480 Note off, chan=2 pitch=38 vol=0 283s Time=30721 Note on, chan=3 pitch=50 vol=95 283s Time=30721 Note on, chan=3 pitch=54 vol=95 283s Time=30721 Note on, chan=3 pitch=57 vol=95 283s Time=30960 Note off, chan=3 pitch=50 vol=0 283s Time=30960 Note off, chan=3 pitch=54 vol=0 283s Time=30960 Note off, chan=3 pitch=57 vol=0 283s Time=31201 Note on, chan=2 pitch=38 vol=97 283s Time=31440 Note off, chan=2 pitch=38 vol=0 283s Time=31681 Note on, chan=3 pitch=50 vol=95 283s Time=31681 Note on, chan=3 pitch=54 vol=95 283s Time=31681 Note on, chan=3 pitch=57 vol=95 283s Time=31681 Note on, chan=3 pitch=60 vol=95 283s Time=31920 Note off, chan=3 pitch=50 vol=0 283s Time=31920 Note off, chan=3 pitch=54 vol=0 283s Time=31920 Note off, chan=3 pitch=57 vol=0 283s Time=31920 Note off, chan=3 pitch=60 vol=0 283s Time=32161 Note on, chan=2 pitch=38 vol=97 283s Time=32400 Note off, chan=2 pitch=38 vol=0 283s Time=32641 Note on, chan=3 pitch=50 vol=95 283s Time=32641 Note on, chan=3 pitch=54 vol=95 283s Time=32641 Note on, chan=3 pitch=57 vol=95 283s Time=32641 Note on, chan=3 pitch=60 vol=95 283s Time=32880 Note off, chan=3 pitch=50 vol=0 283s Time=32880 Note off, chan=3 pitch=54 vol=0 283s Time=32880 Note off, chan=3 pitch=57 vol=0 283s Time=32880 Note off, chan=3 pitch=60 vol=0 283s Time=33121 Note on, chan=2 pitch=43 vol=97 283s Time=33360 Note off, chan=2 pitch=43 vol=0 283s Time=33601 Note on, chan=3 pitch=55 vol=95 283s Time=33601 Note on, chan=3 pitch=58 vol=95 283s Time=33601 Note on, chan=3 pitch=62 vol=95 283s Time=33840 Note off, chan=3 pitch=55 vol=0 283s Time=33840 Note off, chan=3 pitch=58 vol=0 283s Time=33840 Note off, chan=3 pitch=62 vol=0 283s Time=34081 Note on, chan=2 pitch=43 vol=97 283s Time=34320 Note off, chan=2 pitch=43 vol=0 283s Time=34561 Note on, chan=3 pitch=55 vol=95 283s Time=34561 Note on, chan=3 pitch=58 vol=95 283s Time=34561 Note on, chan=3 pitch=62 vol=95 283s Time=34800 Note off, chan=3 pitch=55 vol=0 283s Time=34800 Note off, chan=3 pitch=58 vol=0 283s Time=34800 Note off, chan=3 pitch=62 vol=0 283s Time=35041 Note on, chan=2 pitch=38 vol=97 283s Time=35280 Note off, chan=2 pitch=38 vol=0 283s Time=35521 Note on, chan=3 pitch=50 vol=95 283s Time=35521 Note on, chan=3 pitch=54 vol=95 283s Time=35521 Note on, chan=3 pitch=57 vol=95 283s Time=35760 Note off, chan=3 pitch=50 vol=0 283s Time=35760 Note off, chan=3 pitch=54 vol=0 283s Time=35760 Note off, chan=3 pitch=57 vol=0 283s Time=36001 Note on, chan=2 pitch=38 vol=97 283s Time=36240 Note off, chan=2 pitch=38 vol=0 283s Time=36481 Note on, chan=3 pitch=48 vol=95 283s Time=36481 Note on, chan=3 pitch=51 vol=95 283s Time=36481 Note on, chan=3 pitch=55 vol=95 283s Time=36720 Note off, chan=3 pitch=48 vol=0 283s Time=36720 Note off, chan=3 pitch=51 vol=0 283s Time=36720 Note off, chan=3 pitch=55 vol=0 283s Time=36961 Note on, chan=2 pitch=38 vol=97 283s Time=37200 Note off, chan=2 pitch=38 vol=0 283s Time=37441 Note on, chan=3 pitch=50 vol=95 283s Time=37441 Note on, chan=3 pitch=54 vol=95 283s Time=37441 Note on, chan=3 pitch=57 vol=95 283s Time=37680 Note off, chan=3 pitch=50 vol=0 283s Time=37680 Note off, chan=3 pitch=54 vol=0 283s Time=37680 Note off, chan=3 pitch=57 vol=0 283s Time=37921 Note on, chan=2 pitch=38 vol=97 283s Time=38160 Note off, chan=2 pitch=38 vol=0 283s Time=38401 Note on, chan=3 pitch=50 vol=95 283s Time=38401 Note on, chan=3 pitch=54 vol=95 283s Time=38401 Note on, chan=3 pitch=57 vol=95 283s Time=38640 Note off, chan=3 pitch=50 vol=0 283s Time=38640 Note off, chan=3 pitch=54 vol=0 283s Time=38640 Note off, chan=3 pitch=57 vol=0 283s Time=38881 Note on, chan=2 pitch=38 vol=97 283s Time=39120 Note off, chan=2 pitch=38 vol=0 283s Time=39361 Note on, chan=3 pitch=50 vol=95 283s Time=39361 Note on, chan=3 pitch=54 vol=95 283s Time=39361 Note on, chan=3 pitch=57 vol=95 283s Time=39361 Note on, chan=3 pitch=60 vol=95 283s Time=39600 Note off, chan=3 pitch=50 vol=0 283s Time=39600 Note off, chan=3 pitch=54 vol=0 283s Time=39600 Note off, chan=3 pitch=57 vol=0 283s Time=39600 Note off, chan=3 pitch=60 vol=0 283s Time=39841 Note on, chan=2 pitch=38 vol=97 283s Time=40080 Note off, chan=2 pitch=38 vol=0 283s Time=40321 Note on, chan=3 pitch=50 vol=95 283s Time=40321 Note on, chan=3 pitch=54 vol=95 283s Time=40321 Note on, chan=3 pitch=57 vol=95 283s Time=40321 Note on, chan=3 pitch=60 vol=95 283s Time=40560 Note off, chan=3 pitch=50 vol=0 283s Time=40560 Note off, chan=3 pitch=54 vol=0 283s Time=40560 Note off, chan=3 pitch=57 vol=0 283s Time=40560 Note off, chan=3 pitch=60 vol=0 283s Time=40801 Note on, chan=2 pitch=43 vol=97 283s Time=41040 Note off, chan=2 pitch=43 vol=0 283s Time=41281 Note on, chan=3 pitch=55 vol=95 283s Time=41281 Note on, chan=3 pitch=58 vol=95 283s Time=41281 Note on, chan=3 pitch=62 vol=95 283s Time=41520 Note off, chan=3 pitch=55 vol=0 283s Time=41520 Note off, chan=3 pitch=58 vol=0 283s Time=41520 Note off, chan=3 pitch=62 vol=0 283s Time=41761 Note on, chan=2 pitch=43 vol=97 283s Time=42000 Note off, chan=2 pitch=43 vol=0 283s Time=42241 Note on, chan=3 pitch=55 vol=95 283s Time=42241 Note on, chan=3 pitch=58 vol=95 283s Time=42241 Note on, chan=3 pitch=62 vol=95 283s Time=42480 Note off, chan=3 pitch=55 vol=0 283s Time=42480 Note off, chan=3 pitch=58 vol=0 283s Time=42480 Note off, chan=3 pitch=62 vol=0 283s Time=42721 Note on, chan=2 pitch=38 vol=97 283s Time=42960 Note off, chan=2 pitch=38 vol=0 283s Time=43201 Note on, chan=3 pitch=50 vol=95 283s Time=43201 Note on, chan=3 pitch=54 vol=95 283s Time=43201 Note on, chan=3 pitch=57 vol=95 283s Time=43440 Note off, chan=3 pitch=50 vol=0 283s Time=43440 Note off, chan=3 pitch=54 vol=0 283s Time=43440 Note off, chan=3 pitch=57 vol=0 283s Time=43681 Note on, chan=2 pitch=38 vol=97 283s Time=43920 Note off, chan=2 pitch=38 vol=0 283s Time=44161 Note on, chan=3 pitch=48 vol=95 283s Time=44161 Note on, chan=3 pitch=51 vol=95 283s Time=44161 Note on, chan=3 pitch=55 vol=95 283s Time=44400 Note off, chan=3 pitch=48 vol=0 283s Time=44400 Note off, chan=3 pitch=51 vol=0 283s Time=44400 Note off, chan=3 pitch=55 vol=0 283s Time=44641 Note on, chan=2 pitch=38 vol=97 283s Time=44880 Note off, chan=2 pitch=38 vol=0 283s Time=45121 Note on, chan=3 pitch=50 vol=95 283s Time=45121 Note on, chan=3 pitch=54 vol=95 283s Time=45121 Note on, chan=3 pitch=57 vol=95 283s Time=45360 Note off, chan=3 pitch=50 vol=0 283s Time=45360 Note off, chan=3 pitch=54 vol=0 283s Time=45360 Note off, chan=3 pitch=57 vol=0 283s Time=45601 Note on, chan=2 pitch=38 vol=97 283s Time=45840 Note off, chan=2 pitch=38 vol=0 283s Time=46081 Note on, chan=3 pitch=50 vol=95 283s Time=46081 Note on, chan=3 pitch=54 vol=95 283s Time=46081 Note on, chan=3 pitch=57 vol=95 283s Time=46320 Note off, chan=3 pitch=50 vol=0 283s Time=46320 Note off, chan=3 pitch=54 vol=0 283s Time=46320 Note off, chan=3 pitch=57 vol=0 283s Time=46561 Note on, chan=2 pitch=38 vol=97 283s Time=46800 Note off, chan=2 pitch=38 vol=0 283s Time=47041 Note on, chan=3 pitch=50 vol=95 283s Time=47041 Note on, chan=3 pitch=54 vol=95 283s Time=47041 Note on, chan=3 pitch=57 vol=95 283s Time=47041 Note on, chan=3 pitch=60 vol=95 283s Time=47280 Note off, chan=3 pitch=50 vol=0 283s Time=47280 Note off, chan=3 pitch=54 vol=0 283s Time=47280 Note off, chan=3 pitch=57 vol=0 283s Time=47280 Note off, chan=3 pitch=60 vol=0 283s Time=47521 Note on, chan=2 pitch=38 vol=97 283s Time=47760 Note off, chan=2 pitch=38 vol=0 283s Time=48001 Note on, chan=3 pitch=50 vol=95 283s Time=48001 Note on, chan=3 pitch=54 vol=95 283s Time=48001 Note on, chan=3 pitch=57 vol=95 283s Time=48001 Note on, chan=3 pitch=60 vol=95 283s Time=48240 Note off, chan=3 pitch=50 vol=0 283s Time=48240 Note off, chan=3 pitch=54 vol=0 283s Time=48240 Note off, chan=3 pitch=57 vol=0 283s Time=48240 Note off, chan=3 pitch=60 vol=0 283s Time=48481 Note on, chan=2 pitch=43 vol=97 283s Time=48720 Note off, chan=2 pitch=43 vol=0 283s Time=48961 Note on, chan=3 pitch=55 vol=95 283s Time=48961 Note on, chan=3 pitch=58 vol=95 283s Time=48961 Note on, chan=3 pitch=62 vol=95 283s Time=49200 Note off, chan=3 pitch=55 vol=0 283s Time=49200 Note off, chan=3 pitch=58 vol=0 283s Time=49200 Note off, chan=3 pitch=62 vol=0 283s Time=49441 Note on, chan=2 pitch=43 vol=97 283s Time=49680 Note off, chan=2 pitch=43 vol=0 283s Time=49921/tmp/autopkgtest.aby2ko/wrapper.sh: waiting for tee/cat subprocesses... 283s /tmp/autopkgtest.aby2ko/wrapper.sh: cleaning up... 283s Note on, chan=3 pitch=55 vol=95 283s Time=49921 Note on, chan=3 pitch=58 vol=95 283s Time=49921 Note on, chan=3 pitch=62 vol=95 283s Time=50160 Note off, chan=3 pitch=55 vol=0 283s Time=50160 Note off, chan=3 pitch=58 vol=0 283s Time=50160 Note off, chan=3 pitch=62 vol=0 283s Time=50401 Note on, chan=2 pitch=38 vol=97 283s Time=50640 Note off, chan=2 pitch=38 vol=0 283s Time=50881 Note on, chan=3 pitch=50 vol=95 283s Time=50881 Note on, chan=3 pitch=54 vol=95 283s Time=50881 Note on, chan=3 pitch=57 vol=95 283s Time=51120 Note off, chan=3 pitch=50 vol=0 283s Time=51120 Note off, chan=3 pitch=54 vol=0 283s Time=51120 Note off, chan=3 pitch=57 vol=0 283s Time=51361 Note on, chan=2 pitch=38 vol=97 283s Time=51600 Note off, chan=2 pitch=38 vol=0 283s Time=51841 Note on, chan=3 pitch=48 vol=95 283s Time=51841 Note on, chan=3 pitch=51 vol=95 283s Time=51841 Note on, chan=3 pitch=55 vol=95 283s Time=52080 Note off, chan=3 pitch=48 vol=0 283s Time=52080 Note off, chan=3 pitch=51 vol=0 283s Time=52080 Note off, chan=3 pitch=55 vol=0 283s Time=52321 Note on, chan=2 pitch=38 vol=97 283s Time=52560 Note off, chan=2 pitch=38 vol=0 283s Time=52801 Note on, chan=3 pitch=50 vol=95 283s Time=52801 Note on, chan=3 pitch=54 vol=95 283s Time=52801 Note on, chan=3 pitch=57 vol=95 283s Time=53040 Note off, chan=3 pitch=50 vol=0 283s Time=53040 Note off, chan=3 pitch=54 vol=0 283s Time=53040 Note off, chan=3 pitch=57 vol=0 283s Time=53281 Note on, chan=2 pitch=38 vol=97 283s Time=53520 Note off, chan=2 pitch=38 vol=0 283s Time=53761 Note on, chan=3 pitch=48 vol=95 283s Time=53761 Note on, chan=3 pitch=51 vol=95 283s Time=53761 Note on, chan=3 pitch=55 vol=95 283s Time=54000 Note off, chan=3 pitch=48 vol=0 283s Time=54000 Note off, chan=3 pitch=51 vol=0 283s Time=54000 Note off, chan=3 pitch=55 vol=0 283s Time=54241 Note on, chan=2 pitch=38 vol=97 283s Time=54480 Note off, chan=2 pitch=38 vol=0 283s Time=54721 Note on, chan=3 pitch=50 vol=95 283s Time=54721 Note on, chan=3 pitch=54 vol=95 283s Time=54721 Note on, chan=3 pitch=57 vol=95 283s Time=54960 Note off, chan=3 pitch=50 vol=0 283s Time=54960 Note off, chan=3 pitch=54 vol=0 283s Time=54960 Note off, chan=3 pitch=57 vol=0 283s Time=55201 Note on, chan=2 pitch=38 vol=97 283s Time=55440 Note off, chan=2 pitch=38 vol=0 283s Time=55681 Note on, chan=3 pitch=48 vol=95 283s Time=55681 Note on, chan=3 pitch=51 vol=95 283s Time=55681 Note on, chan=3 pitch=55 vol=95 283s Time=55920 Note off, chan=3 pitch=48 vol=0 283s Time=55920 Note off, chan=3 pitch=51 vol=0 283s Time=55920 Note off, chan=3 pitch=55 vol=0 283s Time=56161 Note on, chan=2 pitch=38 vol=97 283s Time=56400 Note off, chan=2 pitch=38 vol=0 283s Time=56641 Note on, chan=3 pitch=50 vol=95 283s Time=56641 Note on, chan=3 pitch=54 vol=95 283s Time=56641 Note on, chan=3 pitch=57 vol=95 283s Time=56880 Note off, chan=3 pitch=50 vol=0 283s Time=56880 Note off, chan=3 pitch=54 vol=0 283s Time=56880 Note off, chan=3 pitch=57 vol=0 283s Time=57121 Note on, chan=2 pitch=38 vol=97 283s Time=57360 Note off, chan=2 pitch=38 vol=0 283s Time=57601 Note on, chan=3 pitch=48 vol=95 283s Time=57601 Note on, chan=3 pitch=51 vol=95 283s Time=57601 Note on, chan=3 pitch=55 vol=95 283s Time=57840 Note off, chan=3 pitch=48 vol=0 283s Time=57840 Note off, chan=3 pitch=51 vol=0 283s Time=57840 Note off, chan=3 pitch=55 vol=0 283s Time=58081 Note on, chan=2 pitch=38 vol=97 283s Time=58320 Note off, chan=2 pitch=38 vol=0 283s Time=58561 Note on, chan=3 pitch=50 vol=95 283s Time=58561 Note on, chan=3 pitch=54 vol=95 283s Time=58561 Note on, chan=3 pitch=57 vol=95 283s Time=58800 Note off, chan=3 pitch=50 vol=0 283s Time=58800 Note off, chan=3 pitch=54 vol=0 283s Time=58800 Note off, chan=3 pitch=57 vol=0 283s Time=59041 Note on, chan=2 pitch=38 vol=97 283s Time=59280 Note off, chan=2 pitch=38 vol=0 283s Time=59521 Note on, chan=3 pitch=48 vol=95 283s Time=59521 Note on, chan=3 pitch=51 vol=95 283s Time=59521 Note on, chan=3 pitch=55 vol=95 283s Time=59760 Note off, chan=3 pitch=48 vol=0 283s Time=59760 Note off, chan=3 pitch=51 vol=0 283s Time=59760 Note off, chan=3 pitch=55 vol=0 283s Time=60001 Note on, chan=2 pitch=38 vol=97 283s Time=60240 Note off, chan=2 pitch=38 vol=0 283s Time=60481 Note on, chan=3 pitch=50 vol=95 283s Time=60481 Note on, chan=3 pitch=54 vol=95 283s Time=60481 Note on, chan=3 pitch=57 vol=95 283s Time=60720 Note off, chan=3 pitch=50 vol=0 283s Time=60720 Note off, chan=3 pitch=54 vol=0 283s Time=60720 Note off, chan=3 pitch=57 vol=0 283s Time=60961 Note on, chan=2 pitch=38 vol=97 283s Time=61200 Note off, chan=2 pitch=38 vol=0 283s Time=61441 Note on, chan=3 pitch=50 vol=95 283s Time=61441 Note on, chan=3 pitch=54 vol=95 283s Time=61441 Note on, chan=3 pitch=57 vol=95 283s Time=61680 Note off, chan=3 pitch=50 vol=0 283s Time=61680 Note off, chan=3 pitch=54 vol=0 283s Time=61680 Note off, chan=3 pitch=57 vol=0 283s Time=61921 Note on, chan=2 pitch=38 vol=97 283s Time=62160 Note off, chan=2 pitch=38 vol=0 283s Time=62401 Note on, chan=3 pitch=50 vol=95 283s Time=62401 Note on, chan=3 pitch=54 vol=95 283s Time=62401 Note on, chan=3 pitch=57 vol=95 283s Time=62640 Note off, chan=3 pitch=50 vol=0 283s Time=62640 Note off, chan=3 pitch=54 vol=0 283s Time=62640 Note off, chan=3 pitch=57 vol=0 283s Time=62881 Note on, chan=2 pitch=38 vol=97 283s Time=63120 Note off, chan=2 pitch=38 vol=0 283s Time=63361 Note on, chan=3 pitch=48 vol=95 283s Time=63361 Note on, chan=3 pitch=51 vol=95 283s Time=63361 Note on, chan=3 pitch=55 vol=95 283s Time=63600 Note off, chan=3 pitch=48 vol=0 283s Time=63600 Note off, chan=3 pitch=51 vol=0 283s Time=63600 Note off, chan=3 pitch=55 vol=0 283s Time=63841 Note on, chan=2 pitch=38 vol=97 283s Time=64080 Note off, chan=2 pitch=38 vol=0 283s Time=64321 Note on, chan=3 pitch=50 vol=95 283s Time=64321 Note on, chan=3 pitch=54 vol=95 283s Time=64321 Note on, chan=3 pitch=57 vol=95 283s Time=64560 Note off, chan=3 pitch=50 vol=0 283s Time=64560 Note off, chan=3 pitch=54 vol=0 283s Time=64560 Note off, chan=3 pitch=57 vol=0 283s Time=64801 Note on, chan=2 pitch=38 vol=97 283s Time=65040 Note off, chan=2 pitch=38 vol=0 283s Time=65281 Note on, chan=3 pitch=48 vol=95 283s Time=65281 Note on, chan=3 pitch=51 vol=95 283s Time=65281 Note on, chan=3 pitch=55 vol=95 283s Time=65520 Note off, chan=3 pitch=48 vol=0 283s Time=65520 Note off, chan=3 pitch=51 vol=0 283s Time=65520 Note off, chan=3 pitch=55 vol=0 283s Time=65761 Note on, chan=2 pitch=38 vol=97 283s Time=66000 Note off, chan=2 pitch=38 vol=0 283s Time=66241 Note on, chan=3 pitch=50 vol=95 283s Time=66241 Note on, chan=3 pitch=54 vol=95 283s Time=66241 Note on, chan=3 pitch=57 vol=95 283s Time=66480 Note off, chan=3 pitch=50 vol=0 283s Time=66480 Note off, chan=3 pitch=54 vol=0 283s Time=66480 Note off, chan=3 pitch=57 vol=0 283s Time=66721 Note on, chan=2 pitch=38 vol=97 283s Time=66960 Note off, chan=2 pitch=38 vol=0 283s Time=67201 Note on, chan=3 pitch=48 vol=95 283s Time=67201 Note on, chan=3 pitch=51 vol=95 283s Time=67201 Note on, chan=3 pitch=55 vol=95 283s Time=67440 Note off, chan=3 pitch=48 vol=0 283s Time=67440 Note off, chan=3 pitch=51 vol=0 283s Time=67440 Note off, chan=3 pitch=55 vol=0 283s Time=67681 Note on, chan=2 pitch=38 vol=97 283s Time=67920 Note off, chan=2 pitch=38 vol=0 283s Time=68161 Note on, chan=3 pitch=50 vol=95 283s Time=68161 Note on, chan=3 pitch=54 vol=95 283s Time=68161 Note on, chan=3 pitch=57 vol=95 283s Time=68400 Note off, chan=3 pitch=50 vol=0 283s Time=68400 Note off, chan=3 pitch=54 vol=0 283s Time=68400 Note off, chan=3 pitch=57 vol=0 283s Time=68641 Note on, chan=2 pitch=38 vol=97 283s Time=68880 Note off, chan=2 pitch=38 vol=0 283s Time=69146 Meta event, end of track 283s Track end 283s Track start 283s Time=0 Meta Text, type=0x01 (Text Event) leng=10 283s Text = 283s Time=0 Meta Text, type=0x01 (Text Event) leng=51 283s Text = 283s Time=0 Meta Text, type=0x01 (Text Event) leng=42 283s Text = > 283s Time=1 Note on, chan=10 pitch=65 vol=90 283s Time=480 Note off, chan=10 pitch=65 vol=0 283s Time=481 Note on, chan=10 pitch=65 vol=90 283s Time=960 Note off, chan=10 pitch=65 vol=0 283s Time=1201 Note on, chan=10 pitch=50 vol=90 283s Time=1440 Note off, chan=10 pitch=50 vol=0 283s Time=1441 Note on, chan=10 pitch=50 vol=90 283s Time=1920 Note off, chan=10 pitch=50 vol=0 283s Time=1921 Note on, chan=10 pitch=50 vol=90 283s Time=2400 Note off, chan=10 pitch=50 vol=0 283s Time=2401 Note on, chan=10 pitch=65 vol=90 283s Time=2880 Note off, chan=10 pitch=65 vol=0 283s Time=3121 Note on, chan=10 pitch=50 vol=90 283s Time=3360 Note off, chan=10 pitch=50 vol=0 283s Time=3361 Note on, chan=10 pitch=50 vol=90 283s Time=3840 Note off, chan=10 pitch=50 vol=0 283s Time=3841 Note on, chan=10 pitch=50 vol=90 283s Time=4320 Note off, chan=10 pitch=50 vol=0 283s Time=4321 Note on, chan=10 pitch=65 vol=90 283s Time=4800 Note off, chan=10 pitch=65 vol=0 283s Time=5041 Note on, chan=10 pitch=50 vol=90 283s Time=5280 Note off, chan=10 pitch=50 vol=0 283s Time=5281 Note on, chan=10 pitch=50 vol=90 283s Time=5760 Note off, chan=10 pitch=50 vol=0 283s Time=5761 Note on, chan=10 pitch=50 vol=90 283s Time=6240 Note off, chan=10 pitch=50 vol=0 283s Time=6241 Note on, chan=10 pitch=65 vol=90 283s Time=6720 Note off, chan=10 pitch=65 vol=0 283s Time=6961 Note on, chan=10 pitch=50 vol=90 283s Time=7200 Note off, chan=10 pitch=50 vol=0 283s Time=7201 Note on, chan=10 pitch=50 vol=90 283s Time=7680 Note off, chan=10 pitch=50 vol=0 283s Time=7681 Note on, chan=10 pitch=50 vol=90 283s Time=8160 Note off, chan=10 pitch=50 vol=0 283s Time=8161 Note on, chan=10 pitch=65 vol=90 283s Time=8640 Note off, chan=10 pitch=65 vol=0 283s Time=8881 Note on, chan=10 pitch=50 vol=90 283s Time=9120 Note off, chan=10 pitch=50 vol=0 283s Time=9121 Note on, chan=10 pitch=50 vol=90 283s Time=9600 Note off, chan=10 pitch=50 vol=0 283s Time=9601 Note on, chan=10 pitch=50 vol=90 283s Time=10080 Note off, chan=10 pitch=50 vol=0 283s Time=10081 Note on, chan=10 pitch=65 vol=90 283s Time=10560 Note off, chan=10 pitch=65 vol=0 283s Time=10801 Note on, chan=10 pitch=50 vol=90 283s Time=11040 Note off, chan=10 pitch=50 vol=0 283s Time=11041 Note on, chan=10 pitch=50 vol=90 283s Time=11520 Note off, chan=10 pitch=50 vol=0 283s Time=11521 Note on, chan=10 pitch=50 vol=90 283s Time=12000 Note off, chan=10 pitch=50 vol=0 283s Time=12001 Note on, chan=10 pitch=65 vol=90 283s Time=12480 Note off, chan=10 pitch=65 vol=0 283s Time=12721 Note on, chan=10 pitch=50 vol=90 283s Time=12960 Note off, chan=10 pitch=50 vol=0 283s Time=12961 Note on, chan=10 pitch=50 vol=90 283s Time=13440 Note off, chan=10 pitch=50 vol=0 283s Time=13441 Note on, chan=10 pitch=50 vol=90 283s Time=13920 Note off, chan=10 pitch=50 vol=0 283s Time=13921 Note on, chan=10 pitch=65 vol=90 283s Time=14400 Note off, chan=10 pitch=65 vol=0 283s Time=14641 Note on, chan=10 pitch=50 vol=90 283s Time=14880 Note off, chan=10 pitch=50 vol=0 283s Time=14881 Note on, chan=10 pitch=50 vol=90 283s Time=15360 Note off, chan=10 pitch=50 vol=0 283s Time=15361 Note on, chan=10 pitch=50 vol=90 283s Time=15840 Note off, chan=10 pitch=50 vol=0 283s Time=15841 Note on, chan=10 pitch=65 vol=90 283s Time=16320 Note off, chan=10 pitch=65 vol=0 283s Time=16561 Note on, chan=10 pitch=50 vol=90 283s Time=16800 Note off, chan=10 pitch=50 vol=0 283s Time=16801 Note on, chan=10 pitch=50 vol=90 283s Time=17280 Note off, chan=10 pitch=50 vol=0 283s Time=17281 Note on, chan=10 pitch=50 vol=90 283s Time=17760 Note off, chan=10 pitch=50 vol=0 283s Time=17761 Note on, chan=10 pitch=65 vol=90 283s Time=18240 Note off, chan=10 pitch=65 vol=0 283s Time=18481 Note on, chan=10 pitch=50 vol=90 283s Time=18720 Note off, chan=10 pitch=50 vol=0 283s Time=18721 Note on, chan=10 pitch=50 vol=90 283s Time=19200 Note off, chan=10 pitch=50 vol=0 283s Time=19201 Note on, chan=10 pitch=50 vol=90 283s Time=19680 Note off, chan=10 pitch=50 vol=0 283s Time=19681 Note on, chan=10 pitch=65 vol=90 283s Time=20160 Note off, chan=10 pitch=65 vol=0 283s Time=20401 Note on, chan=10 pitch=50 vol=90 283s Time=20640 Note off, chan=10 pitch=50 vol=0 283s Time=20641 Note on, chan=10 pitch=50 vol=90 283s Time=21120 Note off, chan=10 pitch=50 vol=0 283s Time=21121 Note on, chan=10 pitch=50 vol=90 283s Time=21600 Note off, chan=10 pitch=50 vol=0 283s Time=21601 Note on, chan=10 pitch=65 vol=90 283s Time=22080 Note off, chan=10 pitch=65 vol=0 283s Time=22321 Note on, chan=10 pitch=50 vol=90 283s Time=22560 Note off, chan=10 pitch=50 vol=0 283s Time=22561 Note on, chan=10 pitch=50 vol=90 283s Time=23040 Note off, chan=10 pitch=50 vol=0 283s Time=23041 Note on, chan=10 pitch=50 vol=90 283s Time=23520 Note off, chan=10 pitch=50 vol=0 283s Time=23521 Note on, chan=10 pitch=65 vol=90 283s Time=24000 Note off, chan=10 pitch=65 vol=0 283s Time=24241 Note on, chan=10 pitch=50 vol=90 283s Time=24480 Note off, chan=10 pitch=50 vol=0 283s Time=24481 Note on, chan=10 pitch=50 vol=90 283s Time=24960 Note off, chan=10 pitch=50 vol=0 283s Time=24961 Note on, chan=10 pitch=50 vol=90 283s Time=25440 Note off, chan=10 pitch=50 vol=0 283s Time=25441 Note on, chan=10 pitch=65 vol=90 283s Time=25920 Note off, chan=10 pitch=65 vol=0 283s Time=26161 Note on, chan=10 pitch=50 vol=90 283s Time=26400 Note off, chan=10 pitch=50 v/tmp/autopkgtest.aby2ko/wrapper.sh: Exit status: 0 283s ol=0 283s Time=26401 Note on, chan=10 pitch=50 vol=90 283s Time=26880 Note off, chan=10 pitch=50 vol=0 283s Time=26881 Note on, chan=10 pitch=50 vol=90 283s Time=27360 Note off, chan=10 pitch=50 vol=0 283s Time=27361 Note on, chan=10 pitch=65 vol=90 283s Time=27840 Note off, chan=10 pitch=65 vol=0 283s Time=28081 Note on, chan=10 pitch=50 vol=90 283s Time=28320 Note off, chan=10 pitch=50 vol=0 283s Time=28321 Note on, chan=10 pitch=50 vol=90 283s Time=28800 Note off, chan=10 pitch=50 vol=0 283s Time=28801 Note on, chan=10 pitch=50 vol=90 283s Time=29280 Note off, chan=10 pitch=50 vol=0 283s Time=29281 Note on, chan=10 pitch=65 vol=90 283s Time=29760 Note off, chan=10 pitch=65 vol=0 283s Time=30001 Note on, chan=10 pitch=50 vol=90 283s Time=30240 Note off, chan=10 pitch=50 vol=0 283s Time=30241 Note on, chan=10 pitch=50 vol=90 283s Time=30720 Note off, chan=10 pitch=50 vol=0 283s Time=30721 Note on, chan=10 pitch=50 vol=90 283s Time=31200 Note off, chan=10 pitch=50 vol=0 283s Time=31201 Note on, chan=10 pitch=65 vol=90 283s Time=31680 Note off, chan=10 pitch=65 vol=0 283s Time=31921 Note on, chan=10 pitch=50 vol=90 283s Time=32160 Note off, chan=10 pitch=50 vol=0 283s Time=32161 Note on, chan=10 pitch=50 vol=90 283s Time=32640 Note off, chan=10 pitch=50 vol=0 283s Time=32641 Note on, chan=10 pitch=50 vol=90 283s Time=33120 Note off, chan=10 pitch=50 vol=0 283s Time=33121 Note on, chan=10 pitch=65 vol=90 283s Time=33600 Note off, chan=10 pitch=65 vol=0 283s Time=33841 Note on, chan=10 pitch=50 vol=90 283s Time=34080 Note off, chan=10 pitch=50 vol=0 283s Time=34081 Note on, chan=10 pitch=50 vol=90 283s Time=34560 Note off, chan=10 pitch=50 vol=0 283s Time=34561 Note on, chan=10 pitch=50 vol=90 283s Time=35040 Note off, chan=10 pitch=50 vol=0 283s Time=35041 Note on, chan=10 pitch=65 vol=90 283s Time=35520 Note off, chan=10 pitch=65 vol=0 283s Time=35761 Note on, chan=10 pitch=50 vol=90 283s Time=36000 Note off, chan=10 pitch=50 vol=0 283s Time=36001 Note on, chan=10 pitch=50 vol=90 283s Time=36480 Note off, chan=10 pitch=50 vol=0 283s Time=36481 Note on, chan=10 pitch=50 vol=90 283s Time=36960 Note off, chan=10 pitch=50 vol=0 283s Time=36961 Note on, chan=10 pitch=65 vol=90 283s Time=37440 Note off, chan=10 pitch=65 vol=0 283s Time=37681 Note on, chan=10 pitch=50 vol=90 283s Time=37920 Note off, chan=10 pitch=50 vol=0 283s Time=37921 Note on, chan=10 pitch=50 vol=90 283s Time=38400 Note off, chan=10 pitch=50 vol=0 283s Time=38401 Note on, chan=10 pitch=50 vol=90 283s Time=38880 Note off, chan=10 pitch=50 vol=0 283s Time=38881 Note on, chan=10 pitch=65 vol=90 283s Time=39360 Note off, chan=10 pitch=65 vol=0 283s Time=39601 Note on, chan=10 pitch=50 vol=90 283s Time=39840 Note off, chan=10 pitch=50 vol=0 283s Time=39841 Note on, chan=10 pitch=50 vol=90 283s Time=40320 Note off, chan=10 pitch=50 vol=0 283s Time=40321 Note on, chan=10 pitch=50 vol=90 283s Time=40800 Note off, chan=10 pitch=50 vol=0 283s Time=40801 Note on, chan=10 pitch=65 vol=90 283s Time=41280 Note off, chan=10 pitch=65 vol=0 283s Time=41521 Note on, chan=10 pitch=50 vol=90 283s Time=41760 Note off, chan=10 pitch=50 vol=0 283s Time=41761 Note on, chan=10 pitch=50 vol=90 283s Time=42240 Note off, chan=10 pitch=50 vol=0 283s Time=42241 Note on, chan=10 pitch=50 vol=90 283s Time=42720 Note off, chan=10 pitch=50 vol=0 283s Time=42721 Note on, chan=10 pitch=65 vol=90 283s Time=43200 Note off, chan=10 pitch=65 vol=0 283s Time=43441 Note on, chan=10 pitch=50 vol=90 283s Time=43680 Note off, chan=10 pitch=50 vol=0 283s Time=43681 Note on, chan=10 pitch=50 vol=90 283s Time=44160 Note off, chan=10 pitch=50 vol=0 283s Time=44161 Note on, chan=10 pitch=50 vol=90 283s Time=44640 Note off, chan=10 pitch=50 vol=0 283s Time=44641 Note on, chan=10 pitch=65 vol=90 283s Time=45120 Note off, chan=10 pitch=65 vol=0 283s Time=45361 Note on, chan=10 pitch=50 vol=90 283s Time=45600 Note off, chan=10 pitch=50 vol=0 283s Time=45601 Note on, chan=10 pitch=50 vol=90 283s Time=46080 Note off, chan=10 pitch=50 vol=0 283s Time=46081 Note on, chan=10 pitch=50 vol=90 283s Time=46560 Note off, chan=10 pitch=50 vol=0 283s Time=46561 Note on, chan=10 pitch=65 vol=90 283s Time=47040 Note off, chan=10 pitch=65 vol=0 283s Time=47281 Note on, chan=10 pitch=50 vol=90 283s Time=47520 Note off, chan=10 pitch=50 vol=0 283s Time=47521 Note on, chan=10 pitch=50 vol=90 283s Time=48000 Note off, chan=10 pitch=50 vol=0 283s Time=48001 Note on, chan=10 pitch=50 vol=90 283s Time=48480 Note off, chan=10 pitch=50 vol=0 283s Time=48481 Note on, chan=10 pitch=65 vol=90 283s Time=48960 Note off, chan=10 pitch=65 vol=0 283s Time=49201 Note on, chan=10 pitch=50 vol=90 283s Time=49440 Note off, chan=10 pitch=50 vol=0 283s Time=49441 Note on, chan=10 pitch=50 vol=90 283s Time=49920 Note off, chan=10 pitch=50 vol=0 283s Time=49921 Note on, chan=10 pitch=50 vol=90 283s Time=50400 Note off, chan=10 pitch=50 vol=0 283s Time=50401 Note on, chan=10 pitch=65 vol=90 283s Time=50880 Note off, chan=10 pitch=65 vol=0 283s Time=51121 Note on, chan=10 pitch=50 vol=90 283s Time=51360 Note off, chan=10 pitch=50 vol=0 283s Time=51361 Note on, chan=10 pitch=50 vol=90 283s Time=51840 Note off, chan=10 pitch=50 vol=0 283s Time=51841 Note on, chan=10 pitch=50 vol=90 283s Time=52320 Note off, chan=10 pitch=50 vol=0 283s Time=52321 Note on, chan=10 pitch=65 vol=90 283s Time=52800 Note off, chan=10 pitch=65 vol=0 283s Time=53041 Note on, chan=10 pitch=50 vol=90 283s Time=53280 Note off, chan=10 pitch=50 vol=0 283s Time=53281 Note on, chan=10 pitch=50 vol=90 283s Time=53760 Note off, chan=10 pitch=50 vol=0 283s Time=53761 Note on, chan=10 pitch=50 vol=90 283s Time=54240 Note off, chan=10 pitch=50 vol=0 283s Time=54241 Note on, chan=10 pitch=65 vol=90 283s Time=54720 Note off, chan=10 pitch=65 vol=0 283s Time=54961 Note on, chan=10 pitch=50 vol=90 283s Time=55200 Note off, chan=10 pitch=50 vol=0 283s Time=55201 Note on, chan=10 pitch=50 vol=90 283s Time=55680 Note off, chan=10 pitch=50 vol=0 283s Time=55681 Note on, chan=10 pitch=50 vol=90 283s Time=56160 Note off, chan=10 pitch=50 vol=0 283s Time=56161 Note on, chan=10 pitch=65 vol=90 283s Time=56640 Note off, chan=10 pitch=65 vol=0 283s Time=56881 Note on, chan=10 pitch=50 vol=90 283s Time=57120 Note off, chan=10 pitch=50 vol=0 283s Time=57121 Note on, chan=10 pitch=50 vol=90 283s Time=57600 Note off, chan=10 pitch=50 vol=0 283s Time=57601 Note on, chan=10 pitch=50 vol=90 283s Time=58080 Note off, chan=10 pitch=50 vol=0 283s Time=58081 Note on, chan=10 pitch=65 vol=90 283s Time=58560 Note off, chan=10 pitch=65 vol=0 283s Time=58801 Note on, chan=10 pitch=50 vol=90 283s Time=59040 Note off, chan=10 pitch=50 vol=0 283s Time=59041 Note on, chan=10 pitch=50 vol=90 283s Time=59520 Note off, chan=10 pitch=50 vol=0 283s Time=59521 Note on, chan=10 pitch=50 vol=90 283s Time=60000 Note off, chan=10 pitch=50 vol=0 283s Time=60001 Note on, chan=10 pitch=65 vol=90 283s Time=60480 Note off, chan=10 pitch=65 vol=0 283s Time=60721 Note on, chan=10 pitch=50 vol=90 283s Time=60960 Note off, chan=10 pitch=50 vol=0 283s Time=60961 Note on, chan=10 pitch=50 vol=90 283s Time=61440 Note off, chan=10 pitch=50 vol=0 283s Time=61441 Note on, chan=10 pitch=50 vol=90 283s Time=61920 Note off, chan=10 pitch=50 vol=0 283s Time=61921 Note on, chan=10 pitch=65 vol=90 283s Time=62400 Note off, chan=10 pitch=65 vol=0 283s Time=62641 Note on, chan=10 pitch=50 vol=90 283s Time=62880 Note off, chan=10 pitch=50 vol=0 283s Time=62881 Note on, chan=10 pitch=50 vol=90 283s Time=63360 Note off, chan=10 pitch=50 vol=0 283s Time=63361 Note on, chan=10 pitch=50 vol=90 283s Time=63840 Note off, chan=10 pitch=50 vol=0 283s Time=63841 Note on, chan=10 pitch=65 vol=90 283s Time=64320 Note off, chan=10 pitch=65 vol=0 283s Time=64561 Note on, chan=10 pitch=50 vol=90 283s Time=64800 Note off, chan=10 pitch=50 vol=0 283s Time=64801 Note on, chan=10 pitch=50 vol=90 283s Time=65280 Note off, chan=10 pitch=50 vol=0 283s Time=65281 Note on, chan=10 pitch=50 vol=90 283s Time=65760 Note off, chan=10 pitch=50 vol=0 283s Time=65761 Note on, chan=10 pitch=65 vol=90 283s Time=66240 Note off, chan=10 pitch=65 vol=0 283s Time=66481 Note on, chan=10 pitch=50 vol=90 283s Time=66720 Note off, chan=10 pitch=50 vol=0 283s Time=66721 Note on, chan=10 pitch=50 vol=90 283s Time=67200 Note off, chan=10 pitch=50 vol=0 283s Time=67201 Note on, chan=10 pitch=50 vol=90 283s Time=67680 Note off, chan=10 pitch=50 vol=0 283s Time=67681 Note on, chan=10 pitch=65 vol=90 283s Time=68160 Note off, chan=10 pitch=65 vol=0 283s Time=68401 Note on, chan=10 pitch=50 vol=90 283s Time=68640 Note off, chan=10 pitch=50 vol=0 283s Time=68641 Note on, chan=10 pitch=50 vol=90 283s Time=69120 Note off, chan=10 pitch=50 vol=0 283s Time=69146 Meta event, end of track 283s Track end 283s ----------------------------------- 283s MIDI file to text test SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s MIDI to ABC conversion test 283s -------------------------------- 283s Convert the araber47.mid file back to abc 283s ----------------------------------- 283s MIDI to ABC conversion test SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s MIDI to MIDI copy test 283s -------------------------------- 283s Copy tracks 1 & 3 from araber47.mid file to a new midi file 283s 60.022472 283s ----------------------------------- 283s MIDI to MIDI copy test SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s Set all channel numbers to zero 283s -------------------------------- 283s Set all channel numbers in araber48.mid to zero and copy to a new midi file 283s 59.800251 283s ----------------------------------- 283s Set all channel numbers to zero SUCCESS 283s ----------------------------------- 283s 283s -------------------------------- 283s ABC to Postscript conversion test 283s -------------------------------- 283s Convert araber.abc to a Postscript file 283s writing file araber.ps 283s Warning in line 29 : Bar 29 is 3/4 not 4/4 283s ----------------------------------- 283s ABC to Postscript conversion test SUCCESS 283s ----------------------------------- 283s 283s conversions: TEST PASSED 283s autopkgtest: DBG: testbed command exited with code 0 283s autopkgtest [21:28:57]: test conversions: -----------------------] 283s autopkgtest: DBG: testbed executing test finished with exit status 0 283s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/conversions-stdout /tmp/autopkgtest-work.ooen5f3a/out/conversions-stdout 283s autopkgtest: DBG: got reply from testbed: ok 283s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/conversions-stderr /tmp/autopkgtest-work.ooen5f3a/out/conversions-stderr 284s autopkgtest: DBG: got reply from testbed: ok 284s conversions PASS 284s autopkgtest [21:28:58]: test conversions: - - - - - - - - - - results - - - - - - - - - - 284s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.aby2ko/conversions-artifacts/ /tmp/autopkgtest-work.ooen5f3a/out/artifacts/ 284s autopkgtest: DBG: got reply from testbed: ok 284s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.aby2ko/conversions-artifacts', '/tmp/autopkgtest.aby2ko/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 284s autopkgtest: DBG: testbed command exited with code 0 284s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 284s autopkgtest [21:28:58]: @@@@@@@@@@@@@@@@@@@@ summary 284s conversions PASS 284s autopkgtest: DBG: testbed stop 284s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.aby2ko 284s autopkgtest: DBG: sending command to testbed: close 302s autopkgtest: DBG: got reply from testbed: ok 302s autopkgtest: DBG: sending command to testbed: quit 302s nova [W] Using flock in prodstack6-s390x 302s Creating nova instance adt-plucky-s390x-abcmidi-20250215-212414-juju-7f2275-prod-proposed-migration-environment-15-a09df822-79bd-4031-b63d-13af6cafdd01 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 302s nova [W] Timed out waiting for ce382bdc-2257-4f61-9f4c-db398d5130f5 to get deleted.