d9f5748a07
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Reviewed-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> [https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/124872334] Tested-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
419 B
Python
23 lines
419 B
Python
from tests.package.test_perl import TestPerlBase
|
|
|
|
|
|
class TestPerlX10(TestPerlBase):
|
|
"""
|
|
package:
|
|
X10
|
|
direct dependencies:
|
|
Astro-SunTime
|
|
Device-SerialPort
|
|
Time-ParseDate
|
|
"""
|
|
|
|
config = TestPerlBase.config + \
|
|
"""
|
|
BR2_PACKAGE_PERL=y
|
|
BR2_PACKAGE_PERL_X10=y
|
|
"""
|
|
|
|
def test_run(self):
|
|
self.login()
|
|
self.module_test("X10")
|