forked from pool/lua-luv
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luv?expand=0&rev=17
15 lines
433 B
Diff
15 lines
433 B
Diff
--- a/tests/test-thread.lua
|
|
+++ b/tests/test-thread.lua
|
|
@@ -59,6 +59,11 @@ return require('lib/tap')(function (test
|
|
end)
|
|
|
|
test("test thread create with options table", function(print, p, expect, uv)
|
|
+ local version = 0x10000 + 26*0x100 + 0
|
|
+ if uv.version() < version then
|
|
+ print("skipped, requires libuv >= 1.26.0")
|
|
+ return
|
|
+ end
|
|
local delay = 100
|
|
uv.update_time()
|
|
local before = uv.now()
|