diff options
author | 2019-10-02 13:35:12 +0200 | |
---|---|---|
committer | 2019-10-02 20:57:08 +0200 | |
commit | f8b8a9c5291b5f69021bd487b6da9a228bfcd046 (patch) | |
tree | 56b5ef2557c64cb4e5a8d5f7d6c9c77bd6bbf894 /support | |
parent | 5a9348d370694499613468605842ed8a36f1c6e4 (diff) | |
download | buildroot-f8b8a9c5291b5f69021bd487b6da9a228bfcd046.tar.gz buildroot-f8b8a9c5291b5f69021bd487b6da9a228bfcd046.tar.bz2 |
support/testing: add turbolua test
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/testing/tests/package/test_turbolua.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_turbolua.py b/support/testing/tests/package/test_turbolua.py new file mode 100644 index 0000000000..b8253c1bf4 --- /dev/null +++ b/support/testing/tests/package/test_turbolua.py @@ -0,0 +1,13 @@ +from tests.package.test_lua import TestLuaBase + + +class TestLuajitTurbolua(TestLuaBase): + config = TestLuaBase.config + \ + """ + BR2_PACKAGE_LUAJIT=y + BR2_PACKAGE_TURBOLUA=y + """ + + def test_run(self): + self.login() + self.module_test("turbo") |