mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
support/testing: add perl-class-load test
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Reviewed-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> [https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/124872329] Tested-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
65a42f26c8
commit
78f4fad3cf
28
support/testing/tests/package/test_perl_class_load.py
Normal file
28
support/testing/tests/package/test_perl_class_load.py
Normal file
@@ -0,0 +1,28 @@
|
||||
from tests.package.test_perl import TestPerlBase
|
||||
|
||||
|
||||
class TestPerlClassLoad(TestPerlBase):
|
||||
"""
|
||||
package:
|
||||
Class-Load
|
||||
direct dependencies:
|
||||
Data-OptList *
|
||||
Module-Implementation
|
||||
Module-Runtime
|
||||
Package-Stash
|
||||
Try-Tiny
|
||||
indirect dependencies:
|
||||
Dist-CheckConflicts
|
||||
Params-Util
|
||||
Sub-Install
|
||||
"""
|
||||
|
||||
config = TestPerlBase.config + \
|
||||
"""
|
||||
BR2_PACKAGE_PERL=y
|
||||
BR2_PACKAGE_PERL_CLASS_LOAD=y
|
||||
"""
|
||||
|
||||
def test_run(self):
|
||||
self.login()
|
||||
self.module_test("Class::Load")
|
||||
Reference in New Issue
Block a user