* [Buildroot] [PATCH 1/2] support/testing: add turbolua test
@ 2019-10-02 11:35 Marcin Niestroj
2019-10-02 11:35 ` [Buildroot] [PATCH 2/2] package/turbolua: bump version to 2.1.3 Marcin Niestroj
2019-10-02 18:58 ` [Buildroot] [PATCH 1/2] support/testing: add turbolua test Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Marcin Niestroj @ 2019-10-02 11:35 UTC (permalink / raw)
To: buildroot
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
---
.gitlab-ci.yml | 1 +
support/testing/tests/package/test_turbolua.py | 13 +++++++++++++
2 files changed, 14 insertions(+)
create mode 100644 support/testing/tests/package/test_turbolua.py
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2b18a13d69..7d21752365 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -466,6 +466,7 @@ tests.package.test_rings.TestLuajitRings: { extends: .runtime_test }
tests.package.test_rust.TestRust: { extends: .runtime_test }
tests.package.test_rust.TestRustBin: { extends: .runtime_test }
tests.package.test_syslog_ng.TestSyslogNg: { extends: .runtime_test }
+tests.package.test_turbolua.TestLuajitTurbolua: { extends: .runtime_test }
tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: { extends: .runtime_test }
tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: { extends: .runtime_test }
tests.toolchain.test_external.TestExternalToolchainCCache: { extends: .runtime_test }
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")
--
2.23.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/turbolua: bump version to 2.1.3
2019-10-02 11:35 [Buildroot] [PATCH 1/2] support/testing: add turbolua test Marcin Niestroj
@ 2019-10-02 11:35 ` Marcin Niestroj
2019-10-02 18:58 ` [Buildroot] [PATCH 1/2] support/testing: add turbolua test Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Marcin Niestroj @ 2019-10-02 11:35 UTC (permalink / raw)
To: buildroot
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
---
package/turbolua/turbolua.hash | 2 +-
package/turbolua/turbolua.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/turbolua/turbolua.hash b/package/turbolua/turbolua.hash
index 164bb6139b..03744d83b4 100644
--- a/package/turbolua/turbolua.hash
+++ b/package/turbolua/turbolua.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 a2c30534706fb475545b17a017c63479e93e5e9bf1f5ed88c0db22bb4ea7b4b1 turbolua-2.1.2.tar.gz
+sha256 4dbfbe4919118977c2ca40a4da81054ffe407d09f38bf5420eec5ae1449299d3 turbolua-2.1.3.tar.gz
diff --git a/package/turbolua/turbolua.mk b/package/turbolua/turbolua.mk
index 58d66c5070..a85256a3e1 100644
--- a/package/turbolua/turbolua.mk
+++ b/package/turbolua/turbolua.mk
@@ -4,7 +4,7 @@
#
################################################################################
-TURBOLUA_VERSION = 2.1.2
+TURBOLUA_VERSION = 2.1.3
TURBOLUA_SITE = $(call github,kernelsauce,turbo,v$(TURBOLUA_VERSION))
TURBOLUA_DEPENDENCIES = luajit
TURBOLUA_LICENSE = Apache-2.0
--
2.23.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] support/testing: add turbolua test
2019-10-02 11:35 [Buildroot] [PATCH 1/2] support/testing: add turbolua test Marcin Niestroj
2019-10-02 11:35 ` [Buildroot] [PATCH 2/2] package/turbolua: bump version to 2.1.3 Marcin Niestroj
@ 2019-10-02 18:58 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-10-02 18:58 UTC (permalink / raw)
To: buildroot
On Wed, 2 Oct 2019 13:35:12 +0200
Marcin Niestroj <m.niestroj@grinn-global.com> wrote:
> Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
> ---
> .gitlab-ci.yml | 1 +
> support/testing/tests/package/test_turbolua.py | 13 +++++++++++++
> 2 files changed, 14 insertions(+)
> create mode 100644 support/testing/tests/package/test_turbolua.py
Both applied to master, thanks. Could you send a follow-up patch that
adds a hash for the LICENSE file in the turbolua package ?
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-10-02 18:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-02 11:35 [Buildroot] [PATCH 1/2] support/testing: add turbolua test Marcin Niestroj
2019-10-02 11:35 ` [Buildroot] [PATCH 2/2] package/turbolua: bump version to 2.1.3 Marcin Niestroj
2019-10-02 18:58 ` [Buildroot] [PATCH 1/2] support/testing: add turbolua test Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox