summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/luv/tests/run.lua
blob: ea94e9bd58b5fe7b69e24ccb7ccc807629826343 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
-- Run this from the parent directory as
--
--     luajit tests/run.lua
--

local tap = require("lib/tap")
local uv = require("luv")

local isWindows
if jit and jit.os then
  -- Luajit provides explicit platform detection
  isWindows = jit.os == "Windows"
else
  -- Normal lua will only have \ for path separator on windows.
  isWindows = package.config:find("\\") and true or false
end
_G.isWindows = isWindows

local req = uv.fs_scandir("tests")

while true do
  local name = uv.fs_scandir_next(req)
  if not name then break end
  local match = string.match(name, "^test%-(.*).lua$")
  if match then
    local path = "tests/test-" .. match
    tap(match)
    require(path)
  end
end

-- run the tests!
tap(true)