Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1
@ 2019-07-21  8:51 Francois Perrad
  2019-07-21  8:51 ` [Buildroot] [PATCH 2/2] support/testing: add luaposix test Francois Perrad
  2019-08-01  8:12 ` [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Francois Perrad @ 2019-07-21  8:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/luaposix/luaposix.hash | 2 +-
 package/luaposix/luaposix.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/luaposix/luaposix.hash b/package/luaposix/luaposix.hash
index a13cb4a9e..a6b5cd42d 100644
--- a/package/luaposix/luaposix.hash
+++ b/package/luaposix/luaposix.hash
@@ -1,2 +1,2 @@
 # Locally calculated
-sha256 eb6e7322da3013bdb3d524f68df4f5510a2efd805c06bf7cc27be6611eab7483  luaposix-34.0.4.tar.gz
+sha256 b0f8bdfe4b43b6d79b8f3e8ef5b158de889e5dde046618a33335a38d2b5b90f9  luaposix-34.1.tar.gz
diff --git a/package/luaposix/luaposix.mk b/package/luaposix/luaposix.mk
index f4679929c..c7a954296 100644
--- a/package/luaposix/luaposix.mk
+++ b/package/luaposix/luaposix.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LUAPOSIX_VERSION = 34.0.4
+LUAPOSIX_VERSION = 34.1
 LUAPOSIX_SITE = $(call github,luaposix,luaposix,v$(LUAPOSIX_VERSION))
 LUAPOSIX_LICENSE = MIT
 LUAPOSIX_LICENSE_FILES = LICENSE
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] support/testing: add luaposix test
  2019-07-21  8:51 [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1 Francois Perrad
@ 2019-07-21  8:51 ` Francois Perrad
  2019-08-01  8:12   ` Peter Korsgaard
  2019-08-01  8:12 ` [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Francois Perrad @ 2019-07-21  8:51 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 .../testing/tests/package/test_luaposix.py    | 81 +++++++++++++++++++
 1 file changed, 81 insertions(+)
 create mode 100644 support/testing/tests/package/test_luaposix.py

diff --git a/support/testing/tests/package/test_luaposix.py b/support/testing/tests/package/test_luaposix.py
new file mode 100644
index 000000000..0182faf2f
--- /dev/null
+++ b/support/testing/tests/package/test_luaposix.py
@@ -0,0 +1,81 @@
+from tests.package.test_lua import TestLuaBase
+
+
+class TestLuaLuaPosix(TestLuaBase):
+    config = TestLuaBase.config + \
+        """
+        BR2_PACKAGE_LUA=y
+        BR2_PACKAGE_LUAPOSIX=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("posix.version", "print(require[[posix.version]])")
+        self.module_test("posix.ctype")
+        self.module_test("posix.dirent")
+        self.module_test("posix.errno")
+        self.module_test("posix.fcntl")
+        self.module_test("posix.fnmatch")
+        self.module_test("posix.glob")
+        self.module_test("posix.grp")
+        self.module_test("posix.libgen")
+        self.module_test("posix.poll")
+        self.module_test("posix.pwd")
+        self.module_test("posix.sched")
+        self.module_test("posix.signal")
+        self.module_test("posix.stdio")
+        self.module_test("posix.stdlib")
+        self.module_test("posix.sys.msg")
+        self.module_test("posix.sys.resource")
+        self.module_test("posix.sys.socket")
+        self.module_test("posix.sys.stat")
+        self.module_test("posix.sys.statvfs")
+        self.module_test("posix.sys.time")
+        self.module_test("posix.sys.times")
+        self.module_test("posix.sys.utsname")
+        self.module_test("posix.sys.wait")
+        self.module_test("posix.syslog")
+        self.module_test("posix.termio")
+        self.module_test("posix.time")
+        self.module_test("posix.unistd")
+        self.module_test("posix.utime")
+
+
+class TestLuajitLuaPosix(TestLuaBase):
+    config = TestLuaBase.config + \
+        """
+        BR2_PACKAGE_LUAJIT=y
+        BR2_PACKAGE_LUAPOSIX=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("posix.version", "print(require[[posix.version]])")
+        self.module_test("posix.ctype")
+        self.module_test("posix.dirent")
+        self.module_test("posix.errno")
+        self.module_test("posix.fcntl")
+        self.module_test("posix.fnmatch")
+        self.module_test("posix.glob")
+        self.module_test("posix.grp")
+        self.module_test("posix.libgen")
+        self.module_test("posix.poll")
+        self.module_test("posix.pwd")
+        self.module_test("posix.sched")
+        self.module_test("posix.signal")
+        self.module_test("posix.stdio")
+        self.module_test("posix.stdlib")
+        self.module_test("posix.sys.msg")
+        self.module_test("posix.sys.resource")
+        self.module_test("posix.sys.socket")
+        self.module_test("posix.sys.stat")
+        self.module_test("posix.sys.statvfs")
+        self.module_test("posix.sys.time")
+        self.module_test("posix.sys.times")
+        self.module_test("posix.sys.utsname")
+        self.module_test("posix.sys.wait")
+        self.module_test("posix.syslog")
+        self.module_test("posix.termio")
+        self.module_test("posix.time")
+        self.module_test("posix.unistd")
+        self.module_test("posix.utime")
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1
  2019-07-21  8:51 [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1 Francois Perrad
  2019-07-21  8:51 ` [Buildroot] [PATCH 2/2] support/testing: add luaposix test Francois Perrad
@ 2019-08-01  8:12 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2019-08-01  8:12 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] support/testing: add luaposix test
  2019-07-21  8:51 ` [Buildroot] [PATCH 2/2] support/testing: add luaposix test Francois Perrad
@ 2019-08-01  8:12   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2019-08-01  8:12 UTC (permalink / raw)
  To: buildroot

>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Committed, thanks.

> ---
 >  .../testing/tests/package/test_luaposix.py    | 81 +++++++++++++++++++
 >  1 file changed, 81 insertions(+)
 >  create mode 100644 support/testing/tests/package/test_luaposix.py

 > diff --git a/support/testing/tests/package/test_luaposix.py b/support/testing/tests/package/test_luaposix.py
 > new file mode 100644
 > index 000000000..0182faf2f
 > --- /dev/null
 > +++ b/support/testing/tests/package/test_luaposix.py
 > @@ -0,0 +1,81 @@
 > +from tests.package.test_lua import TestLuaBase
 > +
 > +
 > +class TestLuaLuaPosix(TestLuaBase):
 > +    config = TestLuaBase.config + \
 > +        """
 > +        BR2_PACKAGE_LUA=y
 > +        BR2_PACKAGE_LUAPOSIX=y
 > +        """
 > +
 > +    def test_run(self):
 > +        self.login()
 > +        self.module_test("posix.version", "print(require[[posix.version]])")
 > +        self.module_test("posix.ctype")
 > +        self.module_test("posix.dirent")
 > +        self.module_test("posix.errno")
 > +        self.module_test("posix.fcntl")
 > +        self.module_test("posix.fnmatch")
 > +        self.module_test("posix.glob")
 > +        self.module_test("posix.grp")
 > +        self.module_test("posix.libgen")
 > +        self.module_test("posix.poll")
 > +        self.module_test("posix.pwd")
 > +        self.module_test("posix.sched")
 > +        self.module_test("posix.signal")
 > +        self.module_test("posix.stdio")
 > +        self.module_test("posix.stdlib")
 > +        self.module_test("posix.sys.msg")
 > +        self.module_test("posix.sys.resource")
 > +        self.module_test("posix.sys.socket")
 > +        self.module_test("posix.sys.stat")
 > +        self.module_test("posix.sys.statvfs")
 > +        self.module_test("posix.sys.time")
 > +        self.module_test("posix.sys.times")
 > +        self.module_test("posix.sys.utsname")
 > +        self.module_test("posix.sys.wait")
 > +        self.module_test("posix.syslog")
 > +        self.module_test("posix.termio")
 > +        self.module_test("posix.time")
 > +        self.module_test("posix.unistd")
 > +        self.module_test("posix.utime")
 > +
 > +
 > +class TestLuajitLuaPosix(TestLuaBase):
 > +    config = TestLuaBase.config + \
 > +        """
 > +        BR2_PACKAGE_LUAJIT=y
 > +        BR2_PACKAGE_LUAPOSIX=y
 > +        """
 > +
 > +    def test_run(self):
 > +        self.login()
 > +        self.module_test("posix.version", "print(require[[posix.version]])")
 > +        self.module_test("posix.ctype")
 > +        self.module_test("posix.dirent")
 > +        self.module_test("posix.errno")
 > +        self.module_test("posix.fcntl")
 > +        self.module_test("posix.fnmatch")
 > +        self.module_test("posix.glob")
 > +        self.module_test("posix.grp")
 > +        self.module_test("posix.libgen")
 > +        self.module_test("posix.poll")
 > +        self.module_test("posix.pwd")
 > +        self.module_test("posix.sched")
 > +        self.module_test("posix.signal")
 > +        self.module_test("posix.stdio")
 > +        self.module_test("posix.stdlib")
 > +        self.module_test("posix.sys.msg")
 > +        self.module_test("posix.sys.resource")
 > +        self.module_test("posix.sys.socket")
 > +        self.module_test("posix.sys.stat")
 > +        self.module_test("posix.sys.statvfs")
 > +        self.module_test("posix.sys.time")
 > +        self.module_test("posix.sys.times")
 > +        self.module_test("posix.sys.utsname")
 > +        self.module_test("posix.sys.wait")
 > +        self.module_test("posix.syslog")
 > +        self.module_test("posix.termio")
 > +        self.module_test("posix.time")
 > +        self.module_test("posix.unistd")
 > +        self.module_test("posix.utime")
 > -- 
 > 2.20.1

 > _______________________________________________
 > buildroot mailing list
 > buildroot at busybox.net
 > http://lists.busybox.net/mailman/listinfo/buildroot

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-08-01  8:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-21  8:51 [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1 Francois Perrad
2019-07-21  8:51 ` [Buildroot] [PATCH 2/2] support/testing: add luaposix test Francois Perrad
2019-08-01  8:12   ` Peter Korsgaard
2019-08-01  8:12 ` [Buildroot] [PATCH 1/2] package/luaposix: bump to version 34.1 Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox