kumquat-buildroot/support/testing/tests/package/test_lua_curl.py
Francois Perrad 6aaba51f3b support/testing/tests/package/test_lua*: regeneration
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-03-31 12:15:02 +02:00

28 lines
587 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaLuacURL(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUA_CURL=y
"""
def test_run(self):
self.login()
self.module_test("cURL")
self.module_test("lcurl")
class TestLuajitLuacURL(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUA_CURL=y
"""
def test_run(self):
self.login()
self.module_test("cURL")
self.module_test("lcurl")