1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-02-24 19:56:46 +00:00
Files
operating-system/buildroot/support/testing/tests/package/test_luaexpat.py
Pascal Vizeli 5a6678147e Update buildroot 2020.02.01 (#622)
* Update buildroot 2020.02.01

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix LN

* Fix wpa

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix lint

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* fix-network

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix script

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
2020-04-16 20:03:01 +02:00

26 lines
519 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaLuaExpat(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUAEXPAT=y
"""
def test_run(self):
self.login()
self.module_test("lxp")
class TestLuajitLuaExpat(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUAEXPAT=y
"""
def test_run(self):
self.login()
self.module_test("lxp")