File skip-failing-test.patch of Package lua-luv
--- 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()