0s autopkgtest: DBG: testbed init 0s autopkgtest [12:27:12]: starting date and time: 2025-02-19 12:27:12+0000 0s autopkgtest [12:27:12]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:27:12]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.v1xafo3l/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade pygresql --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- 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-pygresql-20250219-122712-juju-7f2275-prod-proposed-migration-environment-15-1f2ee8e2-24e6-4bbb-8e02-58beb3f02508 --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 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.YVJEZO 110s autopkgtest: DBG: sending command to testbed: print-execute-command 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.yvm6ipmr/runcmd 110s autopkgtest: DBG: sending command to testbed: capabilities 110s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu isolation-machine revert revert-full-system reboot root-on-testbed 110s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'isolation-machine', 'revert', 'revert-full-system', 'reboot', 'root-on-testbed', 'has_internet'] 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.YVJEZO'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.YVJEZO/wrapper.sh 110s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.YVJEZO/wrapper.sh'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [12:29:03]: testbed dpkg architecture: s390x 111s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [12:29:03]: testbed apt version: 2.9.30 111s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed has eatmydata 111s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [12:29:03]: @@@@@@@@@@@@@@@@@@@@ test bed setup 111s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [12:29:04]: testbed release detected to be: None 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT source: Types: deb deb-src 112s URIs: http://ftpmaster.internal/ubuntu/ 112s Suites: plucky-proposed 112s Components: main restricted universe multiverse 112s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 112s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 500 112s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [12:29:04]: updating testbed package index (apt update) 112s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 113s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 113s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 113s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 113s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 113s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 113s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 113s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 113s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 114s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 114s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 114s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 114s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 114s Fetched 1700 kB in 1s (1201 kB/s) 115s Reading package lists... 115s autopkgtest: DBG: testbed command exited with code 0 115s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 115s Package: * 115s Pin: release plucky-proposed 115s Pin-Priority: 100 115s 115s Package: src:sphinx:any 115s Pin: release plucky-proposed 115s Pin-Priority: 995 115s 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:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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.YVJEZO/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 115s autopkgtest: DBG: testbed command exited with code 0 115s 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'] 115s + lsb_release --codename --short 115s + RELEASE=plucky 115s + cat 115s + [ plucky != trusty ] 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 116s Calculating upgrade... 116s The following packages were automatically installed and are no longer required: 116s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 116s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 116s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 116s linux-tools-6.11.0-8-generic 116s Use 'sudo apt autoremove' to remove them. 116s The following packages will be upgraded: 116s iproute2 liblsof0 libp11-kit0 lsof 116s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 116s Need to get 1791 kB of archives. 116s After this operation, 17.4 kB of additional disk space will be used. 116s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 117s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 117s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 117s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 117s Preconfiguring packages ... 117s Fetched 1791 kB in 1s (1670 kB/s) 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 117s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 118s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 118s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 118s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 118s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 118s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 118s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 118s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 118s Setting up liblsof0 (4.99.4+dfsg-1) ... 118s Setting up iproute2 (6.13.0-1ubuntu1) ... 118s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 118s Setting up lsof (4.99.4+dfsg-1) ... 118s Processing triggers for man-db (2.13.0-1) ... 119s Processing triggers for libc-bin (2.40-4ubuntu1) ... 119s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 119s + /usr/lib/apt/apt-helper analyze-pattern ?true 119s + uname -r 119s + sed s/\./\\./g 119s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 119s + apt list ?obsolete 119s + tail -n+2 119s + cut -d/ -f1 119s + grep -v ^linux-.*6\.12\.0-15-generic.* 119s + true 119s + obsolete_pkgs= 119s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 120s The following packages will be REMOVED: 120s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 120s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 120s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 120s linux-tools-6.11.0-8-generic* 120s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 120s After this operation, 167 MB disk space will be freed. 120s (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 ... 81031 files and directories currently installed.) 120s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 120s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 120s Removing libpython3.12t64:s390x (3.12.9-1) ... 120s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 120s Removing libnsl2:s390x (1.3.0-3build3) ... 120s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 120s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 120s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 122s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 122s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 122s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 122s + grep -q trusty /etc/lsb-release 122s + [ ! -d /usr/share/doc/unattended-upgrades ] 122s + [ ! -d /usr/share/doc/lxd ] 122s + [ ! -d /usr/share/doc/lxd-client ] 122s + [ ! -d /usr/share/doc/snapd ] 122s + type iptables 122s + cat 122s + chmod 755 /etc/rc.local 122s + . /etc/rc.local 122s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 122s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 122s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 122s + uname -m 122s + [ s390x = ppc64le ] 122s + [ -d /run/systemd/system ] 122s + systemd-detect-virt --quiet --vm 122s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 122s + cat 122s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 122s + echo COMPRESS=lz4 122s autopkgtest: DBG: testbed command exited with code 0 122s autopkgtest [12:29:14]: upgrading testbed (apt dist-upgrade and autopurge) 122s 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'] 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 122s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 122s Starting 2 pkgProblemResolver with broken count: 0 122s Done 123s Entering ResolveByKeep 123s 123s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s autopkgtest: DBG: testbed command exited with code 0 123s 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'] 123s Reading package lists... 123s Building dependency tree... 123s Reading state information... 124s Starting pkgProblemResolver with broken count: 0 124s Starting 2 pkgProblemResolver with broken count: 0 124s Done 124s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 124s autopkgtest: DBG: testbed command exited with code 0 124s 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.YVJEZO/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 124s autopkgtest: DBG: testbed command exited with code 1 124s autopkgtest [12:29:16]: rebooting testbed after setup commands that affected boot 124s autopkgtest: DBG: sending command to testbed: reboot 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 144s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.YVJEZO'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.YVJEZO/autopkgtest-reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.YVJEZO'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.YVJEZO/autopkgtest-reboot-prepare 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [12:29:38]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 146s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.YVJEZO/testbed-packages"], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/testbed-packages /tmp/autopkgtest-work.v1xafo3l/out/testbed-packages 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 147s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.YVJEZO'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.YVJEZO/autopkgtest-reboot 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.YVJEZO'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.YVJEZO/autopkgtest-reboot-prepare 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.YVJEZO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: Binaries: initialising 148s autopkgtest [12:29:40]: @@@@@@@@@@@@@@@@@@@@ apt-source pygresql 148s autopkgtest: DBG: blame += pygresql 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 148s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'pygresql'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-pygresql$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-pygresql=1:6.1.0-2'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-pygresql-doc$'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-pygresql-doc=1:6.1.0-2'], kind short, sout pipe, serr raw, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: install_deps: deps_new=[] 150s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s 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.YVJEZO/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source pygresql=1:6.1.0-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x pygresql_*.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=sphinx/8.1.3-5'] 150s + cd / 150s + mktemp -d /tmp/autopkgtest.YVJEZO/build.XXX 150s + builddir=/tmp/autopkgtest.YVJEZO/build.zBm 150s + cd /tmp/autopkgtest.YVJEZO/build.zBm 150s + apt-get source -d -q --only-source pygresql=1:6.1.0-2 151s + OUT=Reading package lists... 151s NOTICE: 'pygresql' packaging is maintained in the 'Git' version control system at: 151s https://salsa.debian.org/python-team/packages/pygresql.git 151s Please use: 151s git clone https://salsa.debian.org/python-team/packages/pygresql.git 151s to retrieve the latest (possibly unreleased) updates to the package. 151s Need to get 283 kB of source archives. 151s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (dsc) [2235 B] 151s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (tar) [273 kB] 151s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (diff) [7324 B] 151s Fetched 283 kB in 1s (547 kB/s) 151s Download complete and in download only mode 151s + [ -n ] 151s + echo Reading package lists... 151s NOTICE: 'pygresql' packaging is maintained in the 'Git' version control system at: 151s https://salsa.debian.org/python-team/packages/pygresql.git 151s Please use: 151s git clone https://salsa.debian.org/python-team/packages/pygresql.git 151s to retrieve the latest (possibly unreleased) updates to the package. 151s Need to get 283 kB of source archives. 151s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (dsc) [2235 B] 151s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (tar) [273 kB] 151s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (diff) [7324 B] 151s Fetched 283 kB in 1s (547 kB/s) 151s Download complete and in download only mode 151s + grep ^Get: 151s Get:1 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (dsc) [2235 B] 151s Get:2 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (tar) [273 kB] 151s Get:3 http://ftpmaster.internal/ubuntu plucky/universe pygresql 1:6.1.0-2 (diff) [7324 B] 151s + dpkg-source -x pygresql_6.1.0-2.dsc src 151s gpgv: Signature made Sun Feb 16 10:24:21 2025 UTC 151s gpgv: using RSA key 5C48FE6157F49179597087C64C5A6BAB12D2A7AE 151s gpgv: Can't check signature: No public key 151s dpkg-source: warning: cannot verify inline signature for ./pygresql_6.1.0-2.dsc: no acceptable signature found 151s + chmod -R a+rX . 151s + cd src/. 151s + pwd 151s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest [12:29:43]: testing package pygresql version 1:6.1.0-2 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/build.zBm/src/debian/ /tmp/autopkgtest-work.v1xafo3l/out/pkg/debian/ 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: processing dependency python3-all 151s autopkgtest: DBG: processing dependency python3-pygresql 151s autopkgtest: DBG: marked alternatives ['python3-pygresql'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency postgresql-all 151s autopkgtest: DBG: processing dependency tzdata-legacy 151s autopkgtest: DBG: Test defined: name unittests path debian/tests/unittests command "None" restrictions ['allow-stderr'] features [] depends ['python3-all', 'python3-pygresql', 'postgresql-all', 'tzdata-legacy'] 151s autopkgtest [12:29:43]: build not needed 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/build.zBm/src/ /tmp/autopkgtest-work.v1xafo3l/out/tests-tree/ 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: processing dependency python3-all 152s autopkgtest: DBG: processing dependency python3-pygresql 152s autopkgtest: DBG: marked alternatives ['python3-pygresql'] as a synthesised dependency 152s autopkgtest: DBG: processing dependency postgresql-all 152s autopkgtest: DBG: processing dependency tzdata-legacy 152s autopkgtest: DBG: Test defined: name unittests path debian/tests/unittests command "None" restrictions ['allow-stderr'] features [] depends ['python3-all', 'python3-pygresql', 'postgresql-all', 'tzdata-legacy'] 152s autopkgtest [12:29:44]: test unittests: preparing testbed 152s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-all', 'python3-pygresql', 'postgresql-all', 'tzdata-legacy'] 152s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 152s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-pygresql', 'postgresql-all', 'tzdata-legacy'] 152s autopkgtest: DBG: install-deps: satisfying python3-all, python3-pygresql, postgresql-all, tzdata-legacy 152s autopkgtest: DBG: can use apt-get on testbed: True 152s 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', 'python3-all, python3-pygresql, postgresql-all, tzdata-legacy'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 153s Reading package lists... 153s Building dependency tree... 153s Reading state information... 153s Starting pkgProblemResolver with broken count: 0 153s Starting 2 pkgProblemResolver with broken count: 0 153s Done 153s The following NEW packages will be installed: 153s clang-19 libasan8 libclang-common-19-dev libclang-cpp19 libecpg-compat3 153s libecpg-dev libecpg6 libffi-dev libgc1 libgcc-14-dev libgomp1 libio-pty-perl 153s libipc-run-perl libitm1 libjson-perl libncurses-dev libnsl2 libobjc-14-dev 153s libobjc4 libpfm4 libpgtypes3 libpq-dev libpq5 libpython3.12-minimal 153s libpython3.12-stdlib libssl-dev libstdc++-14-dev libtcl8.6 libubsan1 153s libxml2-dev libxslt1.1 llvm-19 llvm-19-dev llvm-19-linker-tools 153s llvm-19-runtime llvm-19-tools postgresql-17 postgresql-all 153s postgresql-client-17 postgresql-client-common postgresql-common 153s postgresql-common-dev postgresql-plperl-17 postgresql-plpython3-17 153s postgresql-pltcl-17 postgresql-server-dev-17 postgresql-server-dev-all 153s python3-all python3-pygresql python3.12 python3.12-minimal ssl-cert 153s tzdata-legacy 153s 0 upgraded, 53 newly installed, 0 to remove and 0 not upgraded. 153s Need to get 132 MB of archives. 153s After this operation, 749 MB of additional disk space will be used. 153s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 154s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 156s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-client-common all 273 [47.5 kB] 156s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libio-pty-perl s390x 1:1.20-1build3 [31.6 kB] 156s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-run-perl all 20231003.0-2 [91.5 kB] 156s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-common-dev all 273 [72.9 kB] 156s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x ssl-cert all 1.1.3ubuntu1 [18.7 kB] 156s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-common all 273 [101 kB] 156s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 156s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 157s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 158s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-cpp19 s390x 1:19.1.7-1ubuntu1 [16.7 MB] 165s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 165s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 165s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 167s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 167s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 167s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 169s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgc1 s390x 1:8.2.8-1 [93.7 kB] 169s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc4 s390x 15-20250213-1ubuntu1 [49.9 kB] 169s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libobjc-14-dev s390x 14.2.0-17ubuntu1 [194 kB] 169s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libclang-common-19-dev s390x 1:19.1.7-1ubuntu1 [742 kB] 169s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-linker-tools s390x 1:19.1.7-1ubuntu1 [1546 kB] 170s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x clang-19 s390x 1:19.1.7-1ubuntu1 [79.4 kB] 170s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libpgtypes3 s390x 17.3-3 [49.4 kB] 170s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 170s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libecpg6 s390x 17.3-3 [48.0 kB] 170s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libecpg-compat3 s390x 17.3-3 [13.0 kB] 170s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libssl-dev s390x 3.4.0-1ubuntu2 [2427 kB] 171s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libpq-dev s390x 17.3-3 [160 kB] 171s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libecpg-dev s390x 17.3-3 [282 kB] 171s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 172s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 172s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libxml2-dev s390x 2.12.7+dfsg+really2.9.14-0.2ubuntu3 [823 kB] 172s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 172s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-runtime s390x 1:19.1.7-1ubuntu1 [623 kB] 173s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libpfm4 s390x 4.13.0+git83-g91970fe-1 [37.3 kB] 173s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19 s390x 1:19.1.7-1ubuntu1 [21.1 MB] 176s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.7-1 [58.9 kB] 176s Get:41 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-tools s390x 1:19.1.7-1ubuntu1 [584 kB] 177s Get:42 http://ftpmaster.internal/ubuntu plucky/universe s390x llvm-19-dev s390x 1:19.1.7-1ubuntu1 [50.2 MB] 180s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-client-17 s390x 17.3-3 [1367 kB] 180s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-17 s390x 17.3-3 [16.9 MB] 181s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x postgresql-server-dev-17 s390x 17.3-3 [1399 kB] 181s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x postgresql-server-dev-all all 273 [1632 B] 181s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-plperl-17 s390x 17.3-3 [68.6 kB] 181s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-plpython3-17 s390x 17.3-3 [76.4 kB] 181s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x postgresql-pltcl-17 s390x 17.3-3 [31.4 kB] 181s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x postgresql-all all 273 [1708 B] 181s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 181s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pygresql s390x 1:6.1.0-2 [89.2 kB] 181s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2025a-2ubuntu1 [99.2 kB] 182s Preconfiguring packages ... 182s Fetched 132 MB in 28s (4693 kB/s) 182s Selecting previously unselected package libpython3.12-minimal:s390x. 182s (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 ... 55929 files and directories currently installed.) 182s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 182s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 182s Selecting previously unselected package python3.12-minimal. 182s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 182s Unpacking python3.12-minimal (3.12.9-1) ... 182s Selecting previously unselected package libjson-perl. 182s Preparing to unpack .../02-libjson-perl_4.10000-1_all.deb ... 182s Unpacking libjson-perl (4.10000-1) ... 182s Selecting previously unselected package postgresql-client-common. 182s Preparing to unpack .../03-postgresql-client-common_273_all.deb ... 182s Unpacking postgresql-client-common (273) ... 182s Selecting previously unselected package libio-pty-perl. 182s Preparing to unpack .../04-libio-pty-perl_1%3a1.20-1build3_s390x.deb ... 182s Unpacking libio-pty-perl (1:1.20-1build3) ... 182s Selecting previously unselected package libipc-run-perl. 182s Preparing to unpack .../05-libipc-run-perl_20231003.0-2_all.deb ... 182s Unpacking libipc-run-perl (20231003.0-2) ... 182s Selecting previously unselected package postgresql-common-dev. 182s Preparing to unpack .../06-postgresql-common-dev_273_all.deb ... 182s Unpacking postgresql-common-dev (273) ... 182s Selecting previously unselected package ssl-cert. 182s Preparing to unpack .../07-ssl-cert_1.1.3ubuntu1_all.deb ... 182s Unpacking ssl-cert (1.1.3ubuntu1) ... 182s Selecting previously unselected package postgresql-common. 182s Preparing to unpack .../08-postgresql-common_273_all.deb ... 182s Adding 'diversion of /usr/bin/pg_config to /usr/bin/pg_config.libpq-dev by postgresql-common' 182s Unpacking postgresql-common (273) ... 182s Selecting previously unselected package libnsl2:s390x. 182s Preparing to unpack .../09-libnsl2_1.3.0-3build3_s390x.deb ... 182s Unpacking libnsl2:s390x (1.3.0-3build3) ... 182s Selecting previously unselected package libpython3.12-stdlib:s390x. 182s Preparing to unpack .../10-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 182s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 182s Selecting previously unselected package python3.12. 182s Preparing to unpack .../11-python3.12_3.12.9-1_s390x.deb ... 182s Unpacking python3.12 (3.12.9-1) ... 182s Selecting previously unselected package libclang-cpp19. 182s Preparing to unpack .../12-libclang-cpp19_1%3a19.1.7-1ubuntu1_s390x.deb ... 182s Unpacking libclang-cpp19 (1:19.1.7-1ubuntu1) ... 183s Selecting previously unselected package libgomp1:s390x. 183s Preparing to unpack .../13-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 183s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 183s Selecting previously unselected package libitm1:s390x. 183s Preparing to unpack .../14-libitm1_15-20250213-1ubuntu1_s390x.deb ... 183s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 183s Selecting previously unselected package libasan8:s390x. 183s Preparing to unpack .../15-libasan8_15-20250213-1ubuntu1_s390x.deb ... 183s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 183s Selecting previously unselected package libubsan1:s390x. 183s Preparing to unpack .../16-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 183s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 183s Selecting previously unselected package libgcc-14-dev:s390x. 183s Preparing to unpack .../17-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 183s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 183s Selecting previously unselected package libstdc++-14-dev:s390x. 183s Preparing to unpack .../18-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 183s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 183s Selecting previously unselected package libgc1:s390x. 183s Preparing to unpack .../19-libgc1_1%3a8.2.8-1_s390x.deb ... 183s Unpacking libgc1:s390x (1:8.2.8-1) ... 183s Selecting previously unselected package libobjc4:s390x. 183s Preparing to unpack .../20-libobjc4_15-20250213-1ubuntu1_s390x.deb ... 183s Unpacking libobjc4:s390x (15-20250213-1ubuntu1) ... 183s Selecting previously unselected package libobjc-14-dev:s390x. 183s Preparing to unpack .../21-libobjc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 183s Unpacking libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 183s Selecting previously unselected package libclang-common-19-dev:s390x. 183s Preparing to unpack .../22-libclang-common-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 183s Unpacking libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 183s Selecting previously unselected package llvm-19-linker-tools. 183s Preparing to unpack .../23-llvm-19-linker-tools_1%3a19.1.7-1ubuntu1_s390x.deb ... 183s Unpacking llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 183s Selecting previously unselected package clang-19. 183s Preparing to unpack .../24-clang-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 183s Unpacking clang-19 (1:19.1.7-1ubuntu1) ... 183s Selecting previously unselected package libpgtypes3:s390x. 183s Preparing to unpack .../25-libpgtypes3_17.3-3_s390x.deb ... 183s Unpacking libpgtypes3:s390x (17.3-3) ... 183s Selecting previously unselected package libpq5:s390x. 183s Preparing to unpack .../26-libpq5_17.3-3_s390x.deb ... 183s Unpacking libpq5:s390x (17.3-3) ... 183s Selecting previously unselected package libecpg6:s390x. 183s Preparing to unpack .../27-libecpg6_17.3-3_s390x.deb ... 183s Unpacking libecpg6:s390x (17.3-3) ... 183s Selecting previously unselected package libecpg-compat3:s390x. 183s Preparing to unpack .../28-libecpg-compat3_17.3-3_s390x.deb ... 183s Unpacking libecpg-compat3:s390x (17.3-3) ... 183s Selecting previously unselected package libssl-dev:s390x. 183s Preparing to unpack .../29-libssl-dev_3.4.0-1ubuntu2_s390x.deb ... 183s Unpacking libssl-dev:s390x (3.4.0-1ubuntu2) ... 183s Selecting previously unselected package libpq-dev. 183s Preparing to unpack .../30-libpq-dev_17.3-3_s390x.deb ... 183s Unpacking libpq-dev (17.3-3) ... 183s Selecting previously unselected package libecpg-dev. 183s Preparing to unpack .../31-libecpg-dev_17.3-3_s390x.deb ... 183s Unpacking libecpg-dev (17.3-3) ... 183s Selecting previously unselected package libncurses-dev:s390x. 183s Preparing to unpack .../32-libncurses-dev_6.5+20250125-2_s390x.deb ... 183s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 183s Selecting previously unselected package libtcl8.6:s390x. 183s Preparing to unpack .../33-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 183s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 183s Selecting previously unselected package libxml2-dev:s390x. 183s Preparing to unpack .../34-libxml2-dev_2.12.7+dfsg+really2.9.14-0.2ubuntu3_s390x.deb ... 183s Unpacking libxml2-dev:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 183s Selecting previously unselected package libxslt1.1:s390x. 183s Preparing to unpack .../35-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 183s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 183s Selecting previously unselected package llvm-19-runtime. 183s Preparing to unpack .../36-llvm-19-runtime_1%3a19.1.7-1ubuntu1_s390x.deb ... 183s Unpacking llvm-19-runtime (1:19.1.7-1ubuntu1) ... 183s Selecting previously unselected package libpfm4:s390x. 183s Preparing to unpack .../37-libpfm4_4.13.0+git83-g91970fe-1_s390x.deb ... 183s Unpacking libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 183s Selecting previously unselected package llvm-19. 183s Preparing to unpack .../38-llvm-19_1%3a19.1.7-1ubuntu1_s390x.deb ... 183s Unpacking llvm-19 (1:19.1.7-1ubuntu1) ... 184s Selecting previously unselected package libffi-dev:s390x. 184s Preparing to unpack .../39-libffi-dev_3.4.7-1_s390x.deb ... 184s Unpacking libffi-dev:s390x (3.4.7-1) ... 184s Selecting previously unselected package llvm-19-tools. 184s Preparing to unpack .../40-llvm-19-tools_1%3a19.1.7-1ubuntu1_s390x.deb ... 184s Unpacking llvm-19-tools (1:19.1.7-1ubuntu1) ... 184s Selecting previously unselected package llvm-19-dev. 184s Preparing to unpack .../41-llvm-19-dev_1%3a19.1.7-1ubuntu1_s390x.deb ... 184s Unpacking llvm-19-dev (1:19.1.7-1ubuntu1) ... 186s Selecting previously unselected package postgresql-client-17. 186s Preparing to unpack .../42-postgresql-client-17_17.3-3_s390x.deb ... 186s Unpacking postgresql-client-17 (17.3-3) ... 186s Selecting previously unselected package postgresql-17. 186s Preparing to unpack .../43-postgresql-17_17.3-3_s390x.deb ... 186s Unpacking postgresql-17 (17.3-3) ... 186s Selecting previously unselected package postgresql-server-dev-17. 186s Preparing to unpack .../44-postgresql-server-dev-17_17.3-3_s390x.deb ... 186s Unpacking postgresql-server-dev-17 (17.3-3) ... 186s Selecting previously unselected package postgresql-server-dev-all. 186s Preparing to unpack .../45-postgresql-server-dev-all_273_all.deb ... 186s Unpacking postgresql-server-dev-all (273) ... 186s Selecting previously unselected package postgresql-plperl-17. 186s Preparing to unpack .../46-postgresql-plperl-17_17.3-3_s390x.deb ... 186s Unpacking postgresql-plperl-17 (17.3-3) ... 186s Selecting previously unselected package postgresql-plpython3-17. 186s Preparing to unpack .../47-postgresql-plpython3-17_17.3-3_s390x.deb ... 186s Unpacking postgresql-plpython3-17 (17.3-3) ... 186s Selecting previously unselected package postgresql-pltcl-17. 186s Preparing to unpack .../48-postgresql-pltcl-17_17.3-3_s390x.deb ... 186s Unpacking postgresql-pltcl-17 (17.3-3) ... 186s Selecting previously unselected package postgresql-all. 186s Preparing to unpack .../49-postgresql-all_273_all.deb ... 186s Unpacking postgresql-all (273) ... 186s Selecting previously unselected package python3-all. 186s Preparing to unpack .../50-python3-all_3.13.1-1~exp2_s390x.deb ... 186s Unpacking python3-all (3.13.1-1~exp2) ... 186s Selecting previously unselected package python3-pygresql. 186s Preparing to unpack .../51-python3-pygresql_1%3a6.1.0-2_s390x.deb ... 186s Unpacking python3-pygresql (1:6.1.0-2) ... 186s Selecting previously unselected package tzdata-legacy. 186s Preparing to unpack .../52-tzdata-legacy_2025a-2ubuntu1_all.deb ... 186s Unpacking tzdata-legacy (2025a-2ubuntu1) ... 186s Setting up postgresql-client-common (273) ... 186s Setting up libpgtypes3:s390x (17.3-3) ... 186s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 186s Setting up libio-pty-perl (1:1.20-1build3) ... 186s Setting up libclang-common-19-dev:s390x (1:19.1.7-1ubuntu1) ... 186s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 186s Setting up libpq5:s390x (17.3-3) ... 186s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 186s Setting up libffi-dev:s390x (3.4.7-1) ... 186s Setting up tzdata-legacy (2025a-2ubuntu1) ... 186s Setting up libxml2-dev:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 186s Setting up libpfm4:s390x (4.13.0+git83-g91970fe-1) ... 186s Setting up ssl-cert (1.1.3ubuntu1) ... 187s Created symlink '/etc/systemd/system/multi-user.target.wants/ssl-cert.service' → '/usr/lib/systemd/system/ssl-cert.service'. 187s Setting up libssl-dev:s390x (3.4.0-1ubuntu2) ... 187s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 187s Setting up libipc-run-perl (20231003.0-2) ... 187s Setting up libgc1:s390x (1:8.2.8-1) ... 187s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 187s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 187s Setting up libjson-perl (4.10000-1) ... 187s Setting up libnsl2:s390x (1.3.0-3build3) ... 187s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 187s Setting up libecpg6:s390x (17.3-3) ... 187s Setting up llvm-19-linker-tools (1:19.1.7-1ubuntu1) ... 187s Setting up llvm-19-runtime (1:19.1.7-1ubuntu1) ... 187s Setting up llvm-19-tools (1:19.1.7-1ubuntu1) ... 187s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 187s Setting up libclang-cpp19 (1:19.1.7-1ubuntu1) ... 187s Setting up postgresql-common-dev (273) ... 187s Setting up python3.12-minimal (3.12.9-1) ... 188s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 188s Setting up libecpg-compat3:s390x (17.3-3) ... 188s Setting up postgresql-client-17 (17.3-3) ... 188s update-alternatives: using /usr/share/postgresql/17/man/man1/psql.1.gz to provide /usr/share/man/man1/psql.1.gz (psql.1.gz) in auto mode 188s Setting up python3-pygresql (1:6.1.0-2) ... 189s Setting up python3.12 (3.12.9-1) ... 190s Setting up python3-all (3.13.1-1~exp2) ... 190s Setting up libpq-dev (17.3-3) ... 190s Setting up libobjc4:s390x (15-20250213-1ubuntu1) ... 190s Setting up libecpg-dev (17.3-3) ... 190s Setting up postgresql-common (273) ... 190s Creating config file /etc/postgresql-common/createcluster.conf with new version 190s Building PostgreSQL dictionaries from installed myspell/hunspell packages... 190s Removing obsolete dictionary files: 190s Created symlink '/etc/systemd/system/multi-user.target.wants/postgresql.service' → '/usr/lib/systemd/system/postgresql.service'. 191s Setting up llvm-19 (1:19.1.7-1ubuntu1) ... 191s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 191s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 191s Setting up postgresql-17 (17.3-3) ... 191s Creating new PostgreSQL cluster 17/main ... 191s /usr/lib/postgresql/17/bin/initdb -D /var/lib/postgresql/17/main --auth-local peer --auth-host scram-sha-256 --no-instructions 191s The files belonging to this database system will be owned by user "postgres". 191s This user must also own the server process. 191s 191s The database cluster will be initialized with locale "C.UTF-8". 191s The default database encoding has accordingly been set to "UTF8". 191s The default text search configuration will be set to "english". 191s 191s Data page checksums are disabled. 191s 191s fixing permissions on existing directory /var/lib/postgresql/17/main ... ok 191s creating subdirectories ... ok 191s selecting dynamic shared memory implementation ... posix 191s selecting default "max_connections" ... 100 191s selecting default "shared_buffers" ... 128MB 191s selecting default time zone ... Etc/UTC 191s creating configuration files ... ok 191s running bootstrap script ... ok 192s performing post-bootstrap initialization ... ok 192s syncing data to disk ... ok 194s Setting up libobjc-14-dev:s390x (14.2.0-17ubuntu1) ... 194s Setting up clang-19 (1:19.1.7-1ubuntu1) ... 195s Setting up llvm-19-dev (1:19.1.7-1ubuntu1) ... 195s Setting up postgresql-plpython3-17 (17.3-3) ... 195s Setting up postgresql-plperl-17 (17.3-3) ... 195s Setting up postgresql-pltcl-17 (17.3-3) ... 195s Setting up postgresql-server-dev-17 (17.3-3) ... 195s Setting up postgresql-server-dev-all (273) ... 195s Setting up postgresql-all (273) ... 195s Processing triggers for install-info (7.1.1-1) ... 195s Processing triggers for libc-bin (2.40-4ubuntu1) ... 195s Processing triggers for systemd (257.2-3ubuntu1) ... 195s Processing triggers for man-db (2.13.0-1) ... 196s autopkgtest: DBG: testbed command exited with code 0 196s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-pygresql'], kind short, sout pipe, serr pipe, env [] 196s autopkgtest: DBG: testbed command exited with code 0 196s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.YVJEZO/unittests-packages.all"], kind short, sout raw, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/unittests-packages.all /tmp/autopkgtest-work.v1xafo3l/out/unittests-packages.all 197s autopkgtest: DBG: got reply from testbed: ok 197s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.YVJEZO/build.zBm/src'], kind short, sout raw, serr raw, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.YVJEZO/build.zBm/src already exists 197s autopkgtest [12:30:29]: test unittests: [----------------------- 197s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.YVJEZO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.YVJEZO/unittests-artifacts --chdir=/tmp/autopkgtest.YVJEZO/build.zBm/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.YVJEZO/unittests-stderr --stdout=/tmp/autopkgtest.YVJEZO/unittests-stdout --tmp=/tmp/autopkgtest.YVJEZO/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.YVJEZO/build.zBm/src/debian/tests/unittests -- /tmp/autopkgtest.YVJEZO/build.zBm/src/debian/tests/unittests'], kind test, sout raw, serr raw, env [] 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.YVJEZO/unittests-artifacts 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: changing to directory: /tmp/autopkgtest.YVJEZO/build.zBm/src 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: setting environment: LANG=C.UTF-8 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LANGUAGE 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_ADDRESS 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_ALL 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_COLLATE 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_CTYPE 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_MEASUREMENT 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_MESSAGES 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_MONETARY 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_NAME 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_NUMERIC 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_PAPER 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_TELEPHONE 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: unsetting environment: LC_TIME 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: pretending to be a login shell 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: will write standard error to /tmp/autopkgtest.YVJEZO/unittests-stderr 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: will write stdout to /tmp/autopkgtest.YVJEZO/unittests-stdout 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.YVJEZO/autopkgtest_tmp 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: marking as executable: /tmp/autopkgtest.YVJEZO/build.zBm/src/debian/tests/unittests 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: command to run: /tmp/autopkgtest.YVJEZO/build.zBm/src/debian/tests/unittests 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: copying /tmp/tmp.jIPxaJkYIj/out to stdout and file: /tmp/autopkgtest.YVJEZO/unittests-stdout 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: copying /tmp/tmp.jIPxaJkYIj/err to standard error and file: /tmp/autopkgtest.YVJEZO/unittests-stdout 197s /tmp/autopkgtest.YVJEZO/wrapper.sh: writing script pid 3869 to /tmp/autopkgtest_script_pid 197s ### PostgreSQL 17, python3.12 ### 197s Creating new PostgreSQL cluster 17/regress ... 200s test_context_manager (tests.test_classic.UtilityTest.test_context_manager) ... ok 200s test_get (tests.test_classic.UtilityTest.test_get) ... ok 200s test_insert (tests.test_classic.UtilityTest.test_insert) ... ok 200s test_invalid_name (tests.test_classic.UtilityTest.test_invalid_name) 200s Make sure that invalid table names are caught. ... ok 200s test_mixed_case (tests.test_classic.UtilityTest.test_mixed_case) ... ok 200s test_notify (tests.test_classic.UtilityTest.test_notify) ... ok 201s test_notify_other_options (tests.test_classic.UtilityTest.test_notify_other_options) ... ok 201s test_notify_timeout (tests.test_classic.UtilityTest.test_notify_timeout) ... ok 201s test_params (tests.test_classic.UtilityTest.test_params) ... ok 201s test_pkey (tests.test_classic.UtilityTest.test_pkey) ... ok 201s test_schema (tests.test_classic.UtilityTest.test_schema) 201s Check differentiation of same table name in different schemas. ... ok 201s test_sqlstate (tests.test_classic.UtilityTest.test_sqlstate) ... ok 201s test_update (tests.test_classic.UtilityTest.test_update) ... ok 201s test_del (tests.test_classic_attrdict.TestAttrDict.test_del) ... ok 201s test_get (tests.test_classic_attrdict.TestAttrDict.test_get) ... ok 201s test_init (tests.test_classic_attrdict.TestAttrDict.test_init) ... ok 201s test_items (tests.test_classic_attrdict.TestAttrDict.test_items) ... ok 201s test_iter (tests.test_classic_attrdict.TestAttrDict.test_iter) ... ok 201s test_keys (tests.test_classic_attrdict.TestAttrDict.test_keys) ... ok 201s test_set (tests.test_classic_attrdict.TestAttrDict.test_set) ... ok 201s test_values (tests.test_classic_attrdict.TestAttrDict.test_values) ... ok 201s test_write_methods (tests.test_classic_attrdict.TestAttrDict.test_write_methods) ... ok 201s test_can_connect (tests.test_classic_connection.TestCanConnect.test_can_connect) ... ok 201s test_can_connect_no_wait (tests.test_classic_connection.TestCanConnect.test_can_connect_no_wait) ... ok 201s test_change_row_factory_cache_size (tests.test_classic_connection.TestConfigFunctions.test_change_row_factory_cache_size) ... ok 201s test_get_bool (tests.test_classic_connection.TestConfigFunctions.test_get_bool) ... ok 201s test_get_byte_escaped (tests.test_classic_connection.TestConfigFunctions.test_get_byte_escaped) ... ok 201s test_get_decimal (tests.test_classic_connection.TestConfigFunctions.test_get_decimal) ... ok 201s test_get_decimal_point (tests.test_classic_connection.TestConfigFunctions.test_get_decimal_point) ... ok 201s test_set_bool (tests.test_classic_connection.TestConfigFunctions.test_set_bool) ... ok 201s test_set_bytea_escaped (tests.test_classic_connection.TestConfigFunctions.test_set_bytea_escaped) ... ok 202s test_set_decimal (tests.test_classic_connection.TestConfigFunctions.test_set_decimal) ... ok 202s test_set_decimal_point (tests.test_classic_connection.TestConfigFunctions.test_set_decimal_point) ... skipped 'cannot set German money locale' 202s test_all_connect_attributes (tests.test_classic_connection.TestConnectObject.test_all_connect_attributes) ... ok 202s test_all_connect_methods (tests.test_classic_connection.TestConnectObject.test_all_connect_methods) ... ok 202s test_all_query_members (tests.test_classic_connection.TestConnectObject.test_all_query_members) ... ok 202s test_attribute_backend_pid (tests.test_classic_connection.TestConnectObject.test_attribute_backend_pid) ... ok 202s test_attribute_db (tests.test_classic_connection.TestConnectObject.test_attribute_db) ... ok 202s test_attribute_error (tests.test_classic_connection.TestConnectObject.test_attribute_error) ... ok 202s test_attribute_host (tests.test_classic_connection.TestConnectObject.test_attribute_host) ... ok 202s test_attribute_options (tests.test_classic_connection.TestConnectObject.test_attribute_options) ... ok 202s test_attribute_port (tests.test_classic_connection.TestConnectObject.test_attribute_port) ... ok 202s test_attribute_protocol_version (tests.test_classic_connection.TestConnectObject.test_attribute_protocol_version) ... ok 202s test_attribute_server_version (tests.test_classic_connection.TestConnectObject.test_attribute_server_version) ... ok 202s test_attribute_socket (tests.test_classic_connection.TestConnectObject.test_attribute_socket) ... ok 202s test_attribute_status (tests.test_classic_connection.TestConnectObject.test_attribute_status) ... ok 202s test_attribute_user (tests.test_classic_connection.TestConnectObject.test_attribute_user) ... ok 202s test_cancel_long_running_thread (tests.test_classic_connection.TestConnectObject.test_cancel_long_running_thread) ... ok 202s test_class_name (tests.test_classic_connection.TestConnectObject.test_class_name) ... ok 202s test_method_cancel (tests.test_classic_connection.TestConnectObject.test_method_cancel) ... ok 202s test_method_close (tests.test_classic_connection.TestConnectObject.test_method_close) ... ok 202s test_method_endcopy (tests.test_classic_connection.TestConnectObject.test_method_endcopy) ... ok 202s test_method_file_no (tests.test_classic_connection.TestConnectObject.test_method_file_no) ... ok 202s test_method_parameter (tests.test_classic_connection.TestConnectObject.test_method_parameter) ... ok 202s test_method_query (tests.test_classic_connection.TestConnectObject.test_method_query) ... ok 202s test_method_query_empty (tests.test_classic_connection.TestConnectObject.test_method_query_empty) ... ok 202s test_method_reset (tests.test_classic_connection.TestConnectObject.test_method_reset) ... ok 202s test_method_send_query_empty (tests.test_classic_connection.TestConnectObject.test_method_send_query_empty) ... ok 202s test_method_send_query_multiple (tests.test_classic_connection.TestConnectObject.test_method_send_query_multiple) ... ok 202s test_method_send_query_single (tests.test_classic_connection.TestConnectObject.test_method_send_query_single) ... ok 202s test_method_transaction (tests.test_classic_connection.TestConnectObject.test_method_transaction) ... ok 202s test_module_name (tests.test_classic_connection.TestConnectObject.test_module_name) ... ok 202s test_repr (tests.test_classic_connection.TestConnectObject.test_repr) ... ok 202s test_str (tests.test_classic_connection.TestConnectObject.test_str) ... ok 202s test_getline (tests.test_classic_connection.TestDirectSocketAccess.test_getline) ... ok 202s test_getline_bytes_and_unicode (tests.test_classic_connection.TestDirectSocketAccess.test_getline_bytes_and_unicode) ... ok 202s test_parameter_checks (tests.test_classic_connection.TestDirectSocketAccess.test_parameter_checks) ... ok 202s test_putline (tests.test_classic_connection.TestDirectSocketAccess.test_putline) ... ok 202s test_putline_bytes_and_unicode (tests.test_classic_connection.TestDirectSocketAccess.test_putline_bytes_and_unicode) ... ok 202s test_insert_table_big_row_size (tests.test_classic_connection.TestInserttable.test_insert_table_big_row_size) ... ok 202s test_insert_table_small_int_overflow (tests.test_classic_connection.TestInserttable.test_insert_table_small_int_overflow) ... ok 202s test_inserttable1_row (tests.test_classic_connection.TestInserttable.test_inserttable1_row) ... ok 202s test_inserttable4_rows (tests.test_classic_connection.TestInserttable.test_inserttable4_rows) ... ok 202s test_inserttable_byte_values (tests.test_classic_connection.TestInserttable.test_inserttable_byte_values) ... ok 202s test_inserttable_from_dict_as_interable (tests.test_classic_connection.TestInserttable.test_inserttable_from_dict_as_interable) ... ok 202s test_inserttable_from_dict_keys (tests.test_classic_connection.TestInserttable.test_inserttable_from_dict_keys) ... ok 202s test_inserttable_from_dict_values (tests.test_classic_connection.TestInserttable.test_inserttable_from_dict_values) ... ok 202s test_inserttable_from_generator_of_tuples (tests.test_classic_connection.TestInserttable.test_inserttable_from_generator_of_tuples) ... ok 202s test_inserttable_from_list_of_sets (tests.test_classic_connection.TestInserttable.test_inserttable_from_list_of_sets) ... ok 202s test_inserttable_from_query (tests.test_classic_connection.TestInserttable.test_inserttable_from_query) ... ok 202s test_inserttable_from_setof_tuples (tests.test_classic_connection.TestInserttable.test_inserttable_from_setof_tuples) ... ok 202s test_inserttable_from_tuple_of_lists (tests.test_classic_connection.TestInserttable.test_inserttable_from_tuple_of_lists) ... ok 202s test_inserttable_max_values (tests.test_classic_connection.TestInserttable.test_inserttable_max_values) ... ok 202s test_inserttable_multiple_calls (tests.test_classic_connection.TestInserttable.test_inserttable_multiple_calls) ... ok 202s test_inserttable_multiple_rows (tests.test_classic_connection.TestInserttable.test_inserttable_multiple_rows) ... ok 202s test_inserttable_no_column (tests.test_classic_connection.TestInserttable.test_inserttable_no_column) ... ok 202s test_inserttable_no_encoding (tests.test_classic_connection.TestInserttable.test_inserttable_no_encoding) ... ok 202s test_inserttable_null_values (tests.test_classic_connection.TestInserttable.test_inserttable_null_values) ... ok 202s test_inserttable_only_one_column (tests.test_classic_connection.TestInserttable.test_inserttable_only_one_column) ... ok 202s test_inserttable_only_two_columns (tests.test_classic_connection.TestInserttable.test_inserttable_only_two_columns) ... ok 202s test_inserttable_special_chars (tests.test_classic_connection.TestInserttable.test_inserttable_special_chars) ... ok 202s test_inserttable_unicode_latin1 (tests.test_classic_connection.TestInserttable.test_inserttable_unicode_latin1) ... ok 202s test_inserttable_unicode_latin9 (tests.test_classic_connection.TestInserttable.test_inserttable_unicode_latin9) ... ok 202s test_inserttable_unicode_utf8 (tests.test_classic_connection.TestInserttable.test_inserttable_unicode_utf8) ... ok 202s test_inserttable_with_different_row_sizes (tests.test_classic_connection.TestInserttable.test_inserttable_with_different_row_sizes) ... ok 202s test_inserttable_with_dotted_table_name (tests.test_classic_connection.TestInserttable.test_inserttable_with_dotted_table_name) ... ok 202s test_inserttable_with_huge_list_of_column_names (tests.test_classic_connection.TestInserttable.test_inserttable_with_huge_list_of_column_names) ... ok 202s test_inserttable_with_invalid_colum_list (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_colum_list) ... ok 202s test_inserttable_with_invalid_column_name (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_column_name) ... ok 202s test_inserttable_with_invalid_data_type (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_data_type) ... ok 202s test_inserttable_with_invalid_table_name (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_table_name) ... ok 202s test_inserttable_with_out_of_range_data (tests.test_classic_connection.TestInserttable.test_inserttable_with_out_of_range_data) ... ok 203s test_get_notice_receiver (tests.test_classic_connection.TestNotificatons.test_get_notice_receiver) ... ok 203s test_get_notify (tests.test_classic_connection.TestNotificatons.test_get_notify) ... ok 203s test_notice_receiver (tests.test_classic_connection.TestNotificatons.test_notice_receiver) ... ok 203s test_set_and_get_notice_receiver (tests.test_classic_connection.TestNotificatons.test_set_and_get_notice_receiver) ... ok 203s test_set_notice_receiver (tests.test_classic_connection.TestNotificatons.test_set_notice_receiver) ... ok 203s test_query_with_bool_params (tests.test_classic_connection.TestParamQueries.test_query_with_bool_params) ... ok 203s test_query_with_bool_params_not_default (tests.test_classic_connection.TestParamQueries.test_query_with_bool_params_not_default) ... ok 203s test_query_with_duplicate_params (tests.test_classic_connection.TestParamQueries.test_query_with_duplicate_params) ... ok 203s test_query_with_garbage (tests.test_classic_connection.TestParamQueries.test_query_with_garbage) ... ok 203s test_query_with_int_params (tests.test_classic_connection.TestParamQueries.test_query_with_int_params) ... ok 203s test_query_with_mixed_params (tests.test_classic_connection.TestParamQueries.test_query_with_mixed_params) ... ok 203s test_query_with_none_param (tests.test_classic_connection.TestParamQueries.test_query_with_none_param) ... ok 203s test_query_with_str_params (tests.test_classic_connection.TestParamQueries.test_query_with_str_params) ... ok 203s test_query_with_unicode_params (tests.test_classic_connection.TestParamQueries.test_query_with_unicode_params) ... ok 203s test_query_with_unicode_params_cyrillic (tests.test_classic_connection.TestParamQueries.test_query_with_unicode_params_cyrillic) ... ok 203s test_query_with_unicode_params_latin1 (tests.test_classic_connection.TestParamQueries.test_query_with_unicode_params_latin1) ... ok 203s test_query_with_zero_params (tests.test_classic_connection.TestParamQueries.test_query_with_zero_params) ... ok 203s test_describe_multiple_named_queries (tests.test_classic_connection.TestPreparedQueries.test_describe_multiple_named_queries) ... ok 203s test_describe_named_query (tests.test_classic_connection.TestPreparedQueries.test_describe_named_query) ... ok 203s test_describe_non_existent_query (tests.test_classic_connection.TestPreparedQueries.test_describe_non_existent_query) ... ok 203s test_describe_unnamed_query (tests.test_classic_connection.TestPreparedQueries.test_describe_unnamed_query) ... ok 203s test_duplicate_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_duplicate_prepared_statement) ... ok 203s test_empty_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_empty_prepared_statement) ... ok 203s test_invalid_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_invalid_prepared_statement) ... ok 203s test_multiple_named_queries_with_params (tests.test_classic_connection.TestPreparedQueries.test_multiple_named_queries_with_params) ... ok 203s test_multiple_named_queries_without_params (tests.test_classic_connection.TestPreparedQueries.test_multiple_named_queries_without_params) ... ok 203s test_named_query_without_params (tests.test_classic_connection.TestPreparedQueries.test_named_query_without_params) ... ok 203s test_non_existent_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_non_existent_prepared_statement) ... ok 203s test_unnamed_query_with_params (tests.test_classic_connection.TestPreparedQueries.test_unnamed_query_with_params) ... ok 203s test_unnamed_query_without_params (tests.test_classic_connection.TestPreparedQueries.test_unnamed_query_without_params) ... ok 203s test_contains (tests.test_classic_connection.TestQueryIterator.test_contains) ... ok 203s test_dict_contains (tests.test_classic_connection.TestQueryIterator.test_dict_contains) ... ok 203s test_dict_iterate (tests.test_classic_connection.TestQueryIterator.test_dict_iterate) ... ok 203s test_dict_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_dict_iterate_two_columns) ... ok 203s test_dict_next (tests.test_classic_connection.TestQueryIterator.test_dict_next) ... ok 203s test_get_item (tests.test_classic_connection.TestQueryIterator.test_get_item) ... ok 203s test_get_item_out_of_range (tests.test_classic_connection.TestQueryIterator.test_get_item_out_of_range) ... ok 203s test_get_item_with_negative_index (tests.test_classic_connection.TestQueryIterator.test_get_item_with_negative_index) ... ok 203s test_iterate (tests.test_classic_connection.TestQueryIterator.test_iterate) ... ok 203s test_iterate_twice (tests.test_classic_connection.TestQueryIterator.test_iterate_twice) ... ok 203s test_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_iterate_two_columns) ... ok 203s test_len (tests.test_classic_connection.TestQueryIterator.test_len) ... ok 203s test_named_contains (tests.test_classic_connection.TestQueryIterator.test_named_contains) ... ok 203s test_named_iterate (tests.test_classic_connection.TestQueryIterator.test_named_iterate) ... ok 203s test_named_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_named_iterate_two_columns) ... ok 203s test_named_next (tests.test_classic_connection.TestQueryIterator.test_named_next) ... ok 203s test_next (tests.test_classic_connection.TestQueryIterator.test_next) ... ok 203s test_scalar_contains (tests.test_classic_connection.TestQueryIterator.test_scalar_contains) ... ok 203s test_scalar_iterate (tests.test_classic_connection.TestQueryIterator.test_scalar_iterate) ... ok 203s test_scalar_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_scalar_iterate_two_columns) ... ok 203s test_scalar_next (tests.test_classic_connection.TestQueryIterator.test_scalar_next) ... ok 203s test_one_dict_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_dict_with_empty_query) ... ok 203s test_one_dict_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_dict_with_single_row) ... ok 203s test_one_dict_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_dict_with_two_rows) ... ok 203s test_one_named_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_named_with_empty_query) ... ok 203s test_one_named_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_named_with_single_row) ... ok 203s test_one_named_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_named_with_two_rows) ... ok 203s test_one_scalar_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_scalar_with_empty_query) ... ok 203s test_one_scalar_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_scalar_with_single_row) ... ok 203s test_one_scalar_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_scalar_with_two_rows) ... ok 203s test_one_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_with_empty_query) ... ok 203s test_one_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_with_single_row) ... ok 203s test_one_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_with_two_rows) ... ok 203s test_scalar_iter (tests.test_classic_connection.TestQueryOneSingleScalar.test_scalar_iter) ... ok 203s test_scalar_result (tests.test_classic_connection.TestQueryOneSingleScalar.test_scalar_result) ... ok 203s test_single_dict_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_dict_with_empty_query) ... ok 203s test_single_dict_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_dict_with_single_row) ... ok 203s test_single_dict_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_dict_with_two_rows) ... ok 203s test_single_named_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_named_with_empty_query) ... ok 203s test_single_named_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_named_with_single_row) ... ok 203s test_single_named_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_named_with_two_rows) ... ok 203s test_single_scalar_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_scalar_with_empty_query) ... ok 203s test_single_scalar_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_scalar_with_single_row) ... ok 203s test_single_scalar_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_scalar_with_two_rows) ... ok 203s test_single_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_with_empty_query) ... ok 203s test_single_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_with_single_row) ... ok 203s test_single_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_with_two_rows) ... ok 203s test_bool (tests.test_classic_connection.TestQueryResultTypes.test_bool) ... ok 203s test_bytea (tests.test_classic_connection.TestQueryResultTypes.test_bytea) ... ok 203s test_date (tests.test_classic_connection.TestQueryResultTypes.test_date) ... ok 203s test_float (tests.test_classic_connection.TestQueryResultTypes.test_float) ... ok 203s test_int (tests.test_classic_connection.TestQueryResultTypes.test_int) ... ok 203s test_json (tests.test_classic_connection.TestQueryResultTypes.test_json) ... ok 203s test_long (tests.test_classic_connection.TestQueryResultTypes.test_long) ... ok 203s test_money (tests.test_classic_connection.TestQueryResultTypes.test_money) ... ok 204s test_numeric (tests.test_classic_connection.TestQueryResultTypes.test_numeric) ... ok 204s test_text (tests.test_classic_connection.TestQueryResultTypes.test_text) ... ok 204s test_big_getresult (tests.test_classic_connection.TestSimpleQueries.test_big_getresult) ... ok 204s test_class_name (tests.test_classic_connection.TestSimpleQueries.test_class_name) ... ok 204s test_dictresult (tests.test_classic_connection.TestSimpleQueries.test_dictresult) ... ok 204s test_dictresult_async (tests.test_classic_connection.TestSimpleQueries.test_dictresult_async) ... ok 204s test_dictresult_decimal (tests.test_classic_connection.TestSimpleQueries.test_dictresult_decimal) ... ok 204s test_dictresult_long (tests.test_classic_connection.TestSimpleQueries.test_dictresult_long) ... ok 204s test_dictresult_names (tests.test_classic_connection.TestSimpleQueries.test_dictresult_names) ... ok 204s test_dictresult_string (tests.test_classic_connection.TestSimpleQueries.test_dictresult_string) ... ok 204s test_field_info_name (tests.test_classic_connection.TestSimpleQueries.test_field_info_name) ... ok 204s test_fieldname (tests.test_classic_connection.TestSimpleQueries.test_fieldname) ... ok 204s test_fieldnum (tests.test_classic_connection.TestSimpleQueries.test_fieldnum) ... ok 204s test_get3_cols (tests.test_classic_connection.TestSimpleQueries.test_get3_cols) ... ok 204s test_get3_dict_cols (tests.test_classic_connection.TestSimpleQueries.test_get3_dict_cols) ... ok 204s test_get3_dict_rows (tests.test_classic_connection.TestSimpleQueries.test_get3_dict_rows) ... ok 204s test_get3_named_cols (tests.test_classic_connection.TestSimpleQueries.test_get3_named_cols) ... ok 204s test_get3_named_rows (tests.test_classic_connection.TestSimpleQueries.test_get3_named_rows) ... ok 204s test_get3_rows (tests.test_classic_connection.TestSimpleQueries.test_get3_rows) ... ok 204s test_getresult (tests.test_classic_connection.TestSimpleQueries.test_getresult) ... ok 204s test_getresult_async (tests.test_classic_connection.TestSimpleQueries.test_getresult_async) ... ok 204s test_getresult_decimal (tests.test_classic_connection.TestSimpleQueries.test_getresult_decimal) ... ok 204s test_getresult_long (tests.test_classic_connection.TestSimpleQueries.test_getresult_long) ... ok 204s test_getresult_string (tests.test_classic_connection.TestSimpleQueries.test_getresult_string) ... ok 204s test_len (tests.test_classic_connection.TestSimpleQueries.test_len) ... ok 204s test_list_fields_after_second_get_result_async (tests.test_classic_connection.TestSimpleQueries.test_list_fields_after_second_get_result_async) ... ok 204s test_listfields (tests.test_classic_connection.TestSimpleQueries.test_listfields) ... ok 204s test_mem_size (tests.test_classic_connection.TestSimpleQueries.test_mem_size) ... ok 204s test_module_name (tests.test_classic_connection.TestSimpleQueries.test_module_name) ... ok 204s test_namedresult (tests.test_classic_connection.TestSimpleQueries.test_namedresult) ... ok 204s test_namedresult_async (tests.test_classic_connection.TestSimpleQueries.test_namedresult_async) ... ok 204s test_namedresult_names (tests.test_classic_connection.TestSimpleQueries.test_namedresult_names) ... ok 204s test_namedresult_with_bad_fieldnames (tests.test_classic_connection.TestSimpleQueries.test_namedresult_with_bad_fieldnames) ... ok 204s test_namedresult_with_good_fieldnames (tests.test_classic_connection.TestSimpleQueries.test_namedresult_with_good_fieldnames) ... ok 204s test_query (tests.test_classic_connection.TestSimpleQueries.test_query) ... ok 204s test_query_with_oids (tests.test_classic_connection.TestSimpleQueries.test_query_with_oids) ... skipped 'database does not support tables with oids' 204s test_repr (tests.test_classic_connection.TestSimpleQueries.test_repr) ... ok 204s test_select0 (tests.test_classic_connection.TestSimpleQueries.test_select0) ... ok 204s test_select0_semicolon (tests.test_classic_connection.TestSimpleQueries.test_select0_semicolon) ... ok 204s test_select_dot_semicolon (tests.test_classic_connection.TestSimpleQueries.test_select_dot_semicolon) ... ok 204s test_str (tests.test_classic_connection.TestSimpleQueries.test_str) ... ok 204s test_escape_bytea (tests.test_classic_connection.TestStandaloneEscapeFunctions.test_escape_bytea) ... ok 204s test_escape_string (tests.test_classic_connection.TestStandaloneEscapeFunctions.test_escape_string) ... ok 204s test_dictresul_ascii (tests.test_classic_connection.TestUnicodeQueries.test_dictresul_ascii) ... ok 204s test_dictresult_cyrillic (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_cyrillic) ... ok 204s test_dictresult_latin1 (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_latin1) ... ok 204s test_dictresult_latin9 (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_latin9) ... ok 204s test_dictresult_utf8 (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_utf8) ... ok 204s test_getresul_ascii (tests.test_classic_connection.TestUnicodeQueries.test_getresul_ascii) ... ok 204s test_getresult_cyrillic (tests.test_classic_connection.TestUnicodeQueries.test_getresult_cyrillic) ... ok 204s test_getresult_latin1 (tests.test_classic_connection.TestUnicodeQueries.test_getresult_latin1) ... ok 204s test_getresult_latin9 (tests.test_classic_connection.TestUnicodeQueries.test_getresult_latin9) ... ok 204s test_getresult_utf8 (tests.test_classic_connection.TestUnicodeQueries.test_getresult_utf8) ... ok 204s test_array (tests.test_classic_dbwrapper.TestDBClass.test_array) ... ok 204s test_array_literal (tests.test_classic_dbwrapper.TestDBClass.test_array_literal) ... ok 204s test_array_of_bytea (tests.test_classic_dbwrapper.TestDBClass.test_array_of_bytea) ... ok 204s test_array_of_ids (tests.test_classic_dbwrapper.TestDBClass.test_array_of_ids) ... ok 204s test_array_of_json (tests.test_classic_dbwrapper.TestDBClass.test_array_of_json) ... ok 204s test_array_of_jsonb (tests.test_classic_dbwrapper.TestDBClass.test_array_of_jsonb) ... ok 204s test_array_of_text (tests.test_classic_dbwrapper.TestDBClass.test_array_of_text) ... ok 204s test_bytea (tests.test_classic_dbwrapper.TestDBClass.test_bytea) ... ok 204s test_class_name (tests.test_classic_dbwrapper.TestDBClass.test_class_name) ... ok 204s test_clear (tests.test_classic_dbwrapper.TestDBClass.test_clear) ... ok 204s test_clear_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_clear_with_quoted_names) ... ok 204s test_context_manager (tests.test_classic_dbwrapper.TestDBClass.test_context_manager) ... ok 204s test_create_table (tests.test_classic_dbwrapper.TestDBClass.test_create_table) ... ok 204s test_create_table_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_create_table_with_oids) ... skipped 'database does not support tables with oids' 204s test_date (tests.test_classic_dbwrapper.TestDBClass.test_date) ... ok 204s test_date_and_time_arrays (tests.test_classic_dbwrapper.TestDBClass.test_date_and_time_arrays) ... ok 204s test_db_types_info (tests.test_classic_dbwrapper.TestDBClass.test_db_types_info) ... ok 204s test_db_types_typecast (tests.test_classic_dbwrapper.TestDBClass.test_db_types_typecast) ... ok 204s test_decode_json (tests.test_classic_dbwrapper.TestDBClass.test_decode_json) ... ok 204s test_deep_array (tests.test_classic_dbwrapper.TestDBClass.test_deep_array) ... ok 204s test_delete (tests.test_classic_dbwrapper.TestDBClass.test_delete) ... ok 204s test_delete_prepared (tests.test_classic_dbwrapper.TestDBClass.test_delete_prepared) ... ok 204s test_delete_referenced (tests.test_classic_dbwrapper.TestDBClass.test_delete_referenced) ... ok 205s test_delete_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_delete_with_composite_key) ... ok 205s test_delete_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_delete_with_oids) ... skipped 'database does not support tables with oids' 205s test_delete_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_delete_with_quoted_names) ... ok 205s test_describe_prepared (tests.test_classic_dbwrapper.TestDBClass.test_describe_prepared) ... ok 205s test_describe_prepared_unnamed (tests.test_classic_dbwrapper.TestDBClass.test_describe_prepared_unnamed) ... ok 205s test_empty_query (tests.test_classic_dbwrapper.TestDBClass.test_empty_query) ... ok 205s test_encode_json (tests.test_classic_dbwrapper.TestDBClass.test_encode_json) ... ok 205s test_escape_bytea (tests.test_classic_dbwrapper.TestDBClass.test_escape_bytea) ... ok 205s test_escape_identifier (tests.test_classic_dbwrapper.TestDBClass.test_escape_identifier) ... ok 205s test_escape_literal (tests.test_classic_dbwrapper.TestDBClass.test_escape_literal) ... ok 205s test_escape_string (tests.test_classic_dbwrapper.TestDBClass.test_escape_string) ... ok 205s test_get (tests.test_classic_dbwrapper.TestDBClass.test_get) ... ok 205s test_get_as_dict (tests.test_classic_dbwrapper.TestDBClass.test_get_as_dict) ... ok 205s test_get_as_list (tests.test_classic_dbwrapper.TestDBClass.test_get_as_list) ... ok 205s test_get_attnames (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames) ... ok 205s test_get_attnames_is_attr_dict (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_is_attr_dict) ... ok 205s test_get_attnames_is_cached (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_is_cached) ... ok 205s test_get_attnames_is_ordered (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_is_ordered) ... ok 205s test_get_attnames_with_quotes (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_with_quotes) ... ok 205s test_get_attnames_with_regtypes (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_with_regtypes) ... ok 205s test_get_attnames_without_regtypes (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_without_regtypes) ... ok 205s test_get_databases (tests.test_classic_dbwrapper.TestDBClass.test_get_databases) ... ok 205s test_get_from_view (tests.test_classic_dbwrapper.TestDBClass.test_get_from_view) ... ok 205s test_get_generated (tests.test_classic_dbwrapper.TestDBClass.test_get_generated) ... ok 205s test_get_generated_is_cached (tests.test_classic_dbwrapper.TestDBClass.test_get_generated_is_cached) ... ok 205s test_get_little_bobby_tables (tests.test_classic_dbwrapper.TestDBClass.test_get_little_bobby_tables) ... ok 205s test_get_parameter (tests.test_classic_dbwrapper.TestDBClass.test_get_parameter) ... ok 205s test_get_parameter_all (tests.test_classic_dbwrapper.TestDBClass.test_get_parameter_all) ... ok 205s test_get_parameter_server_version (tests.test_classic_dbwrapper.TestDBClass.test_get_parameter_server_version) ... ok 205s test_get_relations (tests.test_classic_dbwrapper.TestDBClass.test_get_relations) ... ok 205s test_get_set_type_cast (tests.test_classic_dbwrapper.TestDBClass.test_get_set_type_cast) ... ok 205s test_get_system_relations (tests.test_classic_dbwrapper.TestDBClass.test_get_system_relations) ... ok 205s test_get_system_tables (tests.test_classic_dbwrapper.TestDBClass.test_get_system_tables) ... ok 205s test_get_tables (tests.test_classic_dbwrapper.TestDBClass.test_get_tables) ... ok 205s test_get_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_get_with_composite_key) ... ok 205s test_get_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_get_with_oids) ... skipped 'database does not support tables with oids' 205s test_get_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_get_with_quoted_names) ... ok 205s test_has_table_privilege (tests.test_classic_dbwrapper.TestDBClass.test_has_table_privilege) ... skipped 'must not be superuser' 205s test_hstore (tests.test_classic_dbwrapper.TestDBClass.test_hstore) ... ok 205s test_insert (tests.test_classic_dbwrapper.TestDBClass.test_insert) ... ok 205s test_insert_get_json (tests.test_classic_dbwrapper.TestDBClass.test_insert_get_json) ... ok 205s test_insert_get_jsonb (tests.test_classic_dbwrapper.TestDBClass.test_insert_get_jsonb) ... ok 205s test_insert_into_view (tests.test_classic_dbwrapper.TestDBClass.test_insert_into_view) ... ok 205s test_insert_update_get_bytea (tests.test_classic_dbwrapper.TestDBClass.test_insert_update_get_bytea) ... ok 205s test_insert_update_get_record (tests.test_classic_dbwrapper.TestDBClass.test_insert_update_get_record) ... ok 205s test_insert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClass.test_insert_with_generated_columns) ... ok 205s test_insert_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_insert_with_oids) ... skipped 'database does not support tables with oids' 205s test_insert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_insert_with_quoted_names) ... ok 205s test_inserttable_from_query (tests.test_classic_dbwrapper.TestDBClass.test_inserttable_from_query) ... ok 205s test_interval (tests.test_classic_dbwrapper.TestDBClass.test_interval) ... ok 205s test_module_name (tests.test_classic_dbwrapper.TestDBClass.test_module_name) ... ok 205s test_multiple_queries (tests.test_classic_dbwrapper.TestDBClass.test_multiple_queries) ... ok 205s test_notification_handler (tests.test_classic_dbwrapper.TestDBClass.test_notification_handler) ... ok 205s test_pkey (tests.test_classic_dbwrapper.TestDBClass.test_pkey) ... ok 205s test_pkeys (tests.test_classic_dbwrapper.TestDBClass.test_pkeys) ... ok 205s test_prepare (tests.test_classic_dbwrapper.TestDBClass.test_prepare) ... ok 205s test_prepare_unnamed (tests.test_classic_dbwrapper.TestDBClass.test_prepare_unnamed) ... ok 205s test_query (tests.test_classic_dbwrapper.TestDBClass.test_query) ... ok 205s test_query_data_error (tests.test_classic_dbwrapper.TestDBClass.test_query_data_error) ... ok 205s test_query_formatted (tests.test_classic_dbwrapper.TestDBClass.test_query_formatted) ... ok 205s test_query_formatted_with_any (tests.test_classic_dbwrapper.TestDBClass.test_query_formatted_with_any) ... ok 205s test_query_formatted_without_params (tests.test_classic_dbwrapper.TestDBClass.test_query_formatted_without_params) ... ok 205s test_query_prepared_unnamed_with_out_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_unnamed_with_out_params) ... ok 206s test_query_prepared_unnamed_with_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_unnamed_with_params) ... ok 206s test_query_prepared_with_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_with_params) ... ok 206s test_query_prepared_without_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_without_params) ... ok 206s test_query_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_query_with_oids) ... skipped 'database does not support tables with oids' 206s test_query_with_params (tests.test_classic_dbwrapper.TestDBClass.test_query_with_params) ... ok 206s test_record_insert_bytea (tests.test_classic_dbwrapper.TestDBClass.test_record_insert_bytea) ... ok 206s test_record_insert_json (tests.test_classic_dbwrapper.TestDBClass.test_record_insert_json) ... ok 206s test_record_literal (tests.test_classic_dbwrapper.TestDBClass.test_record_literal) ... ok 206s test_reopen (tests.test_classic_dbwrapper.TestDBClass.test_reopen) ... ok 206s test_reset (tests.test_classic_dbwrapper.TestDBClass.test_reset) ... ok 206s test_reset_parameter (tests.test_classic_dbwrapper.TestDBClass.test_reset_parameter) ... ok 206s test_reset_parameter_all (tests.test_classic_dbwrapper.TestDBClass.test_reset_parameter_all) ... ok 206s test_set_parameter (tests.test_classic_dbwrapper.TestDBClass.test_set_parameter) ... ok 206s test_set_parameter_local (tests.test_classic_dbwrapper.TestDBClass.test_set_parameter_local) ... ok 206s test_set_parameter_session (tests.test_classic_dbwrapper.TestDBClass.test_set_parameter_session) ... ok 206s test_temp_crud (tests.test_classic_dbwrapper.TestDBClass.test_temp_crud) ... ok 206s test_time (tests.test_classic_dbwrapper.TestDBClass.test_time) ... ok 206s test_timestamp (tests.test_classic_dbwrapper.TestDBClass.test_timestamp) ... ok 206s test_timestamptz (tests.test_classic_dbwrapper.TestDBClass.test_timestamptz) ... ok 206s test_timetz (tests.test_classic_dbwrapper.TestDBClass.test_timetz) ... ok 206s test_transaction (tests.test_classic_dbwrapper.TestDBClass.test_transaction) ... ok 206s test_transaction_aliases (tests.test_classic_dbwrapper.TestDBClass.test_transaction_aliases) ... ok 206s test_truncate (tests.test_classic_dbwrapper.TestDBClass.test_truncate) ... ok 206s test_truncate_cascade (tests.test_classic_dbwrapper.TestDBClass.test_truncate_cascade) ... ok 206s test_truncate_only (tests.test_classic_dbwrapper.TestDBClass.test_truncate_only) ... ok 206s test_truncate_quoted (tests.test_classic_dbwrapper.TestDBClass.test_truncate_quoted) ... ok 206s test_truncate_restart (tests.test_classic_dbwrapper.TestDBClass.test_truncate_restart) ... ok 206s test_unescape_bytea (tests.test_classic_dbwrapper.TestDBClass.test_unescape_bytea) ... ok 206s test_update (tests.test_classic_dbwrapper.TestDBClass.test_update) ... ok 206s test_update_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_update_with_composite_key) ... ok 206s test_update_with_generated_columns (tests.test_classic_dbwrapper.TestDBClass.test_update_with_generated_columns) ... ok 206s test_update_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_update_with_oids) ... skipped 'database does not support tables with oids' 206s test_update_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_update_with_quoted_names) ... ok 206s test_update_without_oid (tests.test_classic_dbwrapper.TestDBClass.test_update_without_oid) ... ok 206s test_upsert (tests.test_classic_dbwrapper.TestDBClass.test_upsert) ... ok 206s test_upsert_bytea (tests.test_classic_dbwrapper.TestDBClass.test_upsert_bytea) ... ok 206s test_upsert_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_composite_key) ... ok 206s test_upsert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_generated_columns) ... ok 206s test_upsert_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_oids) ... skipped 'database does not support tables with oids' 206s test_upsert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_quoted_names) ... ok 206s test_uuid (tests.test_classic_dbwrapper.TestDBClass.test_uuid) ... ok 206s test_adapt_query_inline_dict (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_dict) ... ok 206s test_adapt_query_inline_list (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_list) ... ok 206s test_adapt_query_inline_list_with_hstore (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_list_with_hstore) ... ok 206s test_adapt_query_inline_list_with_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_list_with_json) ... ok 206s test_adapt_query_typed_dict (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_dict) ... ok 206s test_adapt_query_typed_list (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list) ... ok 206s test_adapt_query_typed_list_with_empty_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_empty_json) ... ok 206s test_adapt_query_typed_list_with_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_json) ... ok 206s test_adapt_query_typed_list_with_types_as_classes (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_types_as_classes) ... ok 206s test_adapt_query_typed_list_with_types_as_string (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_types_as_string) ... ok 206s test_adapt_query_typed_with_hstore (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_with_hstore) ... ok 206s test_adapt_query_typed_with_uuid (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_with_uuid) ... ok 206s test_adapt_query_untyped_dict (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_dict) ... ok 206s test_adapt_query_untyped_list (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_list) ... ok 206s test_adapt_query_untyped_list_with_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_list_with_json) ... ok 206s test_adapt_query_untyped_with_hstore (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_with_hstore) ... ok 206s test_adapt_query_with_pg_repr (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_with_pg_repr) ... ok 206s test_guess_simple_type (tests.test_classic_dbwrapper.TestDBClassAdapter.test_guess_simple_type) ... ok 206s test_all_db_attributes (tests.test_classic_dbwrapper.TestDBClassBasic.test_all_db_attributes) ... ok 206s test_attribute_backend_pid (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_backend_pid) ... ok 206s test_attribute_db (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_db) ... ok 206s test_attribute_dbname (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_dbname) ... ok 207s test_attribute_error (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_error) ... ok 207s test_attribute_host (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_host) ... ok 207s test_attribute_options (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_options) ... ok 207s test_attribute_port (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_port) ... ok 207s test_attribute_protocol_version (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_protocol_version) ... ok 207s test_attribute_server_version (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_server_version) ... ok 207s test_attribute_socket (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_socket) ... ok 207s test_attribute_status (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_status) ... ok 207s test_attribute_user (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_user) ... ok 207s test_existing_connection (tests.test_classic_dbwrapper.TestDBClassBasic.test_existing_connection) ... ok 207s test_existing_db_api2_connection (tests.test_classic_dbwrapper.TestDBClassBasic.test_existing_db_api2_connection) ... ok 207s test_method_close (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_close) ... ok 207s test_method_decode_json (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_decode_json) ... ok 207s test_method_encode_json (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_encode_json) ... ok 207s test_method_endcopy (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_endcopy) ... ok 207s test_method_escape_bytea (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_bytea) ... ok 207s test_method_escape_identifier (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_identifier) ... ok 207s test_method_escape_literal (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_literal) ... ok 207s test_method_escape_string (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_string) ... ok 207s test_method_query (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_query) ... ok 207s test_method_query_data_error (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_query_data_error) ... ok 207s test_method_query_empty (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_query_empty) ... ok 207s test_method_reopen (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_reopen) ... ok 207s test_method_reset (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_reset) ... ok 207s test_method_unescape_bytea (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_unescape_bytea) ... ok 207s test_async_query_after_deletion (tests.test_classic_dbwrapper.TestDBClassInit.test_async_query_after_deletion) ... ok 207s test_async_query_before_deletion (tests.test_classic_dbwrapper.TestDBClassInit.test_async_query_before_deletion) ... ok 207s test_bad_params (tests.test_classic_dbwrapper.TestDBClassInit.test_bad_params) ... ok 207s test_delete_db (tests.test_classic_dbwrapper.TestDBClassInit.test_delete_db) ... ok 207s test_array (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array) ... ok 207s test_array_literal (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_literal) ... ok 207s test_array_of_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_bytea) ... ok 207s test_array_of_ids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_ids) ... ok 207s test_array_of_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_json) ... ok 207s test_array_of_jsonb (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_jsonb) ... ok 207s test_array_of_text (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_text) ... ok 207s test_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_bytea) ... ok 207s test_class_name (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_class_name) ... ok 207s test_clear (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_clear) ... ok 207s test_clear_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_clear_with_quoted_names) ... ok 207s test_context_manager (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_context_manager) ... ok 207s test_create_table (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_create_table) ... ok 207s test_create_table_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_create_table_with_oids) ... skipped 'database does not support tables with oids' 207s test_date (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_date) ... ok 207s test_date_and_time_arrays (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_date_and_time_arrays) ... ok 207s test_db_types_info (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_db_types_info) ... ok 207s test_db_types_typecast (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_db_types_typecast) ... ok 207s test_decode_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_decode_json) ... ok 207s test_deep_array (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_deep_array) ... ok 207s test_delete (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete) ... ok 207s test_delete_prepared (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_prepared) ... ok 207s test_delete_referenced (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_referenced) ... ok 207s test_delete_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_with_composite_key) ... ok 207s test_delete_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_with_oids) ... skipped 'database does not support tables with oids' 207s test_delete_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_with_quoted_names) ... ok 207s test_describe_prepared (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_describe_prepared) ... ok 207s test_describe_prepared_unnamed (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_describe_prepared_unnamed) ... ok 207s test_empty_query (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_empty_query) ... ok 207s test_encode_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_encode_json) ... ok 207s test_escape_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_bytea) ... ok 207s test_escape_identifier (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_identifier) ... ok 207s test_escape_literal (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_literal) ... ok 207s test_escape_string (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_string) ... ok 207s test_get (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get) ... ok 207s test_get_as_dict (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_as_dict) ... ok 207s test_get_as_list (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_as_list) ... ok 207s test_get_attnames (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames) ... ok 207s test_get_attnames_is_attr_dict (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_is_attr_dict) ... ok 208s test_get_attnames_is_cached (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_is_cached) ... ok 208s test_get_attnames_is_ordered (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_is_ordered) ... ok 208s test_get_attnames_with_quotes (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_with_quotes) ... ok 208s test_get_attnames_with_regtypes (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_with_regtypes) ... ok 208s test_get_attnames_without_regtypes (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_without_regtypes) ... ok 208s test_get_databases (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_databases) ... ok 208s test_get_from_view (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_from_view) ... ok 208s test_get_generated (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_generated) ... ok 208s test_get_generated_is_cached (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_generated_is_cached) ... ok 208s test_get_little_bobby_tables (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_little_bobby_tables) ... ok 208s test_get_parameter (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_parameter) ... ok 208s test_get_parameter_all (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_parameter_all) ... ok 208s test_get_parameter_server_version (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_parameter_server_version) ... ok 208s test_get_relations (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_relations) ... ok 208s test_get_set_type_cast (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_set_type_cast) ... ok 208s test_get_system_relations (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_system_relations) ... ok 208s test_get_system_tables (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_system_tables) ... ok 208s test_get_tables (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_tables) ... ok 208s test_get_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_with_composite_key) ... ok 208s test_get_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_with_oids) ... skipped 'database does not support tables with oids' 208s test_get_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_with_quoted_names) ... ok 208s test_has_table_privilege (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_has_table_privilege) ... skipped 'must not be superuser' 208s test_hstore (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_hstore) ... ok 208s test_insert (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert) ... ok 208s test_insert_get_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_get_json) ... ok 208s test_insert_get_jsonb (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_get_jsonb) ... ok 208s test_insert_into_view (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_into_view) ... ok 208s test_insert_update_get_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_update_get_bytea) ... ok 208s test_insert_update_get_record (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_update_get_record) ... ok 208s test_insert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_with_generated_columns) ... ok 208s test_insert_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_with_oids) ... skipped 'database does not support tables with oids' 208s test_insert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_with_quoted_names) ... ok 208s test_inserttable_from_query (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_inserttable_from_query) ... ok 208s test_interval (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_interval) ... ok 208s test_module_name (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_module_name) ... ok 208s test_multiple_queries (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_multiple_queries) ... ok 208s test_notification_handler (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_notification_handler) ... ok 208s test_pkey (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_pkey) ... ok 208s test_pkeys (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_pkeys) ... ok 208s test_prepare (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_prepare) ... ok 208s test_prepare_unnamed (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_prepare_unnamed) ... ok 208s test_query (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query) ... ok 208s test_query_data_error (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_data_error) ... ok 208s test_query_formatted (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_formatted) ... ok 208s test_query_formatted_with_any (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_formatted_with_any) ... ok 208s test_query_formatted_without_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_formatted_without_params) ... ok 208s test_query_prepared_unnamed_with_out_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_unnamed_with_out_params) ... ok 208s test_query_prepared_unnamed_with_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_unnamed_with_params) ... ok 208s test_query_prepared_with_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_with_params) ... ok 208s test_query_prepared_without_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_without_params) ... ok 208s test_query_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_with_oids) ... skipped 'database does not support tables with oids' 208s test_query_with_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_with_params) ... ok 208s test_record_insert_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_record_insert_bytea) ... ok 208s test_record_insert_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_record_insert_json) ... ok 208s test_record_literal (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_record_literal) ... ok 208s test_reopen (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reopen) ... ok 208s test_reset (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reset) ... ok 208s test_reset_parameter (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reset_parameter) ... ok 208s test_reset_parameter_all (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reset_parameter_all) ... ok 208s test_set_parameter (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_set_parameter) ... ok 208s test_set_parameter_local (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_set_parameter_local) ... ok 209s test_set_parameter_session (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_set_parameter_session) ... ok 209s test_temp_crud (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_temp_crud) ... ok 209s test_time (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_time) ... ok 209s test_timestamp (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_timestamp) ... ok 209s test_timestamptz (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_timestamptz) ... ok 209s test_timetz (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_timetz) ... ok 209s test_transaction (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_transaction) ... ok 209s test_transaction_aliases (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_transaction_aliases) ... ok 209s test_truncate (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate) ... ok 209s test_truncate_cascade (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_cascade) ... ok 209s test_truncate_only (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_only) ... ok 209s test_truncate_quoted (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_quoted) ... ok 209s test_truncate_restart (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_restart) ... ok 209s test_unescape_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_unescape_bytea) ... ok 209s test_update (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update) ... ok 209s test_update_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_composite_key) ... ok 209s test_update_with_generated_columns (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_generated_columns) ... ok 209s test_update_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_oids) ... skipped 'database does not support tables with oids' 209s test_update_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_quoted_names) ... ok 209s test_update_without_oid (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_without_oid) ... ok 209s test_upsert (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert) ... ok 209s test_upsert_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_bytea) ... ok 209s test_upsert_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_composite_key) ... ok 209s test_upsert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_generated_columns) ... ok 209s test_upsert_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_oids) ... skipped 'database does not support tables with oids' 209s test_upsert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_quoted_names) ... ok 209s test_uuid (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_uuid) ... ok 209s test_debug_default (tests.test_classic_dbwrapper.TestDebug.test_debug_default) ... ok 209s test_debug_is_callable (tests.test_classic_dbwrapper.TestDebug.test_debug_is_callable) ... ok 209s test_debug_is_false (tests.test_classic_dbwrapper.TestDebug.test_debug_is_false) ... ok 209s test_debug_is_file_like (tests.test_classic_dbwrapper.TestDebug.test_debug_is_file_like) ... ok 209s test_debug_is_string (tests.test_classic_dbwrapper.TestDebug.test_debug_is_string) ... ok 209s test_debug_is_true (tests.test_classic_dbwrapper.TestDebug.test_debug_is_true) ... ok 209s test_debug_multiple_args (tests.test_classic_dbwrapper.TestDebug.test_debug_multiple_args) ... ok 209s test_leaks_with_close (tests.test_classic_dbwrapper.TestMemoryLeaks.test_leaks_with_close) ... ok 209s test_leaks_without_close (tests.test_classic_dbwrapper.TestMemoryLeaks.test_leaks_without_close) ... ok 209s test_get (tests.test_classic_dbwrapper.TestSchemas.test_get) ... ok 209s test_get_attnames (tests.test_classic_dbwrapper.TestSchemas.test_get_attnames) ... ok 209s test_get_tables (tests.test_classic_dbwrapper.TestSchemas.test_get_tables) ... ok 209s test_munging (tests.test_classic_dbwrapper.TestSchemas.test_munging) ... ok 209s test_query_information_schema (tests.test_classic_dbwrapper.TestSchemas.test_query_information_schema) ... ok 209s test_cast_interval (tests.test_classic_functions.TestCastInterval.test_cast_interval) ... ok 209s test_get_bool (tests.test_classic_functions.TestConfigFunctions.test_get_bool) ... ok 209s test_get_bytea_escaped (tests.test_classic_functions.TestConfigFunctions.test_get_bytea_escaped) ... ok 209s test_get_datestyle (tests.test_classic_functions.TestConfigFunctions.test_get_datestyle) ... ok 209s test_get_decimal (tests.test_classic_functions.TestConfigFunctions.test_get_decimal) ... ok 209s test_get_decimal_point (tests.test_classic_functions.TestConfigFunctions.test_get_decimal_point) ... ok 209s test_get_jsondecode (tests.test_classic_functions.TestConfigFunctions.test_get_jsondecode) ... ok 209s test_set_bool (tests.test_classic_functions.TestConfigFunctions.test_set_bool) ... ok 209s test_set_bytea_escaped (tests.test_classic_functions.TestConfigFunctions.test_set_bytea_escaped) ... ok 209s test_set_datestyle (tests.test_classic_functions.TestConfigFunctions.test_set_datestyle) ... ok 209s test_set_decimal (tests.test_classic_functions.TestConfigFunctions.test_set_decimal) ... ok 209s test_set_decimal_point (tests.test_classic_functions.TestConfigFunctions.test_set_decimal_point) ... ok 209s test_set_jsondecode (tests.test_classic_functions.TestConfigFunctions.test_set_jsondecode) ... ok 209s test_escape_bytea (tests.test_classic_functions.TestEscapeFunctions.test_escape_bytea) ... ok 209s test_escape_string (tests.test_classic_functions.TestEscapeFunctions.test_escape_string) ... ok 209s test_unescape_bytea (tests.test_classic_functions.TestEscapeFunctions.test_unescape_bytea) ... ok 209s test_def_base (tests.test_classic_functions.TestHasConnect.test_def_base) ... ok 209s test_def_host (tests.test_classic_functions.TestHasConnect.test_def_host) ... ok 209s test_def_opt (tests.test_classic_functions.TestHasConnect.test_def_opt) ... ok 209s test_def_port (tests.test_classic_functions.TestHasConnect.test_def_port) ... ok 209s test_has_connect (tests.test_classic_functions.TestHasConnect.test_has_connect) ... ok 209s test_has_connection_type (tests.test_classic_functions.TestHasConnect.test_has_connection_type) ... ok 209s test_has_escape_bytea (tests.test_classic_functions.TestHasConnect.test_has_escape_bytea) ... ok 209s test_has_escape_string (tests.test_classic_functions.TestHasConnect.test_has_escape_string) ... ok 209s test_has_pg_data_error (tests.test_classic_functions.TestHasConnect.test_has_pg_data_error) ... ok 209s test_has_pg_database_error (tests.test_classic_functions.TestHasConnect.test_has_pg_database_error) ... ok 209s test_has_pg_error (tests.test_classic_functions.TestHasConnect.test_has_pg_error) ... ok 209s test_has_pg_integrity_error (tests.test_classic_functions.TestHasConnect.test_has_pg_integrity_error) ... ok 209s test_has_pg_interface_error (tests.test_classic_functions.TestHasConnect.test_has_pg_interface_error) ... ok 209s test_has_pg_internal_error (tests.test_classic_functions.TestHasConnect.test_has_pg_internal_error) ... ok 209s test_has_pg_invalid_result_error (tests.test_classic_functions.TestHasConnect.test_has_pg_invalid_result_error) ... ok 209s test_has_pg_multiple_results_error (tests.test_classic_functions.TestHasConnect.test_has_pg_multiple_results_error) ... ok 209s test_has_pg_no_result_error (tests.test_classic_functions.TestHasConnect.test_has_pg_no_result_error) ... ok 209s test_has_pg_not_supported_error (tests.test_classic_functions.TestHasConnect.test_has_pg_not_supported_error) ... ok 209s test_has_pg_operational_error (tests.test_classic_functions.TestHasConnect.test_has_pg_operational_error) ... ok 209s test_has_pg_programming_error (tests.test_classic_functions.TestHasConnect.test_has_pg_programming_error) ... ok 209s test_has_pg_warning (tests.test_classic_functions.TestHasConnect.test_has_pg_warning) ... ok 209s test_has_query_type (tests.test_classic_functions.TestHasConnect.test_has_query_type) ... ok 209s test_has_unescape_bytea (tests.test_classic_functions.TestHasConnect.test_has_unescape_bytea) ... ok 209s test_pqlib_version (tests.test_classic_functions.TestHasConnect.test_pqlib_version) ... ok 209s test_version (tests.test_classic_functions.TestModuleConstants.test_version) ... ok 209s test_parser_cast (tests.test_classic_functions.TestParseArray.test_parser_cast) ... ok 209s test_parser_delim (tests.test_classic_functions.TestParseArray.test_parser_delim) ... ok 209s test_parser_nested (tests.test_classic_functions.TestParseArray.test_parser_nested) ... ok 209s test_parser_params (tests.test_classic_functions.TestParseArray.test_parser_params) ... ok 209s test_parser_simple (tests.test_classic_functions.TestParseArray.test_parser_simple) ... ok 209s test_parser_too_deeply_nested (tests.test_classic_functions.TestParseArray.test_parser_too_deeply_nested) ... ok 209s test_parser_with_data (tests.test_classic_functions.TestParseArray.test_parser_with_data) ... ok 209s test_parser_with_different_delimiter (tests.test_classic_functions.TestParseArray.test_parser_with_different_delimiter) ... ok 209s test_parser_without_cast (tests.test_classic_functions.TestParseArray.test_parser_without_cast) ... ok 209s test_parser (tests.test_classic_functions.TestParseHStore.test_parser) ... ok 209s test_parser_cast_non_uniform (tests.test_classic_functions.TestParseRecord.test_parser_cast_non_uniform) ... ok 209s test_parser_cast_uniform (tests.test_classic_functions.TestParseRecord.test_parser_cast_uniform) ... ok 209s test_parser_delim (tests.test_classic_functions.TestParseRecord.test_parser_delim) ... ok 209s test_parser_many_elements (tests.test_classic_functions.TestParseRecord.test_parser_many_elements) ... ok 209s test_parser_nested (tests.test_classic_functions.TestParseRecord.test_parser_nested) ... ok 209s test_parser_params (tests.test_classic_functions.TestParseRecord.test_parser_params) ... ok 209s test_parser_simple (tests.test_classic_functions.TestParseRecord.test_parser_simple) ... ok 209s test_parser_with_data (tests.test_classic_functions.TestParseRecord.test_parser_with_data) ... ok 209s test_parser_with_different_delimiter (tests.test_classic_functions.TestParseRecord.test_parser_with_different_delimiter) ... ok 209s test_parser_without_cast (tests.test_classic_functions.TestParseRecord.test_parser_without_cast) ... ok 209s test_get_lo (tests.test_classic_largeobj.TestCreatingLargeObjects.test_get_lo) ... ok 209s test_lo_create (tests.test_classic_largeobj.TestCreatingLargeObjects.test_lo_create) ... ok 209s test_lo_import (tests.test_classic_largeobj.TestCreatingLargeObjects.test_lo_import) ... ok 209s test_class_name (tests.test_classic_largeobj.TestLargeObjects.test_class_name) ... ok 209s test_close (tests.test_classic_largeobj.TestLargeObjects.test_close) ... ok 209s test_error (tests.test_classic_largeobj.TestLargeObjects.test_error) ... ok 209s test_export (tests.test_classic_largeobj.TestLargeObjects.test_export) ... ok 209s test_export_in_existent (tests.test_classic_largeobj.TestLargeObjects.test_export_in_existent) ... ok 209s test_module_name (tests.test_classic_largeobj.TestLargeObjects.test_module_name) ... ok 209s test_oid (tests.test_classic_largeobj.TestLargeObjects.test_oid) ... ok 209s test_open (tests.test_classic_largeobj.TestLargeObjects.test_open) ... ok 209s test_pgcn (tests.test_classic_largeobj.TestLargeObjects.test_pgcn) ... ok 209s test_read (tests.test_classic_largeobj.TestLargeObjects.test_read) ... ok 209s test_repr (tests.test_classic_largeobj.TestLargeObjects.test_repr) ... ok 209s test_seek (tests.test_classic_largeobj.TestLargeObjects.test_seek) ... ok 209s test_size (tests.test_classic_largeobj.TestLargeObjects.test_size) ... ok 209s test_str (tests.test_classic_largeobj.TestLargeObjects.test_str) ... ok 209s test_tell (tests.test_classic_largeobj.TestLargeObjects.test_tell) ... ok 209s test_unlink (tests.test_classic_largeobj.TestLargeObjects.test_unlink) ... ok 209s test_unlink_inexistent (tests.test_classic_largeobj.TestLargeObjects.test_unlink_inexistent) ... ok 209s test_write (tests.test_classic_largeobj.TestLargeObjects.test_write) ... ok 209s test_write_latin1_bytes (tests.test_classic_largeobj.TestLargeObjects.test_write_latin1_bytes) ... ok 209s test_write_utf8_bytes (tests.test_classic_largeobj.TestLargeObjects.test_write_utf8_bytes) ... ok 209s test_write_utf8_string (tests.test_classic_largeobj.TestLargeObjects.test_write_utf8_string) ... ok 209s test_large_object_int_constants (tests.test_classic_largeobj.TestModuleConstants.test_large_object_int_constants) ... ok 209s test_notify_distinct_in_transaction (tests.test_classic_notification.TestAsyncNotification.test_notify_distinct_in_transaction) ... ok 210s test_notify_handler_empty (tests.test_classic_notification.TestAsyncNotification.test_notify_handler_empty) ... ok 210s test_notify_handler_once (tests.test_classic_notification.TestAsyncNotification.test_notify_handler_once) ... ok 210s test_notify_no_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_no_timeout) ... ok 210s test_notify_once_with_payload (tests.test_classic_notification.TestAsyncNotification.test_notify_once_with_payload) ... ok 210s test_notify_query_empty (tests.test_classic_notification.TestAsyncNotification.test_notify_query_empty) ... ok 210s test_notify_query_once (tests.test_classic_notification.TestAsyncNotification.test_notify_query_once) ... ok 210s test_notify_quoted_names (tests.test_classic_notification.TestAsyncNotification.test_notify_quoted_names) ... ok 210s test_notify_same_in_transaction (tests.test_classic_notification.TestAsyncNotification.test_notify_same_in_transaction) ... ok 210s test_notify_several_times (tests.test_classic_notification.TestAsyncNotification.test_notify_several_times) ... ok 210s test_notify_with_args (tests.test_classic_notification.TestAsyncNotification.test_notify_with_args) ... ok 210s test_notify_with_args_and_payload (tests.test_classic_notification.TestAsyncNotification.test_notify_with_args_and_payload) ... ok 210s test_notify_with_five_payloads (tests.test_classic_notification.TestAsyncNotification.test_notify_with_five_payloads) ... ok 210s test_notify_with_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_with_timeout) ... ok 210s test_notify_without_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_without_timeout) ... ok 210s test_notify_zero_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_zero_timeout) ... ok 210s test_receive_immediately (tests.test_classic_notification.TestAsyncNotification.test_receive_immediately) ... ok 210s test_close_handler (tests.test_classic_notification.TestSyncNotification.test_close_handler) ... ok 210s test_delete_handler (tests.test_classic_notification.TestSyncNotification.test_delete_handler) ... ok 210s test_notify (tests.test_classic_notification.TestSyncNotification.test_notify) ... ok 210s test_notify_with_args_and_payload (tests.test_classic_notification.TestSyncNotification.test_notify_with_args_and_payload) ... ok 210s test_notify_wrong_event (tests.test_classic_notification.TestSyncNotification.test_notify_wrong_event) ... ok 210s test_apilevel (tests.test_dbapi20.TestPgDb.test_apilevel) ... ok 210s test_arraysize (tests.test_dbapi20.TestPgDb.test_arraysize) ... ok 210s test_autocommit (tests.test_dbapi20.TestPgDb.test_autocommit) ... ok 210s test_binary_string (tests.test_dbapi20.TestPgDb.test_binary_string) ... ok 210s test_binary_type (tests.test_dbapi20.TestPgDb.test_binary_type) ... ok 211s test_bool (tests.test_dbapi20.TestPgDb.test_bool) ... ok 211s test_build_row_factory (tests.test_dbapi20.TestPgDb.test_build_row_factory) ... ok 211s test_callproc (tests.test_dbapi20.TestPgDb.test_callproc) ... ok 211s test_callproc_bad_params (tests.test_dbapi20.TestPgDb.test_callproc_bad_params) ... ok 211s test_callproc_no_params (tests.test_dbapi20.TestPgDb.test_callproc_no_params) ... ok 211s test_callproc_one_param (tests.test_dbapi20.TestPgDb.test_callproc_one_param) ... ok 211s test_callproc_two_params (tests.test_dbapi20.TestPgDb.test_callproc_two_params) ... ok 211s test_change_row_factory_cache_size (tests.test_dbapi20.TestPgDb.test_change_row_factory_cache_size) ... ok 211s test_close (tests.test_dbapi20.TestPgDb.test_close) ... ok 211s test_colnames (tests.test_dbapi20.TestPgDb.test_colnames) ... ok 211s test_coltypes (tests.test_dbapi20.TestPgDb.test_coltypes) ... ok 211s test_commit (tests.test_dbapi20.TestPgDb.test_commit) ... ok 211s test_connect (tests.test_dbapi20.TestPgDb.test_connect) ... ok 211s test_connect_kwargs (tests.test_dbapi20.TestPgDb.test_connect_kwargs) ... ok 211s test_connect_kwargs_with_special_chars (tests.test_dbapi20.TestPgDb.test_connect_kwargs_with_special_chars) ... ok 211s test_connection_as_contextmanager (tests.test_dbapi20.TestPgDb.test_connection_as_contextmanager) ... ok 211s test_connection_errors (tests.test_dbapi20.TestPgDb.test_connection_errors) ... ok 211s test_cursor (tests.test_dbapi20.TestPgDb.test_cursor) ... ok 211s test_cursor_as_contextmanager (tests.test_dbapi20.TestPgDb.test_cursor_as_contextmanager) ... ok 211s test_cursor_connection (tests.test_dbapi20.TestPgDb.test_cursor_connection) ... ok 211s test_cursor_invalidation (tests.test_dbapi20.TestPgDb.test_cursor_invalidation) ... ok 211s test_cursor_isolation (tests.test_dbapi20.TestPgDb.test_cursor_isolation) ... ok 211s test_cursor_iteration (tests.test_dbapi20.TestPgDb.test_cursor_iteration) ... ok 211s test_cursor_type (tests.test_dbapi20.TestPgDb.test_cursor_type) ... ok 211s test_cursor_with_badly_named_columns (tests.test_dbapi20.TestPgDb.test_cursor_with_badly_named_columns) ... ok 212s test_cursor_with_named_columns (tests.test_dbapi20.TestPgDb.test_cursor_with_named_columns) ... ok 212s test_cursor_with_unnamed_columns (tests.test_dbapi20.TestPgDb.test_cursor_with_unnamed_columns) ... ok 212s test_custom_type (tests.test_dbapi20.TestPgDb.test_custom_type) ... ok 212s test_cve_2018_1058 (tests.test_dbapi20.TestPgDb.test_cve_2018_1058) ... ok 212s test_date (tests.test_dbapi20.TestPgDb.test_date) ... ok 212s test_datetime (tests.test_dbapi20.TestPgDb.test_datetime) ... ok 212s test_datetime_type (tests.test_dbapi20.TestPgDb.test_datetime_type) ... ok 212s test_description (tests.test_dbapi20.TestPgDb.test_description) ... ok 212s test_description_fields (tests.test_dbapi20.TestPgDb.test_description_fields) ... ok 212s test_exceptions (tests.test_dbapi20.TestPgDb.test_exceptions) ... ok 212s test_exceptions_as_connection_attributes (tests.test_dbapi20.TestPgDb.test_exceptions_as_connection_attributes) ... ok 212s test_execute (tests.test_dbapi20.TestPgDb.test_execute) ... ok 212s test_execute_edge_cases (tests.test_dbapi20.TestPgDb.test_execute_edge_cases) ... ok 212s test_executemany (tests.test_dbapi20.TestPgDb.test_executemany) ... ok 212s test_fetch_2_rows (tests.test_dbapi20.TestPgDb.test_fetch_2_rows) ... ok 212s test_fetchall (tests.test_dbapi20.TestPgDb.test_fetchall) ... ok 212s test_fetchall_with_various_sizes (tests.test_dbapi20.TestPgDb.test_fetchall_with_various_sizes) ... ok 212s test_fetchmany (tests.test_dbapi20.TestPgDb.test_fetchmany) ... ok 212s test_fetchmany_with_keep (tests.test_dbapi20.TestPgDb.test_fetchmany_with_keep) ... ok 212s test_fetchone (tests.test_dbapi20.TestPgDb.test_fetchone) ... ok 212s test_float (tests.test_dbapi20.TestPgDb.test_float) ... ok 212s test_global_typecast (tests.test_dbapi20.TestPgDb.test_global_typecast) ... ok 212s test_hstore (tests.test_dbapi20.TestPgDb.test_hstore) ... ok 212s test_insert_array (tests.test_dbapi20.TestPgDb.test_insert_array) ... ok 212s test_insert_record (tests.test_dbapi20.TestPgDb.test_insert_record) ... ok 212s test_integrity_error (tests.test_dbapi20.TestPgDb.test_integrity_error) ... ok 212s test_interval (tests.test_dbapi20.TestPgDb.test_interval) ... ok 213s test_json (tests.test_dbapi20.TestPgDb.test_json) ... ok 213s test_jsonb (tests.test_dbapi20.TestPgDb.test_jsonb) ... ok 213s test_literal (tests.test_dbapi20.TestPgDb.test_literal) ... ok 213s test_memory_leaks (tests.test_dbapi20.TestPgDb.test_memory_leaks) ... ok 213s test_mixedfetch (tests.test_dbapi20.TestPgDb.test_mixedfetch) ... ok 213s test_next (tests.test_dbapi20.TestPgDb.test_next) 213s Test extension for getting the next row. ... ok 213s test_nextset (tests.test_dbapi20.TestPgDb.test_nextset) ... ok 213s test_no_close (tests.test_dbapi20.TestPgDb.test_no_close) ... ok 213s test_non_idempotent_close (tests.test_dbapi20.TestPgDb.test_non_idempotent_close) ... ok 213s test_none (tests.test_dbapi20.TestPgDb.test_none) ... ok 213s test_number_type (tests.test_dbapi20.TestPgDb.test_number_type) ... ok 213s test_paramstyle (tests.test_dbapi20.TestPgDb.test_paramstyle) ... ok 213s test_paramstyles (tests.test_dbapi20.TestPgDb.test_paramstyles) ... ok 213s test_percent_sign (tests.test_dbapi20.TestPgDb.test_percent_sign) ... ok 213s test_pgdb_type (tests.test_dbapi20.TestPgDb.test_pgdb_type) ... ok 213s test_rollback (tests.test_dbapi20.TestPgDb.test_rollback) ... ok 213s test_row_factory (tests.test_dbapi20.TestPgDb.test_row_factory) ... ok 213s test_rowcount (tests.test_dbapi20.TestPgDb.test_rowcount) ... ok 213s test_rowid_type (tests.test_dbapi20.TestPgDb.test_rowid_type) ... ok 213s test_select_array (tests.test_dbapi20.TestPgDb.test_select_array) ... ok 213s test_select_record (tests.test_dbapi20.TestPgDb.test_select_record) ... ok 213s test_set_decimal_type (tests.test_dbapi20.TestPgDb.test_set_decimal_type) ... ok 213s test_set_typecast_for_arrays (tests.test_dbapi20.TestPgDb.test_set_typecast_for_arrays) ... ok 213s test_setinputsizes (tests.test_dbapi20.TestPgDb.test_setinputsizes) ... ok 213s test_setoutputsize (tests.test_dbapi20.TestPgDb.test_setoutputsize) ... ok 213s test_setoutputsize_basic (tests.test_dbapi20.TestPgDb.test_setoutputsize_basic) ... ok 213s test_sqlstate (tests.test_dbapi20.TestPgDb.test_sqlstate) ... ok 213s test_string_type (tests.test_dbapi20.TestPgDb.test_string_type) ... ok 213s test_threadsafety (tests.test_dbapi20.TestPgDb.test_threadsafety) ... ok 213s test_time (tests.test_dbapi20.TestPgDb.test_time) ... ok 213s test_timestamp (tests.test_dbapi20.TestPgDb.test_timestamp) ... ok 214s test_transaction (tests.test_dbapi20.TestPgDb.test_transaction) ... ok 214s test_type_cache_info (tests.test_dbapi20.TestPgDb.test_type_cache_info) ... ok 214s test_type_cache_typecast (tests.test_dbapi20.TestPgDb.test_type_cache_typecast) ... ok 214s test_unicode_list_and_tuple (tests.test_dbapi20.TestPgDb.test_unicode_list_and_tuple) ... ok 214s test_unicode_with_latin1 (tests.test_dbapi20.TestPgDb.test_unicode_with_latin1) ... ok 214s test_unicode_with_utf8 (tests.test_dbapi20.TestPgDb.test_unicode_with_utf8) ... ok 214s test_update_rowcount (tests.test_dbapi20.TestPgDb.test_update_rowcount) ... ok 214s test_uuid (tests.test_dbapi20.TestPgDb.test_uuid) ... ok 214s test_version (tests.test_dbapi20.TestPgDb.test_version) ... ok 214s test_round_trip (tests.test_dbapi20_copy.TestBinary.test_round_trip) ... ok 214s test_bad_params (tests.test_dbapi20_copy.TestCopyFrom.test_bad_params) ... ok 214s test_binary (tests.test_dbapi20_copy.TestCopyFrom.test_binary) ... ok 214s test_binary_with_sep (tests.test_dbapi20_copy.TestCopyFrom.test_binary_with_sep) ... ok 214s test_binary_with_unicode (tests.test_dbapi20_copy.TestCopyFrom.test_binary_with_unicode) ... ok 214s test_columns (tests.test_dbapi20_copy.TestCopyFrom.test_columns) ... ok 214s test_csv (tests.test_dbapi20_copy.TestCopyFrom.test_csv) ... ok 214s test_csv_with_sep (tests.test_dbapi20_copy.TestCopyFrom.test_csv_with_sep) ... ok 214s test_file (tests.test_dbapi20_copy.TestCopyFrom.test_file) ... ok 214s test_input_bytes (tests.test_dbapi20_copy.TestCopyFrom.test_input_bytes) ... ok 214s test_input_iterable (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable) ... ok 214s test_input_iterable_bytes (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable_bytes) ... ok 214s test_input_iterable_invalid (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable_invalid) ... ok 214s test_input_iterable_with_newlines (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable_with_newlines) ... ok 214s test_input_string (tests.test_dbapi20_copy.TestCopyFrom.test_input_string) ... ok 214s test_input_string_multiple_rows (tests.test_dbapi20_copy.TestCopyFrom.test_input_string_multiple_rows) ... ok 214s test_input_string_with_newline (tests.test_dbapi20_copy.TestCopyFrom.test_input_string_with_newline) ... ok 214s test_input_string_with_schema_name (tests.test_dbapi20_copy.TestCopyFrom.test_input_string_with_schema_name) ... ok 214s test_null (tests.test_dbapi20_copy.TestCopyFrom.test_null) ... ok 214s test_query (tests.test_dbapi20_copy.TestCopyFrom.test_query) ... ok 214s test_sep (tests.test_dbapi20_copy.TestCopyFrom.test_sep) ... ok 214s test_size_invalid (tests.test_dbapi20_copy.TestCopyFrom.test_size_invalid) ... ok 214s test_size_negative (tests.test_dbapi20_copy.TestCopyFrom.test_size_negative) ... ok 214s test_size_positive (tests.test_dbapi20_copy.TestCopyFrom.test_size_positive) ... ok 214s test_bad_params (tests.test_dbapi20_copy.TestCopyTo.test_bad_params) ... ok 214s test_binary (tests.test_dbapi20_copy.TestCopyTo.test_binary) ... ok 214s test_binary_with_sep (tests.test_dbapi20_copy.TestCopyTo.test_binary_with_sep) ... ok 214s test_binary_with_unicode (tests.test_dbapi20_copy.TestCopyTo.test_binary_with_unicode) ... ok 214s test_columns (tests.test_dbapi20_copy.TestCopyTo.test_columns) ... ok 215s test_csv (tests.test_dbapi20_copy.TestCopyTo.test_csv) ... ok 215s test_csv_with_sep (tests.test_dbapi20_copy.TestCopyTo.test_csv_with_sep) ... ok 215s test_decode (tests.test_dbapi20_copy.TestCopyTo.test_decode) ... ok 215s test_file (tests.test_dbapi20_copy.TestCopyTo.test_file) ... ok 215s test_generator (tests.test_dbapi20_copy.TestCopyTo.test_generator) ... ok 215s test_generator_bytes (tests.test_dbapi20_copy.TestCopyTo.test_generator_bytes) ... ok 215s test_generator_with_schema_name (tests.test_dbapi20_copy.TestCopyTo.test_generator_with_schema_name) ... ok 215s test_null (tests.test_dbapi20_copy.TestCopyTo.test_null) ... ok 215s test_query (tests.test_dbapi20_copy.TestCopyTo.test_query) ... ok 215s test_rowcount_increment (tests.test_dbapi20_copy.TestCopyTo.test_rowcount_increment) ... ok 215s test_sep (tests.test_dbapi20_copy.TestCopyTo.test_sep) ... ok 215s test_input (tests.test_dbapi20_copy.TestStreams.test_input) ... ok 215s test_output (tests.test_dbapi20_copy.TestStreams.test_output) ... ok 215s test_all_steps (tests.test_tutorial.TestClassicTutorial.test_all_steps) ... ok 215s test_all_steps (tests.test_tutorial.TestDbApi20Tutorial.test_all_steps) ... ok 215s 215s ---------------------------------------------------------------------- 215s Ran 808 tests in 14.526s 215s 215s OK (skipped=18) 215s Dropping cluster 17/regress ... 215s ### End 17, python3.12 ### 215s ### PostgreSQL 17, python3.13 ### 215s Creating new PostgreSQL cluster 17/regress ... 218s test_context_manager (tests.test_classic.UtilityTest.test_context_manager) ... ok 218s test_get (tests.test_classic.UtilityTest.test_get) ... ok 218s test_insert (tests.test_classic.UtilityTest.test_insert) ... ok 218s test_invalid_name (tests.test_classic.UtilityTest.test_invalid_name) 218s Make sure that invalid table names are caught. ... ok 218s test_mixed_case (tests.test_classic.UtilityTest.test_mixed_case) ... ok 218s test_notify (tests.test_classic.UtilityTest.test_notify) ... ok 218s test_notify_other_options (tests.test_classic.UtilityTest.test_notify_other_options) ... ok 219s test_notify_timeout (tests.test_classic.UtilityTest.test_notify_timeout) ... ok 219s test_params (tests.test_classic.UtilityTest.test_params) ... ok 219s test_pkey (tests.test_classic.UtilityTest.test_pkey) ... ok 219s test_schema (tests.test_classic.UtilityTest.test_schema) 219s Check differentiation of same table name in different schemas. ... ok 219s test_sqlstate (tests.test_classic.UtilityTest.test_sqlstate) ... ok 219s test_update (tests.test_classic.UtilityTest.test_update) ... ok 219s test_del (tests.test_classic_attrdict.TestAttrDict.test_del) ... ok 219s test_get (tests.test_classic_attrdict.TestAttrDict.test_get) ... ok 219s test_init (tests.test_classic_attrdict.TestAttrDict.test_init) ... ok 219s test_items (tests.test_classic_attrdict.TestAttrDict.test_items) ... ok 219s test_iter (tests.test_classic_attrdict.TestAttrDict.test_iter) ... ok 219s test_keys (tests.test_classic_attrdict.TestAttrDict.test_keys) ... ok 219s test_set (tests.test_classic_attrdict.TestAttrDict.test_set) ... ok 219s test_values (tests.test_classic_attrdict.TestAttrDict.test_values) ... ok 219s test_write_methods (tests.test_classic_attrdict.TestAttrDict.test_write_methods) ... ok 219s test_can_connect (tests.test_classic_connection.TestCanConnect.test_can_connect) ... ok 219s test_can_connect_no_wait (tests.test_classic_connection.TestCanConnect.test_can_connect_no_wait) ... ok 219s test_change_row_factory_cache_size (tests.test_classic_connection.TestConfigFunctions.test_change_row_factory_cache_size) ... ok 219s test_get_bool (tests.test_classic_connection.TestConfigFunctions.test_get_bool) ... ok 219s test_get_byte_escaped (tests.test_classic_connection.TestConfigFunctions.test_get_byte_escaped) ... ok 219s test_get_decimal (tests.test_classic_connection.TestConfigFunctions.test_get_decimal) ... ok 219s test_get_decimal_point (tests.test_classic_connection.TestConfigFunctions.test_get_decimal_point) ... ok 219s test_set_bool (tests.test_classic_connection.TestConfigFunctions.test_set_bool) ... ok 219s test_set_bytea_escaped (tests.test_classic_connection.TestConfigFunctions.test_set_bytea_escaped) ... ok 219s test_set_decimal (tests.test_classic_connection.TestConfigFunctions.test_set_decimal) ... ok 219s test_set_decimal_point (tests.test_classic_connection.TestConfigFunctions.test_set_decimal_point) ... skipped 'cannot set German money locale' 219s test_all_connect_attributes (tests.test_classic_connection.TestConnectObject.test_all_connect_attributes) ... ok 219s test_all_connect_methods (tests.test_classic_connection.TestConnectObject.test_all_connect_methods) ... ok 219s test_all_query_members (tests.test_classic_connection.TestConnectObject.test_all_query_members) ... ok 219s test_attribute_backend_pid (tests.test_classic_connection.TestConnectObject.test_attribute_backend_pid) ... ok 219s test_attribute_db (tests.test_classic_connection.TestConnectObject.test_attribute_db) ... ok 219s test_attribute_error (tests.test_classic_connection.TestConnectObject.test_attribute_error) ... ok 219s test_attribute_host (tests.test_classic_connection.TestConnectObject.test_attribute_host) ... ok 219s test_attribute_options (tests.test_classic_connection.TestConnectObject.test_attribute_options) ... ok 219s test_attribute_port (tests.test_classic_connection.TestConnectObject.test_attribute_port) ... ok 219s test_attribute_protocol_version (tests.test_classic_connection.TestConnectObject.test_attribute_protocol_version) ... ok 219s test_attribute_server_version (tests.test_classic_connection.TestConnectObject.test_attribute_server_version) ... ok 219s test_attribute_socket (tests.test_classic_connection.TestConnectObject.test_attribute_socket) ... ok 219s test_attribute_status (tests.test_classic_connection.TestConnectObject.test_attribute_status) ... ok 219s test_attribute_user (tests.test_classic_connection.TestConnectObject.test_attribute_user) ... ok 219s test_cancel_long_running_thread (tests.test_classic_connection.TestConnectObject.test_cancel_long_running_thread) ... ok 219s test_class_name (tests.test_classic_connection.TestConnectObject.test_class_name) ... ok 219s test_method_cancel (tests.test_classic_connection.TestConnectObject.test_method_cancel) ... ok 219s test_method_close (tests.test_classic_connection.TestConnectObject.test_method_close) ... ok 219s test_method_endcopy (tests.test_classic_connection.TestConnectObject.test_method_endcopy) ... ok 219s test_method_file_no (tests.test_classic_connection.TestConnectObject.test_method_file_no) ... ok 219s test_method_parameter (tests.test_classic_connection.TestConnectObject.test_method_parameter) ... ok 219s test_method_query (tests.test_classic_connection.TestConnectObject.test_method_query) ... ok 219s test_method_query_empty (tests.test_classic_connection.TestConnectObject.test_method_query_empty) ... ok 219s test_method_reset (tests.test_classic_connection.TestConnectObject.test_method_reset) ... ok 219s test_method_send_query_empty (tests.test_classic_connection.TestConnectObject.test_method_send_query_empty) ... ok 219s test_method_send_query_multiple (tests.test_classic_connection.TestConnectObject.test_method_send_query_multiple) ... ok 219s test_method_send_query_single (tests.test_classic_connection.TestConnectObject.test_method_send_query_single) ... ok 219s test_method_transaction (tests.test_classic_connection.TestConnectObject.test_method_transaction) ... ok 219s test_module_name (tests.test_classic_connection.TestConnectObject.test_module_name) ... ok 219s test_repr (tests.test_classic_connection.TestConnectObject.test_repr) ... ok 220s test_str (tests.test_classic_connection.TestConnectObject.test_str) ... ok 220s test_getline (tests.test_classic_connection.TestDirectSocketAccess.test_getline) ... ok 220s test_getline_bytes_and_unicode (tests.test_classic_connection.TestDirectSocketAccess.test_getline_bytes_and_unicode) ... ok 220s test_parameter_checks (tests.test_classic_connection.TestDirectSocketAccess.test_parameter_checks) ... ok 220s test_putline (tests.test_classic_connection.TestDirectSocketAccess.test_putline) ... ok 220s test_putline_bytes_and_unicode (tests.test_classic_connection.TestDirectSocketAccess.test_putline_bytes_and_unicode) ... ok 220s test_insert_table_big_row_size (tests.test_classic_connection.TestInserttable.test_insert_table_big_row_size) ... ok 220s test_insert_table_small_int_overflow (tests.test_classic_connection.TestInserttable.test_insert_table_small_int_overflow) ... ok 220s test_inserttable1_row (tests.test_classic_connection.TestInserttable.test_inserttable1_row) ... ok 220s test_inserttable4_rows (tests.test_classic_connection.TestInserttable.test_inserttable4_rows) ... ok 220s test_inserttable_byte_values (tests.test_classic_connection.TestInserttable.test_inserttable_byte_values) ... ok 220s test_inserttable_from_dict_as_interable (tests.test_classic_connection.TestInserttable.test_inserttable_from_dict_as_interable) ... ok 220s test_inserttable_from_dict_keys (tests.test_classic_connection.TestInserttable.test_inserttable_from_dict_keys) ... ok 220s test_inserttable_from_dict_values (tests.test_classic_connection.TestInserttable.test_inserttable_from_dict_values) ... ok 220s test_inserttable_from_generator_of_tuples (tests.test_classic_connection.TestInserttable.test_inserttable_from_generator_of_tuples) ... ok 220s test_inserttable_from_list_of_sets (tests.test_classic_connection.TestInserttable.test_inserttable_from_list_of_sets) ... ok 220s test_inserttable_from_query (tests.test_classic_connection.TestInserttable.test_inserttable_from_query) ... ok 220s test_inserttable_from_setof_tuples (tests.test_classic_connection.TestInserttable.test_inserttable_from_setof_tuples) ... ok 220s test_inserttable_from_tuple_of_lists (tests.test_classic_connection.TestInserttable.test_inserttable_from_tuple_of_lists) ... ok 220s test_inserttable_max_values (tests.test_classic_connection.TestInserttable.test_inserttable_max_values) ... ok 220s test_inserttable_multiple_calls (tests.test_classic_connection.TestInserttable.test_inserttable_multiple_calls) ... ok 220s test_inserttable_multiple_rows (tests.test_classic_connection.TestInserttable.test_inserttable_multiple_rows) ... ok 220s test_inserttable_no_column (tests.test_classic_connection.TestInserttable.test_inserttable_no_column) ... ok 220s test_inserttable_no_encoding (tests.test_classic_connection.TestInserttable.test_inserttable_no_encoding) ... ok 220s test_inserttable_null_values (tests.test_classic_connection.TestInserttable.test_inserttable_null_values) ... ok 220s test_inserttable_only_one_column (tests.test_classic_connection.TestInserttable.test_inserttable_only_one_column) ... ok 220s test_inserttable_only_two_columns (tests.test_classic_connection.TestInserttable.test_inserttable_only_two_columns) ... ok 220s test_inserttable_special_chars (tests.test_classic_connection.TestInserttable.test_inserttable_special_chars) ... ok 220s test_inserttable_unicode_latin1 (tests.test_classic_connection.TestInserttable.test_inserttable_unicode_latin1) ... ok 220s test_inserttable_unicode_latin9 (tests.test_classic_connection.TestInserttable.test_inserttable_unicode_latin9) ... ok 220s test_inserttable_unicode_utf8 (tests.test_classic_connection.TestInserttable.test_inserttable_unicode_utf8) ... ok 220s test_inserttable_with_different_row_sizes (tests.test_classic_connection.TestInserttable.test_inserttable_with_different_row_sizes) ... ok 220s test_inserttable_with_dotted_table_name (tests.test_classic_connection.TestInserttable.test_inserttable_with_dotted_table_name) ... ok 220s test_inserttable_with_huge_list_of_column_names (tests.test_classic_connection.TestInserttable.test_inserttable_with_huge_list_of_column_names) ... ok 220s test_inserttable_with_invalid_colum_list (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_colum_list) ... ok 220s test_inserttable_with_invalid_column_name (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_column_name) ... ok 220s test_inserttable_with_invalid_data_type (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_data_type) ... ok 220s test_inserttable_with_invalid_table_name (tests.test_classic_connection.TestInserttable.test_inserttable_with_invalid_table_name) ... ok 220s test_inserttable_with_out_of_range_data (tests.test_classic_connection.TestInserttable.test_inserttable_with_out_of_range_data) ... ok 220s test_get_notice_receiver (tests.test_classic_connection.TestNotificatons.test_get_notice_receiver) ... ok 220s test_get_notify (tests.test_classic_connection.TestNotificatons.test_get_notify) ... ok 220s test_notice_receiver (tests.test_classic_connection.TestNotificatons.test_notice_receiver) ... ok 220s test_set_and_get_notice_receiver (tests.test_classic_connection.TestNotificatons.test_set_and_get_notice_receiver) ... ok 220s test_set_notice_receiver (tests.test_classic_connection.TestNotificatons.test_set_notice_receiver) ... ok 220s test_query_with_bool_params (tests.test_classic_connection.TestParamQueries.test_query_with_bool_params) ... ok 220s test_query_with_bool_params_not_default (tests.test_classic_connection.TestParamQueries.test_query_with_bool_params_not_default) ... ok 220s test_query_with_duplicate_params (tests.test_classic_connection.TestParamQueries.test_query_with_duplicate_params) ... ok 220s test_query_with_garbage (tests.test_classic_connection.TestParamQueries.test_query_with_garbage) ... ok 220s test_query_with_int_params (tests.test_classic_connection.TestParamQueries.test_query_with_int_params) ... ok 220s test_query_with_mixed_params (tests.test_classic_connection.TestParamQueries.test_query_with_mixed_params) ... ok 220s test_query_with_none_param (tests.test_classic_connection.TestParamQueries.test_query_with_none_param) ... ok 220s test_query_with_str_params (tests.test_classic_connection.TestParamQueries.test_query_with_str_params) ... ok 220s test_query_with_unicode_params (tests.test_classic_connection.TestParamQueries.test_query_with_unicode_params) ... ok 220s test_query_with_unicode_params_cyrillic (tests.test_classic_connection.TestParamQueries.test_query_with_unicode_params_cyrillic) ... ok 220s test_query_with_unicode_params_latin1 (tests.test_classic_connection.TestParamQueries.test_query_with_unicode_params_latin1) ... ok 220s test_query_with_zero_params (tests.test_classic_connection.TestParamQueries.test_query_with_zero_params) ... ok 220s test_describe_multiple_named_queries (tests.test_classic_connection.TestPreparedQueries.test_describe_multiple_named_queries) ... ok 220s test_describe_named_query (tests.test_classic_connection.TestPreparedQueries.test_describe_named_query) ... ok 220s test_describe_non_existent_query (tests.test_classic_connection.TestPreparedQueries.test_describe_non_existent_query) ... ok 220s test_describe_unnamed_query (tests.test_classic_connection.TestPreparedQueries.test_describe_unnamed_query) ... ok 220s test_duplicate_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_duplicate_prepared_statement) ... ok 220s test_empty_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_empty_prepared_statement) ... ok 220s test_invalid_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_invalid_prepared_statement) ... ok 220s test_multiple_named_queries_with_params (tests.test_classic_connection.TestPreparedQueries.test_multiple_named_queries_with_params) ... ok 220s test_multiple_named_queries_without_params (tests.test_classic_connection.TestPreparedQueries.test_multiple_named_queries_without_params) ... ok 220s test_named_query_without_params (tests.test_classic_connection.TestPreparedQueries.test_named_query_without_params) ... ok 220s test_non_existent_prepared_statement (tests.test_classic_connection.TestPreparedQueries.test_non_existent_prepared_statement) ... ok 220s test_unnamed_query_with_params (tests.test_classic_connection.TestPreparedQueries.test_unnamed_query_with_params) ... ok 220s test_unnamed_query_without_params (tests.test_classic_connection.TestPreparedQueries.test_unnamed_query_without_params) ... ok 220s test_contains (tests.test_classic_connection.TestQueryIterator.test_contains) ... ok 220s test_dict_contains (tests.test_classic_connection.TestQueryIterator.test_dict_contains) ... ok 220s test_dict_iterate (tests.test_classic_connection.TestQueryIterator.test_dict_iterate) ... ok 220s test_dict_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_dict_iterate_two_columns) ... ok 220s test_dict_next (tests.test_classic_connection.TestQueryIterator.test_dict_next) ... ok 220s test_get_item (tests.test_classic_connection.TestQueryIterator.test_get_item) ... ok 220s test_get_item_out_of_range (tests.test_classic_connection.TestQueryIterator.test_get_item_out_of_range) ... ok 220s test_get_item_with_negative_index (tests.test_classic_connection.TestQueryIterator.test_get_item_with_negative_index) ... ok 220s test_iterate (tests.test_classic_connection.TestQueryIterator.test_iterate) ... ok 220s test_iterate_twice (tests.test_classic_connection.TestQueryIterator.test_iterate_twice) ... ok 220s test_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_iterate_two_columns) ... ok 220s test_len (tests.test_classic_connection.TestQueryIterator.test_len) ... ok 221s test_named_contains (tests.test_classic_connection.TestQueryIterator.test_named_contains) ... ok 221s test_named_iterate (tests.test_classic_connection.TestQueryIterator.test_named_iterate) ... ok 221s test_named_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_named_iterate_two_columns) ... ok 221s test_named_next (tests.test_classic_connection.TestQueryIterator.test_named_next) ... ok 221s test_next (tests.test_classic_connection.TestQueryIterator.test_next) ... ok 221s test_scalar_contains (tests.test_classic_connection.TestQueryIterator.test_scalar_contains) ... ok 221s test_scalar_iterate (tests.test_classic_connection.TestQueryIterator.test_scalar_iterate) ... ok 221s test_scalar_iterate_two_columns (tests.test_classic_connection.TestQueryIterator.test_scalar_iterate_two_columns) ... ok 221s test_scalar_next (tests.test_classic_connection.TestQueryIterator.test_scalar_next) ... ok 221s test_one_dict_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_dict_with_empty_query) ... ok 221s test_one_dict_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_dict_with_single_row) ... ok 221s test_one_dict_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_dict_with_two_rows) ... ok 221s test_one_named_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_named_with_empty_query) ... ok 221s test_one_named_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_named_with_single_row) ... ok 221s test_one_named_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_named_with_two_rows) ... ok 221s test_one_scalar_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_scalar_with_empty_query) ... ok 221s test_one_scalar_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_scalar_with_single_row) ... ok 221s test_one_scalar_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_scalar_with_two_rows) ... ok 221s test_one_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_with_empty_query) ... ok 221s test_one_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_with_single_row) ... ok 221s test_one_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_one_with_two_rows) ... ok 221s test_scalar_iter (tests.test_classic_connection.TestQueryOneSingleScalar.test_scalar_iter) ... ok 221s test_scalar_result (tests.test_classic_connection.TestQueryOneSingleScalar.test_scalar_result) ... ok 221s test_single_dict_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_dict_with_empty_query) ... ok 221s test_single_dict_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_dict_with_single_row) ... ok 221s test_single_dict_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_dict_with_two_rows) ... ok 221s test_single_named_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_named_with_empty_query) ... ok 221s test_single_named_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_named_with_single_row) ... ok 221s test_single_named_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_named_with_two_rows) ... ok 221s test_single_scalar_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_scalar_with_empty_query) ... ok 221s test_single_scalar_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_scalar_with_single_row) ... ok 221s test_single_scalar_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_scalar_with_two_rows) ... ok 221s test_single_with_empty_query (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_with_empty_query) ... ok 221s test_single_with_single_row (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_with_single_row) ... ok 221s test_single_with_two_rows (tests.test_classic_connection.TestQueryOneSingleScalar.test_single_with_two_rows) ... ok 221s test_bool (tests.test_classic_connection.TestQueryResultTypes.test_bool) ... ok 221s test_bytea (tests.test_classic_connection.TestQueryResultTypes.test_bytea) ... ok 221s test_date (tests.test_classic_connection.TestQueryResultTypes.test_date) ... ok 221s test_float (tests.test_classic_connection.TestQueryResultTypes.test_float) ... ok 221s test_int (tests.test_classic_connection.TestQueryResultTypes.test_int) ... ok 221s test_json (tests.test_classic_connection.TestQueryResultTypes.test_json) ... ok 221s test_long (tests.test_classic_connection.TestQueryResultTypes.test_long) ... ok 221s test_money (tests.test_classic_connection.TestQueryResultTypes.test_money) ... ok 221s test_numeric (tests.test_classic_connection.TestQueryResultTypes.test_numeric) ... ok 221s test_text (tests.test_classic_connection.TestQueryResultTypes.test_text) ... ok 221s test_big_getresult (tests.test_classic_connection.TestSimpleQueries.test_big_getresult) ... ok 221s test_class_name (tests.test_classic_connection.TestSimpleQueries.test_class_name) ... ok 221s test_dictresult (tests.test_classic_connection.TestSimpleQueries.test_dictresult) ... ok 221s test_dictresult_async (tests.test_classic_connection.TestSimpleQueries.test_dictresult_async) ... ok 221s test_dictresult_decimal (tests.test_classic_connection.TestSimpleQueries.test_dictresult_decimal) ... ok 221s test_dictresult_long (tests.test_classic_connection.TestSimpleQueries.test_dictresult_long) ... ok 221s test_dictresult_names (tests.test_classic_connection.TestSimpleQueries.test_dictresult_names) ... ok 221s test_dictresult_string (tests.test_classic_connection.TestSimpleQueries.test_dictresult_string) ... ok 221s test_field_info_name (tests.test_classic_connection.TestSimpleQueries.test_field_info_name) ... ok 221s test_fieldname (tests.test_classic_connection.TestSimpleQueries.test_fieldname) ... ok 221s test_fieldnum (tests.test_classic_connection.TestSimpleQueries.test_fieldnum) ... ok 221s test_get3_cols (tests.test_classic_connection.TestSimpleQueries.test_get3_cols) ... ok 221s test_get3_dict_cols (tests.test_classic_connection.TestSimpleQueries.test_get3_dict_cols) ... ok 221s test_get3_dict_rows (tests.test_classic_connection.TestSimpleQueries.test_get3_dict_rows) ... ok 221s test_get3_named_cols (tests.test_classic_connection.TestSimpleQueries.test_get3_named_cols) ... ok 221s test_get3_named_rows (tests.test_classic_connection.TestSimpleQueries.test_get3_named_rows) ... ok 221s test_get3_rows (tests.test_classic_connection.TestSimpleQueries.test_get3_rows) ... ok 221s test_getresult (tests.test_classic_connection.TestSimpleQueries.test_getresult) ... ok 221s test_getresult_async (tests.test_classic_connection.TestSimpleQueries.test_getresult_async) ... ok 221s test_getresult_decimal (tests.test_classic_connection.TestSimpleQueries.test_getresult_decimal) ... ok 221s test_getresult_long (tests.test_classic_connection.TestSimpleQueries.test_getresult_long) ... ok 221s test_getresult_string (tests.test_classic_connection.TestSimpleQueries.test_getresult_string) ... ok 221s test_len (tests.test_classic_connection.TestSimpleQueries.test_len) ... ok 221s test_list_fields_after_second_get_result_async (tests.test_classic_connection.TestSimpleQueries.test_list_fields_after_second_get_result_async) ... ok 221s test_listfields (tests.test_classic_connection.TestSimpleQueries.test_listfields) ... ok 221s test_mem_size (tests.test_classic_connection.TestSimpleQueries.test_mem_size) ... ok 221s test_module_name (tests.test_classic_connection.TestSimpleQueries.test_module_name) ... ok 221s test_namedresult (tests.test_classic_connection.TestSimpleQueries.test_namedresult) ... ok 221s test_namedresult_async (tests.test_classic_connection.TestSimpleQueries.test_namedresult_async) ... ok 221s test_namedresult_names (tests.test_classic_connection.TestSimpleQueries.test_namedresult_names) ... ok 221s test_namedresult_with_bad_fieldnames (tests.test_classic_connection.TestSimpleQueries.test_namedresult_with_bad_fieldnames) ... ok 221s test_namedresult_with_good_fieldnames (tests.test_classic_connection.TestSimpleQueries.test_namedresult_with_good_fieldnames) ... ok 221s test_query (tests.test_classic_connection.TestSimpleQueries.test_query) ... ok 221s test_query_with_oids (tests.test_classic_connection.TestSimpleQueries.test_query_with_oids) ... skipped 'database does not support tables with oids' 221s test_repr (tests.test_classic_connection.TestSimpleQueries.test_repr) ... ok 221s test_select0 (tests.test_classic_connection.TestSimpleQueries.test_select0) ... ok 221s test_select0_semicolon (tests.test_classic_connection.TestSimpleQueries.test_select0_semicolon) ... ok 221s test_select_dot_semicolon (tests.test_classic_connection.TestSimpleQueries.test_select_dot_semicolon) ... ok 222s test_str (tests.test_classic_connection.TestSimpleQueries.test_str) ... ok 222s test_escape_bytea (tests.test_classic_connection.TestStandaloneEscapeFunctions.test_escape_bytea) ... ok 222s test_escape_string (tests.test_classic_connection.TestStandaloneEscapeFunctions.test_escape_string) ... ok 222s test_dictresul_ascii (tests.test_classic_connection.TestUnicodeQueries.test_dictresul_ascii) ... ok 222s test_dictresult_cyrillic (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_cyrillic) ... ok 222s test_dictresult_latin1 (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_latin1) ... ok 222s test_dictresult_latin9 (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_latin9) ... ok 222s test_dictresult_utf8 (tests.test_classic_connection.TestUnicodeQueries.test_dictresult_utf8) ... ok 222s test_getresul_ascii (tests.test_classic_connection.TestUnicodeQueries.test_getresul_ascii) ... ok 222s test_getresult_cyrillic (tests.test_classic_connection.TestUnicodeQueries.test_getresult_cyrillic) ... ok 222s test_getresult_latin1 (tests.test_classic_connection.TestUnicodeQueries.test_getresult_latin1) ... ok 222s test_getresult_latin9 (tests.test_classic_connection.TestUnicodeQueries.test_getresult_latin9) ... ok 222s test_getresult_utf8 (tests.test_classic_connection.TestUnicodeQueries.test_getresult_utf8) ... ok 222s test_array (tests.test_classic_dbwrapper.TestDBClass.test_array) ... ok 222s test_array_literal (tests.test_classic_dbwrapper.TestDBClass.test_array_literal) ... ok 222s test_array_of_bytea (tests.test_classic_dbwrapper.TestDBClass.test_array_of_bytea) ... ok 222s test_array_of_ids (tests.test_classic_dbwrapper.TestDBClass.test_array_of_ids) ... ok 222s test_array_of_json (tests.test_classic_dbwrapper.TestDBClass.test_array_of_json) ... ok 222s test_array_of_jsonb (tests.test_classic_dbwrapper.TestDBClass.test_array_of_jsonb) ... ok 222s test_array_of_text (tests.test_classic_dbwrapper.TestDBClass.test_array_of_text) ... ok 222s test_bytea (tests.test_classic_dbwrapper.TestDBClass.test_bytea) ... ok 222s test_class_name (tests.test_classic_dbwrapper.TestDBClass.test_class_name) ... ok 222s test_clear (tests.test_classic_dbwrapper.TestDBClass.test_clear) ... ok 222s test_clear_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_clear_with_quoted_names) ... ok 222s test_context_manager (tests.test_classic_dbwrapper.TestDBClass.test_context_manager) ... ok 222s test_create_table (tests.test_classic_dbwrapper.TestDBClass.test_create_table) ... ok 222s test_create_table_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_create_table_with_oids) ... skipped 'database does not support tables with oids' 222s test_date (tests.test_classic_dbwrapper.TestDBClass.test_date) ... ok 222s test_date_and_time_arrays (tests.test_classic_dbwrapper.TestDBClass.test_date_and_time_arrays) ... ok 222s test_db_types_info (tests.test_classic_dbwrapper.TestDBClass.test_db_types_info) ... ok 222s test_db_types_typecast (tests.test_classic_dbwrapper.TestDBClass.test_db_types_typecast) ... ok 222s test_decode_json (tests.test_classic_dbwrapper.TestDBClass.test_decode_json) ... ok 222s test_deep_array (tests.test_classic_dbwrapper.TestDBClass.test_deep_array) ... ok 222s test_delete (tests.test_classic_dbwrapper.TestDBClass.test_delete) ... ok 222s test_delete_prepared (tests.test_classic_dbwrapper.TestDBClass.test_delete_prepared) ... ok 222s test_delete_referenced (tests.test_classic_dbwrapper.TestDBClass.test_delete_referenced) ... ok 222s test_delete_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_delete_with_composite_key) ... ok 222s test_delete_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_delete_with_oids) ... skipped 'database does not support tables with oids' 222s test_delete_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_delete_with_quoted_names) ... ok 222s test_describe_prepared (tests.test_classic_dbwrapper.TestDBClass.test_describe_prepared) ... ok 222s test_describe_prepared_unnamed (tests.test_classic_dbwrapper.TestDBClass.test_describe_prepared_unnamed) ... ok 222s test_empty_query (tests.test_classic_dbwrapper.TestDBClass.test_empty_query) ... ok 222s test_encode_json (tests.test_classic_dbwrapper.TestDBClass.test_encode_json) ... ok 222s test_escape_bytea (tests.test_classic_dbwrapper.TestDBClass.test_escape_bytea) ... ok 222s test_escape_identifier (tests.test_classic_dbwrapper.TestDBClass.test_escape_identifier) ... ok 222s test_escape_literal (tests.test_classic_dbwrapper.TestDBClass.test_escape_literal) ... ok 222s test_escape_string (tests.test_classic_dbwrapper.TestDBClass.test_escape_string) ... ok 222s test_get (tests.test_classic_dbwrapper.TestDBClass.test_get) ... ok 222s test_get_as_dict (tests.test_classic_dbwrapper.TestDBClass.test_get_as_dict) ... ok 222s test_get_as_list (tests.test_classic_dbwrapper.TestDBClass.test_get_as_list) ... ok 222s test_get_attnames (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames) ... ok 222s test_get_attnames_is_attr_dict (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_is_attr_dict) ... ok 222s test_get_attnames_is_cached (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_is_cached) ... ok 222s test_get_attnames_is_ordered (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_is_ordered) ... ok 222s test_get_attnames_with_quotes (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_with_quotes) ... ok 222s test_get_attnames_with_regtypes (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_with_regtypes) ... ok 222s test_get_attnames_without_regtypes (tests.test_classic_dbwrapper.TestDBClass.test_get_attnames_without_regtypes) ... ok 222s test_get_databases (tests.test_classic_dbwrapper.TestDBClass.test_get_databases) ... ok 222s test_get_from_view (tests.test_classic_dbwrapper.TestDBClass.test_get_from_view) ... ok 222s test_get_generated (tests.test_classic_dbwrapper.TestDBClass.test_get_generated) ... ok 222s test_get_generated_is_cached (tests.test_classic_dbwrapper.TestDBClass.test_get_generated_is_cached) ... ok 222s test_get_little_bobby_tables (tests.test_classic_dbwrapper.TestDBClass.test_get_little_bobby_tables) ... ok 222s test_get_parameter (tests.test_classic_dbwrapper.TestDBClass.test_get_parameter) ... ok 222s test_get_parameter_all (tests.test_classic_dbwrapper.TestDBClass.test_get_parameter_all) ... ok 222s test_get_parameter_server_version (tests.test_classic_dbwrapper.TestDBClass.test_get_parameter_server_version) ... ok 222s test_get_relations (tests.test_classic_dbwrapper.TestDBClass.test_get_relations) ... ok 222s test_get_set_type_cast (tests.test_classic_dbwrapper.TestDBClass.test_get_set_type_cast) ... ok 222s test_get_system_relations (tests.test_classic_dbwrapper.TestDBClass.test_get_system_relations) ... ok 222s test_get_system_tables (tests.test_classic_dbwrapper.TestDBClass.test_get_system_tables) ... ok 222s test_get_tables (tests.test_classic_dbwrapper.TestDBClass.test_get_tables) ... ok 222s test_get_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_get_with_composite_key) ... ok 222s test_get_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_get_with_oids) ... skipped 'database does not support tables with oids' 223s test_get_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_get_with_quoted_names) ... ok 223s test_has_table_privilege (tests.test_classic_dbwrapper.TestDBClass.test_has_table_privilege) ... skipped 'must not be superuser' 223s test_hstore (tests.test_classic_dbwrapper.TestDBClass.test_hstore) ... ok 223s test_insert (tests.test_classic_dbwrapper.TestDBClass.test_insert) ... ok 223s test_insert_get_json (tests.test_classic_dbwrapper.TestDBClass.test_insert_get_json) ... ok 223s test_insert_get_jsonb (tests.test_classic_dbwrapper.TestDBClass.test_insert_get_jsonb) ... ok 223s test_insert_into_view (tests.test_classic_dbwrapper.TestDBClass.test_insert_into_view) ... ok 223s test_insert_update_get_bytea (tests.test_classic_dbwrapper.TestDBClass.test_insert_update_get_bytea) ... ok 223s test_insert_update_get_record (tests.test_classic_dbwrapper.TestDBClass.test_insert_update_get_record) ... ok 223s test_insert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClass.test_insert_with_generated_columns) ... ok 223s test_insert_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_insert_with_oids) ... skipped 'database does not support tables with oids' 223s test_insert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_insert_with_quoted_names) ... ok 223s test_inserttable_from_query (tests.test_classic_dbwrapper.TestDBClass.test_inserttable_from_query) ... ok 223s test_interval (tests.test_classic_dbwrapper.TestDBClass.test_interval) ... ok 223s test_module_name (tests.test_classic_dbwrapper.TestDBClass.test_module_name) ... ok 223s test_multiple_queries (tests.test_classic_dbwrapper.TestDBClass.test_multiple_queries) ... ok 223s test_notification_handler (tests.test_classic_dbwrapper.TestDBClass.test_notification_handler) ... ok 223s test_pkey (tests.test_classic_dbwrapper.TestDBClass.test_pkey) ... ok 223s test_pkeys (tests.test_classic_dbwrapper.TestDBClass.test_pkeys) ... ok 223s test_prepare (tests.test_classic_dbwrapper.TestDBClass.test_prepare) ... ok 223s test_prepare_unnamed (tests.test_classic_dbwrapper.TestDBClass.test_prepare_unnamed) ... ok 223s test_query (tests.test_classic_dbwrapper.TestDBClass.test_query) ... ok 223s test_query_data_error (tests.test_classic_dbwrapper.TestDBClass.test_query_data_error) ... ok 223s test_query_formatted (tests.test_classic_dbwrapper.TestDBClass.test_query_formatted) ... ok 223s test_query_formatted_with_any (tests.test_classic_dbwrapper.TestDBClass.test_query_formatted_with_any) ... ok 223s test_query_formatted_without_params (tests.test_classic_dbwrapper.TestDBClass.test_query_formatted_without_params) ... ok 223s test_query_prepared_unnamed_with_out_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_unnamed_with_out_params) ... ok 223s test_query_prepared_unnamed_with_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_unnamed_with_params) ... ok 223s test_query_prepared_with_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_with_params) ... ok 223s test_query_prepared_without_params (tests.test_classic_dbwrapper.TestDBClass.test_query_prepared_without_params) ... ok 223s test_query_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_query_with_oids) ... skipped 'database does not support tables with oids' 223s test_query_with_params (tests.test_classic_dbwrapper.TestDBClass.test_query_with_params) ... ok 223s test_record_insert_bytea (tests.test_classic_dbwrapper.TestDBClass.test_record_insert_bytea) ... ok 223s test_record_insert_json (tests.test_classic_dbwrapper.TestDBClass.test_record_insert_json) ... ok 223s test_record_literal (tests.test_classic_dbwrapper.TestDBClass.test_record_literal) ... ok 223s test_reopen (tests.test_classic_dbwrapper.TestDBClass.test_reopen) ... ok 223s test_reset (tests.test_classic_dbwrapper.TestDBClass.test_reset) ... ok 223s test_reset_parameter (tests.test_classic_dbwrapper.TestDBClass.test_reset_parameter) ... ok 223s test_reset_parameter_all (tests.test_classic_dbwrapper.TestDBClass.test_reset_parameter_all) ... ok 223s test_set_parameter (tests.test_classic_dbwrapper.TestDBClass.test_set_parameter) ... ok 223s test_set_parameter_local (tests.test_classic_dbwrapper.TestDBClass.test_set_parameter_local) ... ok 223s test_set_parameter_session (tests.test_classic_dbwrapper.TestDBClass.test_set_parameter_session) ... ok 223s test_temp_crud (tests.test_classic_dbwrapper.TestDBClass.test_temp_crud) ... ok 223s test_time (tests.test_classic_dbwrapper.TestDBClass.test_time) ... ok 223s test_timestamp (tests.test_classic_dbwrapper.TestDBClass.test_timestamp) ... ok 223s test_timestamptz (tests.test_classic_dbwrapper.TestDBClass.test_timestamptz) ... ok 223s test_timetz (tests.test_classic_dbwrapper.TestDBClass.test_timetz) ... ok 223s test_transaction (tests.test_classic_dbwrapper.TestDBClass.test_transaction) ... ok 223s test_transaction_aliases (tests.test_classic_dbwrapper.TestDBClass.test_transaction_aliases) ... ok 223s test_truncate (tests.test_classic_dbwrapper.TestDBClass.test_truncate) ... ok 223s test_truncate_cascade (tests.test_classic_dbwrapper.TestDBClass.test_truncate_cascade) ... ok 223s test_truncate_only (tests.test_classic_dbwrapper.TestDBClass.test_truncate_only) ... ok 223s test_truncate_quoted (tests.test_classic_dbwrapper.TestDBClass.test_truncate_quoted) ... ok 223s test_truncate_restart (tests.test_classic_dbwrapper.TestDBClass.test_truncate_restart) ... ok 223s test_unescape_bytea (tests.test_classic_dbwrapper.TestDBClass.test_unescape_bytea) ... ok 223s test_update (tests.test_classic_dbwrapper.TestDBClass.test_update) ... ok 223s test_update_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_update_with_composite_key) ... ok 223s test_update_with_generated_columns (tests.test_classic_dbwrapper.TestDBClass.test_update_with_generated_columns) ... ok 223s test_update_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_update_with_oids) ... skipped 'database does not support tables with oids' 223s test_update_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_update_with_quoted_names) ... ok 224s test_update_without_oid (tests.test_classic_dbwrapper.TestDBClass.test_update_without_oid) ... ok 224s test_upsert (tests.test_classic_dbwrapper.TestDBClass.test_upsert) ... ok 224s test_upsert_bytea (tests.test_classic_dbwrapper.TestDBClass.test_upsert_bytea) ... ok 224s test_upsert_with_composite_key (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_composite_key) ... ok 224s test_upsert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_generated_columns) ... ok 224s test_upsert_with_oids (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_oids) ... skipped 'database does not support tables with oids' 224s test_upsert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClass.test_upsert_with_quoted_names) ... ok 224s test_uuid (tests.test_classic_dbwrapper.TestDBClass.test_uuid) ... ok 224s test_adapt_query_inline_dict (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_dict) ... ok 224s test_adapt_query_inline_list (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_list) ... ok 224s test_adapt_query_inline_list_with_hstore (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_list_with_hstore) ... ok 224s test_adapt_query_inline_list_with_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_inline_list_with_json) ... ok 224s test_adapt_query_typed_dict (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_dict) ... ok 224s test_adapt_query_typed_list (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list) ... ok 224s test_adapt_query_typed_list_with_empty_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_empty_json) ... ok 224s test_adapt_query_typed_list_with_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_json) ... ok 224s test_adapt_query_typed_list_with_types_as_classes (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_types_as_classes) ... ok 224s test_adapt_query_typed_list_with_types_as_string (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_list_with_types_as_string) ... ok 224s test_adapt_query_typed_with_hstore (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_with_hstore) ... ok 224s test_adapt_query_typed_with_uuid (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_typed_with_uuid) ... ok 224s test_adapt_query_untyped_dict (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_dict) ... ok 224s test_adapt_query_untyped_list (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_list) ... ok 224s test_adapt_query_untyped_list_with_json (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_list_with_json) ... ok 224s test_adapt_query_untyped_with_hstore (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_untyped_with_hstore) ... ok 224s test_adapt_query_with_pg_repr (tests.test_classic_dbwrapper.TestDBClassAdapter.test_adapt_query_with_pg_repr) ... ok 224s test_guess_simple_type (tests.test_classic_dbwrapper.TestDBClassAdapter.test_guess_simple_type) ... ok 224s test_all_db_attributes (tests.test_classic_dbwrapper.TestDBClassBasic.test_all_db_attributes) ... ok 224s test_attribute_backend_pid (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_backend_pid) ... ok 224s test_attribute_db (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_db) ... ok 224s test_attribute_dbname (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_dbname) ... ok 224s test_attribute_error (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_error) ... ok 224s test_attribute_host (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_host) ... ok 224s test_attribute_options (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_options) ... ok 224s test_attribute_port (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_port) ... ok 224s test_attribute_protocol_version (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_protocol_version) ... ok 224s test_attribute_server_version (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_server_version) ... ok 224s test_attribute_socket (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_socket) ... ok 224s test_attribute_status (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_status) ... ok 224s test_attribute_user (tests.test_classic_dbwrapper.TestDBClassBasic.test_attribute_user) ... ok 224s test_existing_connection (tests.test_classic_dbwrapper.TestDBClassBasic.test_existing_connection) ... ok 224s test_existing_db_api2_connection (tests.test_classic_dbwrapper.TestDBClassBasic.test_existing_db_api2_connection) ... ok 224s test_method_close (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_close) ... ok 224s test_method_decode_json (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_decode_json) ... ok 224s test_method_encode_json (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_encode_json) ... ok 224s test_method_endcopy (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_endcopy) ... ok 224s test_method_escape_bytea (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_bytea) ... ok 224s test_method_escape_identifier (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_identifier) ... ok 224s test_method_escape_literal (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_literal) ... ok 224s test_method_escape_string (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_escape_string) ... ok 224s test_method_query (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_query) ... ok 224s test_method_query_data_error (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_query_data_error) ... ok 224s test_method_query_empty (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_query_empty) ... ok 224s test_method_reopen (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_reopen) ... ok 224s test_method_reset (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_reset) ... ok 224s test_method_unescape_bytea (tests.test_classic_dbwrapper.TestDBClassBasic.test_method_unescape_bytea) ... ok 224s test_async_query_after_deletion (tests.test_classic_dbwrapper.TestDBClassInit.test_async_query_after_deletion) ... ok 224s test_async_query_before_deletion (tests.test_classic_dbwrapper.TestDBClassInit.test_async_query_before_deletion) ... ok 224s test_bad_params (tests.test_classic_dbwrapper.TestDBClassInit.test_bad_params) ... ok 224s test_delete_db (tests.test_classic_dbwrapper.TestDBClassInit.test_delete_db) ... ok 224s test_array (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array) ... ok 224s test_array_literal (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_literal) ... ok 224s test_array_of_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_bytea) ... ok 224s test_array_of_ids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_ids) ... ok 224s test_array_of_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_json) ... ok 224s test_array_of_jsonb (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_jsonb) ... ok 224s test_array_of_text (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_array_of_text) ... ok 224s test_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_bytea) ... ok 224s test_class_name (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_class_name) ... ok 224s test_clear (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_clear) ... ok 224s test_clear_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_clear_with_quoted_names) ... ok 224s test_context_manager (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_context_manager) ... ok 224s test_create_table (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_create_table) ... ok 224s test_create_table_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_create_table_with_oids) ... skipped 'database does not support tables with oids' 224s test_date (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_date) ... ok 224s test_date_and_time_arrays (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_date_and_time_arrays) ... ok 224s test_db_types_info (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_db_types_info) ... ok 225s test_db_types_typecast (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_db_types_typecast) ... ok 225s test_decode_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_decode_json) ... ok 225s test_deep_array (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_deep_array) ... ok 225s test_delete (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete) ... ok 225s test_delete_prepared (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_prepared) ... ok 225s test_delete_referenced (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_referenced) ... ok 225s test_delete_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_with_composite_key) ... ok 225s test_delete_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_with_oids) ... skipped 'database does not support tables with oids' 225s test_delete_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_delete_with_quoted_names) ... ok 225s test_describe_prepared (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_describe_prepared) ... ok 225s test_describe_prepared_unnamed (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_describe_prepared_unnamed) ... ok 225s test_empty_query (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_empty_query) ... ok 225s test_encode_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_encode_json) ... ok 225s test_escape_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_bytea) ... ok 225s test_escape_identifier (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_identifier) ... ok 225s test_escape_literal (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_literal) ... ok 225s test_escape_string (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_escape_string) ... ok 225s test_get (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get) ... ok 225s test_get_as_dict (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_as_dict) ... ok 225s test_get_as_list (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_as_list) ... ok 225s test_get_attnames (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames) ... ok 225s test_get_attnames_is_attr_dict (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_is_attr_dict) ... ok 225s test_get_attnames_is_cached (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_is_cached) ... ok 225s test_get_attnames_is_ordered (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_is_ordered) ... ok 225s test_get_attnames_with_quotes (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_with_quotes) ... ok 225s test_get_attnames_with_regtypes (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_with_regtypes) ... ok 225s test_get_attnames_without_regtypes (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_attnames_without_regtypes) ... ok 225s test_get_databases (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_databases) ... ok 225s test_get_from_view (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_from_view) ... ok 225s test_get_generated (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_generated) ... ok 225s test_get_generated_is_cached (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_generated_is_cached) ... ok 225s test_get_little_bobby_tables (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_little_bobby_tables) ... ok 225s test_get_parameter (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_parameter) ... ok 225s test_get_parameter_all (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_parameter_all) ... ok 225s test_get_parameter_server_version (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_parameter_server_version) ... ok 225s test_get_relations (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_relations) ... ok 225s test_get_set_type_cast (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_set_type_cast) ... ok 225s test_get_system_relations (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_system_relations) ... ok 225s test_get_system_tables (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_system_tables) ... ok 225s test_get_tables (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_tables) ... ok 225s test_get_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_with_composite_key) ... ok 225s test_get_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_with_oids) ... skipped 'database does not support tables with oids' 225s test_get_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_get_with_quoted_names) ... ok 225s test_has_table_privilege (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_has_table_privilege) ... skipped 'must not be superuser' 225s test_hstore (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_hstore) ... ok 225s test_insert (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert) ... ok 225s test_insert_get_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_get_json) ... ok 225s test_insert_get_jsonb (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_get_jsonb) ... ok 225s test_insert_into_view (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_into_view) ... ok 225s test_insert_update_get_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_update_get_bytea) ... ok 225s test_insert_update_get_record (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_update_get_record) ... ok 225s test_insert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_with_generated_columns) ... ok 225s test_insert_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_with_oids) ... skipped 'database does not support tables with oids' 225s test_insert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_insert_with_quoted_names) ... ok 225s test_inserttable_from_query (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_inserttable_from_query) ... ok 225s test_interval (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_interval) ... ok 225s test_module_name (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_module_name) ... ok 225s test_multiple_queries (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_multiple_queries) ... ok 225s test_notification_handler (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_notification_handler) ... ok 225s test_pkey (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_pkey) ... ok 225s test_pkeys (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_pkeys) ... ok 225s test_prepare (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_prepare) ... ok 225s test_prepare_unnamed (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_prepare_unnamed) ... ok 225s test_query (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query) ... ok 225s test_query_data_error (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_data_error) ... ok 226s test_query_formatted (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_formatted) ... ok 226s test_query_formatted_with_any (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_formatted_with_any) ... ok 226s test_query_formatted_without_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_formatted_without_params) ... ok 226s test_query_prepared_unnamed_with_out_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_unnamed_with_out_params) ... ok 226s test_query_prepared_unnamed_with_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_unnamed_with_params) ... ok 226s test_query_prepared_with_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_with_params) ... ok 226s test_query_prepared_without_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_prepared_without_params) ... ok 226s test_query_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_with_oids) ... skipped 'database does not support tables with oids' 226s test_query_with_params (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_query_with_params) ... ok 226s test_record_insert_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_record_insert_bytea) ... ok 226s test_record_insert_json (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_record_insert_json) ... ok 226s test_record_literal (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_record_literal) ... ok 226s test_reopen (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reopen) ... ok 226s test_reset (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reset) ... ok 226s test_reset_parameter (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reset_parameter) ... ok 226s test_reset_parameter_all (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_reset_parameter_all) ... ok 226s test_set_parameter (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_set_parameter) ... ok 226s test_set_parameter_local (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_set_parameter_local) ... ok 226s test_set_parameter_session (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_set_parameter_session) ... ok 226s test_temp_crud (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_temp_crud) ... ok 226s test_time (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_time) ... ok 226s test_timestamp (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_timestamp) ... ok 226s test_timestamptz (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_timestamptz) ... ok 226s test_timetz (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_timetz) ... ok 226s test_transaction (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_transaction) ... ok 226s test_transaction_aliases (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_transaction_aliases) ... ok 226s test_truncate (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate) ... ok 226s test_truncate_cascade (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_cascade) ... ok 226s test_truncate_only (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_only) ... ok 226s test_truncate_quoted (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_quoted) ... ok 226s test_truncate_restart (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_truncate_restart) ... ok 226s test_unescape_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_unescape_bytea) ... ok 226s test_update (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update) ... ok 226s test_update_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_composite_key) ... ok 226s test_update_with_generated_columns (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_generated_columns) ... ok 226s test_update_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_oids) ... skipped 'database does not support tables with oids' 226s test_update_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_with_quoted_names) ... ok 226s test_update_without_oid (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_update_without_oid) ... ok 226s test_upsert (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert) ... ok 226s test_upsert_bytea (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_bytea) ... ok 226s test_upsert_with_composite_key (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_composite_key) ... ok 226s test_upsert_with_generated_columns (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_generated_columns) ... ok 226s test_upsert_with_oids (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_oids) ... skipped 'database does not support tables with oids' 226s test_upsert_with_quoted_names (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_upsert_with_quoted_names) ... ok 226s test_uuid (tests.test_classic_dbwrapper.TestDBClassNonStdOpts.test_uuid) ... ok 226s test_debug_default (tests.test_classic_dbwrapper.TestDebug.test_debug_default) ... ok 226s test_debug_is_callable (tests.test_classic_dbwrapper.TestDebug.test_debug_is_callable) ... ok 226s test_debug_is_false (tests.test_classic_dbwrapper.TestDebug.test_debug_is_false) ... ok 226s test_debug_is_file_like (tests.test_classic_dbwrapper.TestDebug.test_debug_is_file_like) ... ok 226s test_debug_is_string (tests.test_classic_dbwrapper.TestDebug.test_debug_is_string) ... ok 226s test_debug_is_true (tests.test_classic_dbwrapper.TestDebug.test_debug_is_true) ... ok 226s test_debug_multiple_args (tests.test_classic_dbwrapper.TestDebug.test_debug_multiple_args) ... ok 226s test_leaks_with_close (tests.test_classic_dbwrapper.TestMemoryLeaks.test_leaks_with_close) ... ok 226s test_leaks_without_close (tests.test_classic_dbwrapper.TestMemoryLeaks.test_leaks_without_close) ... ok 226s test_get (tests.test_classic_dbwrapper.TestSchemas.test_get) ... ok 226s test_get_attnames (tests.test_classic_dbwrapper.TestSchemas.test_get_attnames) ... ok 226s test_get_tables (tests.test_classic_dbwrapper.TestSchemas.test_get_tables) ... ok 226s test_munging (tests.test_classic_dbwrapper.TestSchemas.test_munging) ... ok 226s test_query_information_schema (tests.test_classic_dbwrapper.TestSchemas.test_query_information_schema) ... ok 226s test_cast_interval (tests.test_classic_functions.TestCastInterval.test_cast_interval) ... ok 226s test_get_bool (tests.test_classic_functions.TestConfigFunctions.test_get_bool) ... ok 226s test_get_bytea_escaped (tests.test_classic_functions.TestConfigFunctions.test_get_bytea_escaped) ... ok 226s test_get_datestyle (tests.test_classic_functions.TestConfigFunctions.test_get_datestyle) ... ok 226s test_get_decimal (tests.test_classic_functions.TestConfigFunctions.test_get_decimal) ... ok 226s test_get_decimal_point (tests.test_classic_functions.TestConfigFunctions.test_get_decimal_point) ... ok 226s test_get_jsondecode (tests.test_classic_functions.TestConfigFunctions.test_get_jsondecode) ... ok 226s test_set_bool (tests.test_classic_functions.TestConfigFunctions.test_set_bool) ... ok 226s test_set_bytea_escaped (tests.test_classic_functions.TestConfigFunctions.test_set_bytea_escaped) ... ok 226s test_set_datestyle (tests.test_classic_functions.TestConfigFunctions.test_set_datestyle) ... ok 226s test_set_decimal (tests.test_classic_functions.TestConfigFunctions.test_set_decimal) ... ok 226s test_set_decimal_point (tests.test_classic_functions.TestConfigFunctions.test_set_decimal_point) ... ok 226s test_set_jsondecode (tests.test_classic_functions.TestConfigFunctions.test_set_jsondecode) ... ok 226s test_escape_bytea (tests.test_classic_functions.TestEscapeFunctions.test_escape_bytea) ... ok 226s test_escape_string (tests.test_classic_functions.TestEscapeFunctions.test_escape_string) ... ok 226s test_unescape_bytea (tests.test_classic_functions.TestEscapeFunctions.test_unescape_bytea) ... ok 226s test_def_base (tests.test_classic_functions.TestHasConnect.test_def_base) ... ok 226s test_def_host (tests.test_classic_functions.TestHasConnect.test_def_host) ... ok 226s test_def_opt (tests.test_classic_functions.TestHasConnect.test_def_opt) ... ok 226s test_def_port (tests.test_classic_functions.TestHasConnect.test_def_port) ... ok 226s test_has_connect (tests.test_classic_functions.TestHasConnect.test_has_connect) ... ok 226s test_has_connection_type (tests.test_classic_functions.TestHasConnect.test_has_connection_type) ... ok 226s test_has_escape_bytea (tests.test_classic_functions.TestHasConnect.test_has_escape_bytea) ... ok 226s test_has_escape_string (tests.test_classic_functions.TestHasConnect.test_has_escape_string) ... ok 226s test_has_pg_data_error (tests.test_classic_functions.TestHasConnect.test_has_pg_data_error) ... ok 226s test_has_pg_database_error (tests.test_classic_functions.TestHasConnect.test_has_pg_database_error) ... ok 226s test_has_pg_error (tests.test_classic_functions.TestHasConnect.test_has_pg_error) ... ok 226s test_has_pg_integrity_error (tests.test_classic_functions.TestHasConnect.test_has_pg_integrity_error) ... ok 226s test_has_pg_interface_error (tests.test_classic_functions.TestHasConnect.test_has_pg_interface_error) ... ok 226s test_has_pg_internal_error (tests.test_classic_functions.TestHasConnect.test_has_pg_internal_error) ... ok 226s test_has_pg_invalid_result_error (tests.test_classic_functions.TestHasConnect.test_has_pg_invalid_result_error) ... ok 226s test_has_pg_multiple_results_error (tests.test_classic_functions.TestHasConnect.test_has_pg_multiple_results_error) ... ok 226s test_has_pg_no_result_error (tests.test_classic_functions.TestHasConnect.test_has_pg_no_result_error) ... ok 226s test_has_pg_not_supported_error (tests.test_classic_functions.TestHasConnect.test_has_pg_not_supported_error) ... ok 226s test_has_pg_operational_error (tests.test_classic_functions.TestHasConnect.test_has_pg_operational_error) ... ok 226s test_has_pg_programming_error (tests.test_classic_functions.TestHasConnect.test_has_pg_programming_error) ... ok 226s test_has_pg_warning (tests.test_classic_functions.TestHasConnect.test_has_pg_warning) ... ok 226s test_has_query_type (tests.test_classic_functions.TestHasConnect.test_has_query_type) ... ok 226s test_has_unescape_bytea (tests.test_classic_functions.TestHasConnect.test_has_unescape_bytea) ... ok 226s test_pqlib_version (tests.test_classic_functions.TestHasConnect.test_pqlib_version) ... ok 226s test_version (tests.test_classic_functions.TestModuleConstants.test_version) ... ok 226s test_parser_cast (tests.test_classic_functions.TestParseArray.test_parser_cast) ... ok 226s test_parser_delim (tests.test_classic_functions.TestParseArray.test_parser_delim) ... ok 226s test_parser_nested (tests.test_classic_functions.TestParseArray.test_parser_nested) ... ok 226s test_parser_params (tests.test_classic_functions.TestParseArray.test_parser_params) ... ok 226s test_parser_simple (tests.test_classic_functions.TestParseArray.test_parser_simple) ... ok 226s test_parser_too_deeply_nested (tests.test_classic_functions.TestParseArray.test_parser_too_deeply_nested) ... ok 226s test_parser_with_data (tests.test_classic_functions.TestParseArray.test_parser_with_data) ... ok 226s test_parser_with_different_delimiter (tests.test_classic_functions.TestParseArray.test_parser_with_different_delimiter) ... ok 226s test_parser_without_cast (tests.test_classic_functions.TestParseArray.test_parser_without_cast) ... ok 226s test_parser (tests.test_classic_functions.TestParseHStore.test_parser) ... ok 226s test_parser_cast_non_uniform (tests.test_classic_functions.TestParseRecord.test_parser_cast_non_uniform) ... ok 226s test_parser_cast_uniform (tests.test_classic_functions.TestParseRecord.test_parser_cast_uniform) ... ok 226s test_parser_delim (tests.test_classic_functions.TestParseRecord.test_parser_delim) ... ok 226s test_parser_many_elements (tests.test_classic_functions.TestParseRecord.test_parser_many_elements) ... ok 226s test_parser_nested (tests.test_classic_functions.TestParseRecord.test_parser_nested) ... ok 226s test_parser_params (tests.test_classic_functions.TestParseRecord.test_parser_params) ... ok 226s test_parser_simple (tests.test_classic_functions.TestParseRecord.test_parser_simple) ... ok 226s test_parser_with_data (tests.test_classic_functions.TestParseRecord.test_parser_with_data) ... ok 226s test_parser_with_different_delimiter (tests.test_classic_functions.TestParseRecord.test_parser_with_different_delimiter) ... ok 226s test_parser_without_cast (tests.test_classic_functions.TestParseRecord.test_parser_without_cast) ... ok 226s test_get_lo (tests.test_classic_largeobj.TestCreatingLargeObjects.test_get_lo) ... ok 226s test_lo_create (tests.test_classic_largeobj.TestCreatingLargeObjects.test_lo_create) ... ok 226s test_lo_import (tests.test_classic_largeobj.TestCreatingLargeObjects.test_lo_import) ... ok 226s test_class_name (tests.test_classic_largeobj.TestLargeObjects.test_class_name) ... ok 226s test_close (tests.test_classic_largeobj.TestLargeObjects.test_close) ... ok 227s test_error (tests.test_classic_largeobj.TestLargeObjects.test_error) ... ok 227s test_export (tests.test_classic_largeobj.TestLargeObjects.test_export) ... ok 227s test_export_in_existent (tests.test_classic_largeobj.TestLargeObjects.test_export_in_existent) ... ok 227s test_module_name (tests.test_classic_largeobj.TestLargeObjects.test_module_name) ... ok 227s test_oid (tests.test_classic_largeobj.TestLargeObjects.test_oid) ... ok 227s test_open (tests.test_classic_largeobj.TestLargeObjects.test_open) ... ok 227s test_pgcn (tests.test_classic_largeobj.TestLargeObjects.test_pgcn) ... ok 227s test_read (tests.test_classic_largeobj.TestLargeObjects.test_read) ... ok 227s test_repr (tests.test_classic_largeobj.TestLargeObjects.test_repr) ... ok 227s test_seek (tests.test_classic_largeobj.TestLargeObjects.test_seek) ... ok 227s test_size (tests.test_classic_largeobj.TestLargeObjects.test_size) ... ok 227s test_str (tests.test_classic_largeobj.TestLargeObjects.test_str) ... ok 227s test_tell (tests.test_classic_largeobj.TestLargeObjects.test_tell) ... ok 227s test_unlink (tests.test_classic_largeobj.TestLargeObjects.test_unlink) ... ok 227s test_unlink_inexistent (tests.test_classic_largeobj.TestLargeObjects.test_unlink_inexistent) ... ok 227s test_write (tests.test_classic_largeobj.TestLargeObjects.test_write) ... ok 227s test_write_latin1_bytes (tests.test_classic_largeobj.TestLargeObjects.test_write_latin1_bytes) ... ok 227s test_write_utf8_bytes (tests.test_classic_largeobj.TestLargeObjects.test_write_utf8_bytes) ... ok 227s test_write_utf8_string (tests.test_classic_largeobj.TestLargeObjects.test_write_utf8_string) ... ok 227s test_large_object_int_constants (tests.test_classic_largeobj.TestModuleConstants.test_large_object_int_constants) ... ok 227s test_notify_distinct_in_transaction (tests.test_classic_notification.TestAsyncNotification.test_notify_distinct_in_transaction) ... ok 227s test_notify_handler_empty (tests.test_classic_notification.TestAsyncNotification.test_notify_handler_empty) ... ok 227s test_notify_handler_once (tests.test_classic_notification.TestAsyncNotification.test_notify_handler_once) ... ok 227s test_notify_no_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_no_timeout) ... ok 227s test_notify_once_with_payload (tests.test_classic_notification.TestAsyncNotification.test_notify_once_with_payload) ... ok 227s test_notify_query_empty (tests.test_classic_notification.TestAsyncNotification.test_notify_query_empty) ... ok 227s test_notify_query_once (tests.test_classic_notification.TestAsyncNotification.test_notify_query_once) ... ok 227s test_notify_quoted_names (tests.test_classic_notification.TestAsyncNotification.test_notify_quoted_names) ... ok 227s test_notify_same_in_transaction (tests.test_classic_notification.TestAsyncNotification.test_notify_same_in_transaction) ... ok 227s test_notify_several_times (tests.test_classic_notification.TestAsyncNotification.test_notify_several_times) ... ok 227s test_notify_with_args (tests.test_classic_notification.TestAsyncNotification.test_notify_with_args) ... ok 227s test_notify_with_args_and_payload (tests.test_classic_notification.TestAsyncNotification.test_notify_with_args_and_payload) ... ok 227s test_notify_with_five_payloads (tests.test_classic_notification.TestAsyncNotification.test_notify_with_five_payloads) ... ok 227s test_notify_with_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_with_timeout) ... ok 227s test_notify_without_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_without_timeout) ... ok 227s test_notify_zero_timeout (tests.test_classic_notification.TestAsyncNotification.test_notify_zero_timeout) ... ok 228s test_receive_immediately (tests.test_classic_notification.TestAsyncNotification.test_receive_immediately) ... ok 228s test_close_handler (tests.test_classic_notification.TestSyncNotification.test_close_handler) ... ok 228s test_delete_handler (tests.test_classic_notification.TestSyncNotification.test_delete_handler) ... ok 228s test_notify (tests.test_classic_notification.TestSyncNotification.test_notify) ... ok 228s test_notify_with_args_and_payload (tests.test_classic_notification.TestSyncNotification.test_notify_with_args_and_payload) ... ok 228s test_notify_wrong_event (tests.test_classic_notification.TestSyncNotification.test_notify_wrong_event) ... ok 228s test_apilevel (tests.test_dbapi20.TestPgDb.test_apilevel) ... ok 228s test_arraysize (tests.test_dbapi20.TestPgDb.test_arraysize) ... ok 228s test_autocommit (tests.test_dbapi20.TestPgDb.test_autocommit) ... ok 228s test_binary_string (tests.test_dbapi20.TestPgDb.test_binary_string) ... ok 228s test_binary_type (tests.test_dbapi20.TestPgDb.test_binary_type) ... ok 228s test_bool (tests.test_dbapi20.TestPgDb.test_bool) ... ok 228s test_build_row_factory (tests.test_dbapi20.TestPgDb.test_build_row_factory) ... ok 228s test_callproc (tests.test_dbapi20.TestPgDb.test_callproc) ... ok 228s test_callproc_bad_params (tests.test_dbapi20.TestPgDb.test_callproc_bad_params) ... ok 228s test_callproc_no_params (tests.test_dbapi20.TestPgDb.test_callproc_no_params) ... ok 228s test_callproc_one_param (tests.test_dbapi20.TestPgDb.test_callproc_one_param) ... ok 228s test_callproc_two_params (tests.test_dbapi20.TestPgDb.test_callproc_two_params) ... ok 228s test_change_row_factory_cache_size (tests.test_dbapi20.TestPgDb.test_change_row_factory_cache_size) ... ok 228s test_close (tests.test_dbapi20.TestPgDb.test_close) ... ok 228s test_colnames (tests.test_dbapi20.TestPgDb.test_colnames) ... ok 228s test_coltypes (tests.test_dbapi20.TestPgDb.test_coltypes) ... ok 228s test_commit (tests.test_dbapi20.TestPgDb.test_commit) ... ok 228s test_connect (tests.test_dbapi20.TestPgDb.test_connect) ... ok 228s test_connect_kwargs (tests.test_dbapi20.TestPgDb.test_connect_kwargs) ... ok 228s test_connect_kwargs_with_special_chars (tests.test_dbapi20.TestPgDb.test_connect_kwargs_with_special_chars) ... ok 228s test_connection_as_contextmanager (tests.test_dbapi20.TestPgDb.test_connection_as_contextmanager) ... ok 228s test_connection_errors (tests.test_dbapi20.TestPgDb.test_connection_errors) ... ok 228s test_cursor (tests.test_dbapi20.TestPgDb.test_cursor) ... ok 228s test_cursor_as_contextmanager (tests.test_dbapi20.TestPgDb.test_cursor_as_contextmanager) ... ok 228s test_cursor_connection (tests.test_dbapi20.TestPgDb.test_cursor_connection) ... ok 228s test_cursor_invalidation (tests.test_dbapi20.TestPgDb.test_cursor_invalidation) ... ok 229s test_cursor_isolation (tests.test_dbapi20.TestPgDb.test_cursor_isolation) ... ok 229s test_cursor_iteration (tests.test_dbapi20.TestPgDb.test_cursor_iteration) ... ok 229s test_cursor_type (tests.test_dbapi20.TestPgDb.test_cursor_type) ... ok 229s test_cursor_with_badly_named_columns (tests.test_dbapi20.TestPgDb.test_cursor_with_badly_named_columns) ... ok 229s test_cursor_with_named_columns (tests.test_dbapi20.TestPgDb.test_cursor_with_named_columns) ... ok 229s test_cursor_with_unnamed_columns (tests.test_dbapi20.TestPgDb.test_cursor_with_unnamed_columns) ... ok 229s test_custom_type (tests.test_dbapi20.TestPgDb.test_custom_type) ... ok 229s test_cve_2018_1058 (tests.test_dbapi20.TestPgDb.test_cve_2018_1058) ... ok 229s test_date (tests.test_dbapi20.TestPgDb.test_date) ... ok 229s test_datetime (tests.test_dbapi20.TestPgDb.test_datetime) ... ok 229s test_datetime_type (tests.test_dbapi20.TestPgDb.test_datetime_type) ... ok 229s test_description (tests.test_dbapi20.TestPgDb.test_description) ... ok 229s test_description_fields (tests.test_dbapi20.TestPgDb.test_description_fields) ... ok 229s test_exceptions (tests.test_dbapi20.TestPgDb.test_exceptions) ... ok 229s test_exceptions_as_connection_attributes (tests.test_dbapi20.TestPgDb.test_exceptions_as_connection_attributes) ... ok 229s test_execute (tests.test_dbapi20.TestPgDb.test_execute) ... ok 229s test_execute_edge_cases (tests.test_dbapi20.TestPgDb.test_execute_edge_cases) ... ok 229s test_executemany (tests.test_dbapi20.TestPgDb.test_executemany) ... ok 229s test_fetch_2_rows (tests.test_dbapi20.TestPgDb.test_fetch_2_rows) ... ok 229s test_fetchall (tests.test_dbapi20.TestPgDb.test_fetchall) ... ok 229s test_fetchall_with_various_sizes (tests.test_dbapi20.TestPgDb.test_fetchall_with_various_sizes) ... ok 229s test_fetchmany (tests.test_dbapi20.TestPgDb.test_fetchmany) ... ok 229s test_fetchmany_with_keep (tests.test_dbapi20.TestPgDb.test_fetchmany_with_keep) ... ok 229s test_fetchone (tests.test_dbapi20.TestPgDb.test_fetchone) ... ok 229s test_float (tests.test_dbapi20.TestPgDb.test_float) ... ok 229s test_global_typecast (tests.test_dbapi20.TestPgDb.test_global_typecast) ... ok 230s test_hstore (tests.test_dbapi20.TestPgDb.test_hstore) ... ok 230s test_insert_array (tests.test_dbapi20.TestPgDb.test_insert_array) ... ok 230s test_insert_record (tests.test_dbapi20.TestPgDb.test_insert_record) ... ok 230s test_integrity_error (tests.test_dbapi20.TestPgDb.test_integrity_error) ... ok 230s test_interval (tests.test_dbapi20.TestPgDb.test_interval) ... ok 230s test_json (tests.test_dbapi20.TestPgDb.test_json) ... ok 230s test_jsonb (tests.test_dbapi20.TestPgDb.test_jsonb) ... ok 230s test_literal (tests.test_dbapi20.TestPgDb.test_literal) ... ok 230s test_memory_leaks (tests.test_dbapi20.TestPgDb.test_memory_leaks) ... ok 230s test_mixedfetch (tests.test_dbapi20.TestPgDb.test_mixedfetch) ... ok 230s test_next (tests.test_dbapi20.TestPgDb.test_next) 230s Test extension for getting the next row. ... ok 230s test_nextset (tests.test_dbapi20.TestPgDb.test_nextset) ... ok 230s test_no_close (tests.test_dbapi20.TestPgDb.test_no_close) ... ok 230s test_non_idempotent_close (tests.test_dbapi20.TestPgDb.test_non_idempotent_close) ... ok 230s test_none (tests.test_dbapi20.TestPgDb.test_none) ... ok 230s test_number_type (tests.test_dbapi20.TestPgDb.test_number_type) ... ok 230s test_paramstyle (tests.test_dbapi20.TestPgDb.test_paramstyle) ... ok 230s test_paramstyles (tests.test_dbapi20.TestPgDb.test_paramstyles) ... ok 230s test_percent_sign (tests.test_dbapi20.TestPgDb.test_percent_sign) ... ok 230s test_pgdb_type (tests.test_dbapi20.TestPgDb.test_pgdb_type) ... ok 230s test_rollback (tests.test_dbapi20.TestPgDb.test_rollback) ... ok 230s test_row_factory (tests.test_dbapi20.TestPgDb.test_row_factory) ... ok 230s test_rowcount (tests.test_dbapi20.TestPgDb.test_rowcount) ... ok 230s test_rowid_type (tests.test_dbapi20.TestPgDb.test_rowid_type) ... ok 230s test_select_array (tests.test_dbapi20.TestPgDb.test_select_array) ... ok 230s test_select_record (tests.test_dbapi20.TestPgDb.test_select_record) ... ok 230s test_set_decimal_type (tests.test_dbapi20.TestPgDb.test_set_decimal_type) ... ok 230s test_set_typecast_for_arrays (tests.test_dbapi20.TestPgDb.test_set_typecast_for_arrays) ... ok 230s test_setinputsizes (tests.test_dbapi20.TestPgDb.test_setinputsizes) ... ok 231s test_setoutputsize (tests.test_dbapi20.TestPgDb.test_setoutputsize) ... ok 231s test_setoutputsize_basic (tests.test_dbapi20.TestPgDb.test_setoutputsize_basic) ... ok 231s test_sqlstate (tests.test_dbapi20.TestPgDb.test_sqlstate) ... ok 231s test_string_type (tests.test_dbapi20.TestPgDb.test_string_type) ... ok 231s test_threadsafety (tests.test_dbapi20.TestPgDb.test_threadsafety) ... ok 231s test_time (tests.test_dbapi20.TestPgDb.test_time) ... ok 231s test_timestamp (tests.test_dbapi20.TestPgDb.test_timestamp) ... ok 231s test_transaction (tests.test_dbapi20.TestPgDb.test_transaction) ... ok 231s test_type_cache_info (tests.test_dbapi20.TestPgDb.test_type_cache_info) ... ok 231s test_type_cache_typecast (tests.test_dbapi20.TestPgDb.test_type_cache_typecast) ... ok 231s test_unicode_list_and_tuple (tests.test_dbapi20.TestPgDb.test_unicode_list_and_tuple) ... ok 231s test_unicode_with_latin1 (tests.test_dbapi20.TestPgDb.test_unicode_with_latin1) ... ok 231s test_unicode_with_utf8 (tests.test_dbapi20.TestPgDb.test_unicode_with_utf8) ... ok 231s test_update_rowcount (tests.test_dbapi20.TestPgDb.test_update_rowcount) ... ok 231s test_uuid (tests.test_dbapi20.TestPgDb.test_uuid) ... ok 231s test_version (tests.test_dbapi20.TestPgDb.test_version) ... ok 231s test_round_trip (tests.test_dbapi20_copy.TestBinary.test_round_trip) ... ok 231s test_bad_params (tests.test_dbapi20_copy.TestCopyFrom.test_bad_params) ... ok 231s test_binary (tests.test_dbapi20_copy.TestCopyFrom.test_binary) ... ok 231s test_binary_with_sep (tests.test_dbapi20_copy.TestCopyFrom.test_binary_with_sep) ... ok 231s test_binary_with_unicode (tests.test_dbapi20_copy.TestCopyFrom.test_binary_with_unicode) ... ok 231s test_columns (tests.test_dbapi20_copy.TestCopyFrom.test_columns) ... ok 231s test_csv (tests.test_dbapi20_copy.TestCopyFrom.test_csv) ... ok 231s test_csv_with_sep (tests.test_dbapi20_copy.TestCopyFrom.test_csv_with_sep) ... ok 231s test_file (tests.test_dbapi20_copy.TestCopyFrom.test_file) ... ok 231s test_input_bytes (tests.test_dbapi20_copy.TestCopyFrom.test_input_bytes) ... ok 231s test_input_iterable (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable) ... ok 231s test_input_iterable_bytes (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable_bytes) ... ok 231s test_input_iterable_invalid (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable_invalid) ... ok 231s test_input_iterable_with_newlines (tests.test_dbapi20_copy.TestCopyFrom.test_input_iterable_with_newlines) ... ok 231s test_input_string (tests.test_dbapi20_copy.TestCopyFrom.test_input_string) ... ok 231s test_input_string_multiple_rows (tests.test_dbapi20_copy.TestCopyFrom.test_input_string_multiple_rows) ... ok 231s test_input_string_with_newline (tests.test_dbapi20_copy.TestCopyFrom.test_input_string_with_newline) ... ok 231s test_input_string_with_schema_name (tests.test_dbapi20_copy.TestCopyFrom.test_input_string_with_schema_name) ... ok 231s test_null (tests.test_dbapi20_copy.TestCopyFrom.test_null) ... ok 231s test_query (tests.test_dbapi20_copy.TestCopyFrom.test_query) ... ok 232s test_sep (tests.test_dbapi20_copy.TestCopyFrom.test_sep) ... ok 232s test_size_invalid (tests.test_dbapi20_copy.TestCopyFrom.test_size_invalid) ... ok 232s test_size_negative (tests.test_dbapi20_copy.TestCopyFrom.test_size_negative) ... ok 232s test_size_positive (tests.test_dbapi20_copy.TestCopyFrom.test_size_positive) ... ok 232s test_bad_params (tests.test_dbapi20_copy.TestCopyTo.test_bad_params) ... ok 232s test_binary (tests.test_dbapi20_copy.TestCopyTo.test_binary) ... ok 232s test_binary_with_sep (tests.test_dbapi20_copy.TestCopyTo.test_binary_with_sep) ... ok 232s test_binary_with_unicode (tests.test_dbapi20_copy.TestCopyTo.test_binary_with_unicode) ... ok 232s test_columns (tests.test_dbapi20_copy.TestCopyTo.test_columns) ... ok 232s test_csv (tests.test_dbapi20_copy.TestCopyTo.test_csv) ... ok 232s test_csv_with_sep (tests.test_dbapi20_copy.TestCopyTo.test_csv_with_sep) ... ok 232s test_decode (tests.test_dbapi20_copy.TestCopyTo.test_decode) ... ok 232s test_file (tests.test_dbapi20_copy.TestCopyTo.test_file) ... ok 232s test_generator (tests.test_dbapi20_copy.TestCopyTo.test_generator) ... ok 232s test_generator_bytes (tests.test_dbapi20_copy.TestCopyTo.test_generator_bytes) ... ok 232s test_generator_with_schema_name (tests.test_dbapi20_copy.TestCopyTo.test_generator_with_schema_name) ... ok 232s test_null (tests.test_dbapi20_copy.TestCopyTo.test_null) ... ok 232s test_query (tests.test_dbapi20_copy.TestCopyTo.test_query) ... ok 232s test_rowcount_increment (tests.test_dbapi20_copy.TestCopyTo.test_rowcount_increment) ... ok 232s test_sep (tests.test_dbapi20_copy.TestCopyTo.test_sep) ... ok 232s test_input (tests.test_dbapi20_copy.TestStreams.test_input) ... ok 232s test_output (tests.test_dbapi20_copy.TestStreams.test_output) ... ok 232s test_all_steps (tests.test_tutorial.TestClassicTutorial.test_all_steps) ... ok 232s test_all_steps (tests.test_tutorial.TestDbApi20Tutorial.test_all_steps) ... ok 232s 232s ---------------------------------------------------------------------- 232s Ran 808 tests in 14.158s 232s 232s OK (skipped=18) 232s Dropping cluster 17/regress ... 232s ### End 17, python3.13 ### 232s /tmp/autopkgtest.YVJEZO/wrapper.sh: checking for leaked background processes... 232s /tmp/autopkgtest.YVJEZO/wrapper.sh: waiting for tee/cat subprocesses... 232s /tmp/autopkgtest.YVJEZO/wrapper.sh: cleaning up... 232s /tmp/autopkgtest.YVJEZO/wrapper.sh: Exit status: 0 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest [12:31:04]: test unittests: -----------------------] 232s autopkgtest: DBG: testbed executing test finished with exit status 0 232s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/unittests-stdout /tmp/autopkgtest-work.v1xafo3l/out/unittests-stdout 233s autopkgtest: DBG: got reply from testbed: ok 233s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/unittests-stderr /tmp/autopkgtest-work.v1xafo3l/out/unittests-stderr 233s autopkgtest: DBG: got reply from testbed: ok 233s unittests PASS 233s autopkgtest [12:31:05]: test unittests: - - - - - - - - - - results - - - - - - - - - - 233s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.YVJEZO/unittests-artifacts/ /tmp/autopkgtest-work.v1xafo3l/out/artifacts/ 233s autopkgtest: DBG: got reply from testbed: ok 233s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.YVJEZO/unittests-artifacts', '/tmp/autopkgtest.YVJEZO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 233s autopkgtest [12:31:05]: @@@@@@@@@@@@@@@@@@@@ summary 233s unittests PASS 233s autopkgtest: DBG: testbed stop 233s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.YVJEZO 233s autopkgtest: DBG: sending command to testbed: close 250s autopkgtest: DBG: got reply from testbed: ok 250s autopkgtest: DBG: sending command to testbed: quit 250s nova [W] Using flock in prodstack6-s390x 250s flock: timeout while waiting to get lock 250s Creating nova instance adt-plucky-s390x-pygresql-20250219-122712-juju-7f2275-prod-proposed-migration-environment-15-1f2ee8e2-24e6-4bbb-8e02-58beb3f02508 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 250s nova [W] Timed out waiting for 39d7eb87-3e09-45a9-8863-8ccd92445427 to get deleted.