summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2019-02-19 16:43:03 +0100
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-03-28 17:20:00 +0100
commite7e6b2478d40562121786c51b747a4c2cfd56056 (patch)
tree9f32df0e5be56f94c398e75fca486d50d2a07082 /support
parentac2bfe7643e0b9fd40e95e63bfc1a593789e9164 (diff)
support/testing: add lsqlite3 test
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support')
-rw-r--r--support/testing/tests/package/test_lsqlite3.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_lsqlite3.py b/support/testing/tests/package/test_lsqlite3.py
new file mode 100644
index 0000000000..d874774647
--- /dev/null
+++ b/support/testing/tests/package/test_lsqlite3.py
@@ -0,0 +1,25 @@
+from tests.package.test_lua import TestLuaBase
+
+
+class TestLuaLsqlite3(TestLuaBase):
+ config = TestLuaBase.config + \
+ """
+ BR2_PACKAGE_LUA=y
+ BR2_PACKAGE_LSQLITE3=y
+ """
+
+ def test_run(self):
+ self.login()
+ self.module_test("lsqlite3")
+
+
+class TestLuajitLsqlite3(TestLuaBase):
+ config = TestLuaBase.config + \
+ """
+ BR2_PACKAGE_LUAJIT=y
+ BR2_PACKAGE_LSQLITE3=y
+ """
+
+ def test_run(self):
+ self.login()
+ self.module_test("lsqlite3")