summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/testing/tests/package/test_lua_curl.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_lua_curl.py b/support/testing/tests/package/test_lua_curl.py
new file mode 100644
index 0000000000..5ee79313f2
--- /dev/null
+++ b/support/testing/tests/package/test_lua_curl.py
@@ -0,0 +1,25 @@
+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")
+
+
+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")