From: Thomas De Schampheleire Date: Mon, 10 Feb 2020 11:26:35 +0000 (+0100) Subject: support/testing: add missing test file for perl-html-parser X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c839dc11caef4d243bc5e32ecff38828a680dac;p=buildroot.git support/testing: add missing test file for perl-html-parser This file was created by utils/scancpan while adding other packages but apparently not yet added in the repo. Assign this test case to Bernd in the DEVELOPERS file since he is listed as the maintainer for this package. Signed-off-by: Thomas De Schampheleire Signed-off-by: Thomas Petazzoni --- diff --git a/DEVELOPERS b/DEVELOPERS index f0a5041a03..bcd293b4fb 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -463,6 +463,7 @@ F: package/x264/ F: package/x265/ F: package/ytree/ F: package/znc/ +F: support/testing/tests/package/test_perl_html_parser.py N: Biagio Montaruli F: board/acmesystems/ diff --git a/support/testing/tests/package/test_perl_html_parser.py b/support/testing/tests/package/test_perl_html_parser.py new file mode 100644 index 0000000000..6431633482 --- /dev/null +++ b/support/testing/tests/package/test_perl_html_parser.py @@ -0,0 +1,20 @@ +from tests.package.test_perl import TestPerlBase + + +class TestPerlHTMLParser(TestPerlBase): + """ + package: + HTML-Parser XS + direct dependencies: + HTML-Tagset + """ + + config = TestPerlBase.config + \ + """ + BR2_PACKAGE_PERL=y + BR2_PACKAGE_PERL_HTML_PARSER=y + """ + + def test_run(self): + self.login() + self.module_test("HTML::Parser")