buildroot/support/testing/tests/package/test_perl_xml_libxml.py

23 lines
447 B
Python
Raw Normal View History

2024-02-18 09:22:07 +08:00
from tests.package.test_perl import TestPerlBase
class TestPerlXMLLibXML(TestPerlBase):
"""
package:
XML-LibXML XS
direct dependencies:
XML-NamespaceSupport
XML-SAX
XML-SAX-Base
"""
config = TestPerlBase.config + \
"""
BR2_PACKAGE_PERL=y
BR2_PACKAGE_PERL_XML_LIBXML=y
"""
def test_run(self):
self.login()
self.module_test("XML::LibXML")