Your message dated Fri, 17 Apr 2020 12:33:49 +0000 with message-id <e1jpqbp-000ded...@fasolo.debian.org> and subject line Bug#946731: fixed in oz 0.17.0-2.1 has caused the Debian Bug report #946731, regarding oz: autopkgtest failure on arm64: This host does not support virtualization type kvm or qemu for TDL arch (i686) to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 946731: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=946731 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
--- Begin Message ---Source: oz Version: 0.17.0-2 Severity: serious X-Debbugs-CC: debian...@lists.debian.org User: debian...@lists.debian.org Usertags: regression Dear maintainers, You package has an autopkgtest, great. However, it fails on arm64. I copied some of the output at the bottom of this report. Currently this regression is blocking the migration to testing [1]. Can you please investigate the situation and fix it? If you upload the fix, make sure you upload source only, we don't allow binaries built by the maintainer to migrate to testing and arch:all can't be binNMU'ed. More information about this bug and the reason for filing it can be found on https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation Paul [1] https://qa.debian.org/excuses.php?package=oz https://ci.debian.net/data/autopkgtest/testing/arm64/o/oz/3457325/log.gz =================================== FAILURES =================================== _______________________________ test_fedora_core _______________________________ def test_fedora_core(): for version in ["1", "2", "3", "4", "5", "6"]: for arch in ["i386", "x86_64"]: for installtype in ["url", "iso"]: runtest(distro='FedoraCore', version=version, arch=arch, > installtype=installtype, expect_success=True) tests/factory/test_factory.py:122: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/factory/test_factory.py:98: in runtest oz.GuestFactory.guest_factory(tdl, config, None) /usr/lib/python3/dist-packages/oz/GuestFactory.py:103: in guest_factory diskbus, macaddress) /usr/lib/python3/dist-packages/oz/FedoraCore.py:97: in get_class macaddress) /usr/lib/python3/dist-packages/oz/FedoraCore.py:65: in __init__ macaddress) /usr/lib/python3/dist-packages/oz/RedHat.py:46: in __init__ url_allowed, macaddress) /usr/lib/python3/dist-packages/oz/Linux.py:39: in __init__ url_allowed, macaddress) /usr/lib/python3/dist-packages/oz/Guest.py:1315: in __init__ url_allowed, macaddress) /usr/lib/python3/dist-packages/oz/Guest.py:248: in __init__ self.connect_to_libvirt() /usr/lib/python3/dist-packages/oz/Guest.py:129: in connect_to_libvirt self._discover_libvirt_type() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <oz.FedoraCore.FedoraCoreGuest object at 0xffff91fef310> def _discover_libvirt_type(self): """ Internal method to discover the libvirt type (qemu, kvm, etc) that we should use, if not specified by the user. """ if self.libvirt_type is None: doc = lxml.etree.fromstring(self.libvirt_conn.getCapabilities()) # Libvirt calls the old intel 32-bit architecture i686, while we # refer to it as i386. Do the mapping here, since we need to look # up the libvirt name. libvirtarch = self.tdl.arch if libvirtarch == 'i386': libvirtarch = 'i686' if len(doc.xpath("/capabilities/guest/arch[@name='%s']/domain[@type='kvm']" % (libvirtarch))) > 0: self.libvirt_type = 'kvm' elif len(doc.xpath("/capabilities/guest/arch[@name='%s']/domain[@type='qemu']" % (libvirtarch))) > 0: self.libvirt_type = 'qemu' else: > raise oz.OzException.OzException("This host does not support virtualization type kvm or qemu for TDL arch (%s)" % (libvirtarch)) E oz.OzException.OzException: This host does not support virtualization type kvm or qemu for TDL arch (i686) /usr/lib/python3/dist-packages/oz/Guest.py:78: OzException ----------------------------- Captured stdout call ----------------------------- Testing FedoraCore-1-i386-url _________________________________ test_fedora __________________________________ def test_fedora(): for version in ["7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28"]: for arch in ["i386", "x86_64"]: for installtype in ["url", "iso"]: runtest(distro='Fedora', version=version, arch=arch, > installtype=installtype, expect_success=True) tests/factory/test_factory.py:137: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ tests/factory/test_factory.py:98: in runtest oz.GuestFactory.guest_factory(tdl, config, None) /usr/lib/python3/dist-packages/oz/GuestFactory.py:103: in guest_factory diskbus, macaddress) /usr/lib/python3/dist-packages/oz/Fedora.py:323: in get_class output_disk, macaddress, None) /usr/lib/python3/dist-packages/oz/Fedora.py:250: in __init__ macaddress, self.config.use_yum) /usr/lib/python3/dist-packages/oz/RedHat.py:729: in __init__ initrdtype, macaddress) /usr/lib/python3/dist-packages/oz/RedHat.py:46: in __init__ url_allowed, macaddress) /usr/lib/python3/dist-packages/oz/Linux.py:39: in __init__ url_allowed, macaddress) /usr/lib/python3/dist-packages/oz/Guest.py:1315: in __init__ url_allowed, macaddress) /usr/lib/python3/dist-packages/oz/Guest.py:248: in __init__ self.connect_to_libvirt() /usr/lib/python3/dist-packages/oz/Guest.py:129: in connect_to_libvirt self._discover_libvirt_type() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <oz.Fedora.FedoraGuest object at 0xffff90233390> def _discover_libvirt_type(self): """ Internal method to discover the libvirt type (qemu, kvm, etc) that we should use, if not specified by the user. """ if self.libvirt_type is None: doc = lxml.etree.fromstring(self.libvirt_conn.getCapabilities()) # Libvirt calls the old intel 32-bit architecture i686, while we # refer to it as i386. Do the mapping here, since we need to look # up the libvirt name. libvirtarch = self.tdl.arch if libvirtarch == 'i386': libvirtarch = 'i686' if len(doc.xpath("/capabilities/guest/arch[@name='%s']/domain[@type='kvm']" % (libvirtarch))) > 0: self.libvirt_type = 'kvm' elif len(doc.xpath("/capabilities/guest/arch[@name='%s']/domain[@type='qemu']" % (libvirtarch))) > 0: self.libvirt_type = 'qemu' else: > raise oz.OzException.OzException("This host does not support virtualization type kvm or qemu for TDL arch (%s)" % (libvirtarch)) E oz.OzException.OzException: This host does not support virtualization type kvm or qemu for TDL arch (i686) /usr/lib/python3/dist-packages/oz/Guest.py:78: OzException ----------------------------- Captured stdout call ----------------------------- Testing Fedora-7-i386-url ___________________________________ test_rhl ___________________________________ def test_rhl(): for version in ["7.0", "7.1", "7.2", "7.3", "8", "9"]: runtest(distro='RHL', version=version, arch='i386', installtype='url', > expect_success=True) [...] loads more
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---Source: oz Source-Version: 0.17.0-2.1 Done: Adrian Bunk <b...@debian.org> We believe that the bug you reported is fixed in the latest version of oz, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 946...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Adrian Bunk <b...@debian.org> (supplier of updated oz package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Mon, 13 Apr 2020 14:53:12 +0300 Source: oz Architecture: source Version: 0.17.0-2.1 Distribution: unstable Urgency: high Maintainer: Simon Josefsson <si...@josefsson.org> Changed-By: Adrian Bunk <b...@debian.org> Closes: 942395 946731 Changes: oz (0.17.0-2.1) unstable; urgency=high . * Non-maintainer upload. * Drop autopkgtest for now, not working on all architectures. (Closes: #946731) * Make the postrm script idempotent, thanks to Ralf Treinen. (Closes: #942395) Checksums-Sha1: 9e0c3083274adf62ea6b10cb9207fc574fa417f9 1791 oz_0.17.0-2.1.dsc ce97706fe03e79f992bcf227271644bd901174c8 3520 oz_0.17.0-2.1.debian.tar.xz Checksums-Sha256: a337c4a4a063ad2fc5ec7d6b351f7eafc0d3e8cfb32de9774ed3310cd3b5134c 1791 oz_0.17.0-2.1.dsc 2234f0546614b6e8d053125f97e69bc7e588da590eb3125e08243f3d1fee41de 3520 oz_0.17.0-2.1.debian.tar.xz Files: f1a33f735d2aaaaf703698b5de789903 1791 python optional oz_0.17.0-2.1.dsc e8d66f7455f465a773436689933912d6 3520 python optional oz_0.17.0-2.1.debian.tar.xz -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAl6UU8AACgkQiNJCh6LY mLFi1Q//fI3aEYk1Igbr+H9tK+KevEcIUJUSw9PIMUs8op6SIdZiuQaeGQY00c5t 306dWQ7EqOnUiLzgmJJdk6k6eiWa3g+UudNF5eMpvj4YqPDSGF3JVBvX/B4J3PIn ndCuQWcVzSIQ91Ks/VAKxWVDEDFyy60FR9sFu3JezigqS8o8BTqRzdHXCr5pJl1F AZfm265/YRTAcM6PRw8DDgPo7/awYT2UzCENA8h02Z7UNYvb+p99JwsMQAVk4YkT /Ysqi1rTzkM4GikyQUFxJdtVue/lklRdVQPpxdsDEa8xoUiW899EGFXPj+rZ0n1u VuTRzzVbDIsFMpfT+EEjBme8sl/OfyAi+JgxSxDpUAN8KP8BdzlLA2jujRGE5EJw Hps5AdDP4rCpHJhqLiF3Ci768KjcIUkk9y2yzlaD2apEmR93rHs/4zYe7HXUOb19 kxgeiLhEN1JBb6pWe+YI5JEekDYNgs5GmwGgWc76+vfKauQc7UCwSKGyU+rzLFgw 6iRwh77oS/XuKc+IGxFQKrUHI6GLX0ixBbhfVd+MbkTsZEfimo6W2CmbPUQ4XwB3 NY8C/0bUQl63CvWDUnacQfF3zDRlRWC+Qo9NX3qVWP2baotPuzfCVhuSzZo//afK Ln1MuZEs+73o1/fjLpITCeg9JBm4o4ud+e5FEJSzABQxcFsQB8k= =2KHC -----END PGP SIGNATURE-----
--- End Message ---